From adfa6ba79a2dc84ff380501bcc6ab51690348bb0 Mon Sep 17 00:00:00 2001 From: Praprost Date: Mon, 21 Oct 2024 15:56:45 -0600 Subject: [PATCH 1/6] electric boiler measure --- .../upgrade_hvac_electric_boiler/LICENSE.md | 27 ++++ .../upgrade_hvac_electric_boiler/README.md | 26 ++++ .../README.md.erb | 42 ++++++ .../upgrade_hvac_electric_boiler/measure.rb | 121 ++++++++++++++++++ .../upgrade_hvac_electric_boiler/measure.xml | 98 ++++++++++++++ 5 files changed, 314 insertions(+) create mode 100644 resources/measures/upgrade_hvac_electric_boiler/LICENSE.md create mode 100644 resources/measures/upgrade_hvac_electric_boiler/README.md create mode 100644 resources/measures/upgrade_hvac_electric_boiler/README.md.erb create mode 100644 resources/measures/upgrade_hvac_electric_boiler/measure.rb create mode 100644 resources/measures/upgrade_hvac_electric_boiler/measure.xml diff --git a/resources/measures/upgrade_hvac_electric_boiler/LICENSE.md b/resources/measures/upgrade_hvac_electric_boiler/LICENSE.md new file mode 100644 index 000000000..3293feb0e --- /dev/null +++ b/resources/measures/upgrade_hvac_electric_boiler/LICENSE.md @@ -0,0 +1,27 @@ +OpenStudio(R), Copyright (c) 2008-2020, Alliance for Sustainable Energy, LLC. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted +provided that the following conditions are met: + +(1) Redistributions of source code must retain the above copyright notice, this list of conditions +and the following disclaimer. + +(2) Redistributions in binary form must reproduce the above copyright notice, this list of conditions +and the following disclaimer in the documentation and/or other materials provided with the distribution. + +(3) Neither the name of the copyright holder nor the names of any contributors may be used to endorse +or promote products derived from this software without specific prior written permission from the +respective party. + +(4) Other than as required in clauses (1) and (2), distributions in any form of modifications or other +derivative works may not use the "OpenStudio" trademark, "OS", "os", or any other confusingly similar +designation without specific prior written permission from Alliance for Sustainable Energy, LLC. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER, THE UNITED STATES GOVERNMENT, +OR ANY CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, +OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file diff --git a/resources/measures/upgrade_hvac_electric_boiler/README.md b/resources/measures/upgrade_hvac_electric_boiler/README.md new file mode 100644 index 000000000..9130ea474 --- /dev/null +++ b/resources/measures/upgrade_hvac_electric_boiler/README.md @@ -0,0 +1,26 @@ + + +###### (Automatically generated documentation) + +# electric_resistance_boilers + +## Description +This measure replaces an exising natural gas boiler with an electric resistance boiler. + +## Modeler Description +This measure replaces an exising natural gas boiler with an electric resistance boiler. The measure loops through existing boiler objects and switches the fuel to "electricity". It also increases the nominal efficiency to 100% and replaces the efficiency curve to one representing electric boilers. + +## Measure Type +ModelMeasure + +## Taxonomy + + +## Arguments + + + + +This measure does not have any user arguments + + diff --git a/resources/measures/upgrade_hvac_electric_boiler/README.md.erb b/resources/measures/upgrade_hvac_electric_boiler/README.md.erb new file mode 100644 index 000000000..4deb9ae5f --- /dev/null +++ b/resources/measures/upgrade_hvac_electric_boiler/README.md.erb @@ -0,0 +1,42 @@ +<%#= README.md.erb is used to auto-generate README.md. %> +<%#= To manually maintain README.md throw away README.md.erb and manually edit README.md %> +###### (Automatically generated documentation) + +# <%= name %> + +## Description +<%= description %> + +## Modeler Description +<%= modelerDescription %> + +## Measure Type +<%= measureType %> + +## Taxonomy +<%= taxonomy %> + +## Arguments + +<% arguments.each do |argument| %> +### <%= argument[:display_name] %> +<%= argument[:description] %> +**Name:** <%= argument[:name] %>, +**Type:** <%= argument[:type] %>, +**Units:** <%= argument[:units] %>, +**Required:** <%= argument[:required] %>, +**Model Dependent:** <%= argument[:model_dependent] %> +<% end %> + +<% if arguments.size == 0 %> +<%= "This measure does not have any user arguments" %> +<% end %> + +<% if outputs.size > 0 %> +## Outputs +<% output_names = [] %> +<% outputs.each do |output| %> +<% output_names << output[:display_name] %> +<% end %> +<%= output_names.join(", ") %> +<% end %> \ No newline at end of file diff --git a/resources/measures/upgrade_hvac_electric_boiler/measure.rb b/resources/measures/upgrade_hvac_electric_boiler/measure.rb new file mode 100644 index 000000000..721e5a8f1 --- /dev/null +++ b/resources/measures/upgrade_hvac_electric_boiler/measure.rb @@ -0,0 +1,121 @@ +# ComStockā„¢, Copyright (c) 2023 Alliance for Sustainable Energy, LLC. All rights reserved. +# See top level LICENSE.txt file for license terms. +# ******************************************************************************* +# OpenStudio(R), Copyright (c) 2008-2021, Alliance for Sustainable Energy, LLC. +# All rights reserved. +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# (1) Redistributions of source code must retain the above copyright notice, +# this list of conditions and the following disclaimer. +# +# (2) Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions and the following disclaimer in the documentation +# and/or other materials provided with the distribution. +# +# (3) Neither the name of the copyright holder nor the names of any contributors +# may be used to endorse or promote products derived from this software without +# specific prior written permission from the respective party. +# +# (4) Other than as required in clauses (1) and (2), distributions in any form +# of modifications or other derivative works may not use the "OpenStudio" +# trademark, "OS", "os", or any other confusingly similar designation without +# specific prior written permission from Alliance for Sustainable Energy, LLC. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, +# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE +# UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF +# THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +# OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# ******************************************************************************* + +# Measure distributed under NREL Copyright terms, see LICENSE.md file. + +# start the measure +class ElectricResistanceBoilers < OpenStudio::Measure::ModelMeasure + require 'openstudio-standards' + + # human readable name + def name + # Measure name should be the title case of the class name. + return 'electric_resistance_boilers' + end + + # human readable description + def description + 'This measure replaces an exising natural gas boiler with an electric resistance boiler.' + + end + + # human readable description of modeling approach + def modeler_description + return 'This measure replaces an exising natural gas boiler with an electric resistance boiler. The measure loops through existing boiler objects and switches the fuel to "electricity". It also increases the nominal efficiency to 100% and replaces the efficiency curve to one representing electric boilers.' + end + + ## USER ARGS --------------------------------------------------------------------------------------------------------- + # define the arguments that the user will input + def arguments(model) + args = OpenStudio::Measure::OSArgumentVector.new + + args + end + ## END USER ARGS ----------------------------------------------------------------------------------------------------- + + # define what happens when the measure is run + def run(model, runner, user_arguments) + super(model, runner, user_arguments) + + # report initial condition of model + num_boilers = model.getBoilerHotWaters.size + runner.registerInitialCondition("The building started with #{num_boilers} hot water boilers." ) + + # check for existence of water heater boiler + if model.getBoilerHotWaters.empty? + runner.registerAsNotApplicable("No hot water boilers found in the model. Measure not applicable ") + return true + end + + #create new linear performance curve EIR = 0.02*PLR + 0.98 (from MASControl3 database) + elec_boiler_curve = OpenStudio::Model::CurveLinear.new(model) + elec_boiler_curve.setName("Electric Boiler Efficiency Curve") + elec_boiler_curve.setCoefficient1Constant(0.98) + elec_boiler_curve.setCoefficient2x(0.02) + + boilers = model.getBoilerHotWaters + boilers.each do |boiler| + #get existing fuel type and efficiency + existing_boiler_fuel_type = boiler.fuelType + existing_boiler_efficiency = boiler.nominalThermalEfficiency + existing_boiler_capacity = boiler.nominalCapacity + + runner.registerInfo("Existing boiler #{boiler.name} has nominal efficiency #{existing_boiler_efficiency}, fuel type #{existing_boiler_fuel_type}, and nominal capacity #{existing_boiler_capacity} W.") + + #set fuel to electricity and efficiency to 1.0 to reflect electric boiler + boiler.setFuelType("Electricity") + boiler.setNominalThermalEfficiency(1.0) + + #set new performance curve + boiler.setNormalizedBoilerEfficiencyCurve(elec_boiler_curve) + + #autosize the boiler capacity. should not make a difference if running standalone measure, but could downsize if run with other upgrades. + boiler.autosizeNominalCapacity + boiler.autosizeDesignWaterFlowRate + + #rename boiler + boiler.setName("Electric Boiler Thermal Eff 1.0") + end + + # Register final condition + runner.registerFinalCondition("The building finished with #{num_boilers} electric boilers.") + true + end +end + +# register the measure to be used by the application +ElectricResistanceBoilers.new.registerWithApplication diff --git a/resources/measures/upgrade_hvac_electric_boiler/measure.xml b/resources/measures/upgrade_hvac_electric_boiler/measure.xml new file mode 100644 index 000000000..6ec919893 --- /dev/null +++ b/resources/measures/upgrade_hvac_electric_boiler/measure.xml @@ -0,0 +1,98 @@ + + 3.1 + electric_resistance_boilers + e5661219-4641-4140-8c83-a9d602e45ca7 + 78a167ef-6398-4e10-8249-474c2e476940 + 2024-10-21T21:55:36Z + F0147A36 + ElectricResistanceBoilers + electric_resistance_boilers + This measure replaces an exising natural gas boiler with an electric resistance boiler. + This measure replaces an exising natural gas boiler with an electric resistance boiler. The measure loops through existing boiler objects and switches the fuel to "electricity". It also increases the nominal efficiency to 100% and replaces the efficiency curve to one representing electric boilers. + + + + + HVAC.Heating + + + + Measure Type + ModelMeasure + string + + + Intended Software Tool + Apply Measure Now + string + + + Intended Software Tool + OpenStudio Application + string + + + Intended Software Tool + Parametric Analysis Tool + string + + + Intended Use Case + Model Articulation + string + + + Intended Use Case + New Construction EE + string + + + Intended Use Case + Retrofit EE + string + + + + + LICENSE.md + md + license + E0468DD6 + + + README.md + md + readme + 4B285016 + + + README.md.erb + erb + readmeerb + 703C9964 + + + + OpenStudio + 3.0.0 + 2.8.0 + + measure.rb + rb + script + 769357CA + + + SmallHotel-2A.osm + osm + test + EB637B7E + + + add_hpwh_test.rb + rb + test + 1E82A175 + + + From f2e6f06c98c4dd22bf3cfb3bc6af4d2990e95bd1 Mon Sep 17 00:00:00 2001 From: Praprost Date: Tue, 22 Oct 2024 14:17:35 -0600 Subject: [PATCH 2/6] measure test --- .../tests/elec_boiler_test.rb | 265 ++++++++++++++++++ 1 file changed, 265 insertions(+) create mode 100644 resources/measures/upgrade_hvac_electric_boiler/tests/elec_boiler_test.rb diff --git a/resources/measures/upgrade_hvac_electric_boiler/tests/elec_boiler_test.rb b/resources/measures/upgrade_hvac_electric_boiler/tests/elec_boiler_test.rb new file mode 100644 index 000000000..32eee804d --- /dev/null +++ b/resources/measures/upgrade_hvac_electric_boiler/tests/elec_boiler_test.rb @@ -0,0 +1,265 @@ +# ComStockā„¢, Copyright (c) 2023 Alliance for Sustainable Energy, LLC. All rights reserved. +# See top level LICENSE.txt file for license terms. +# ******************************************************************************* +# OpenStudio(R), Copyright (c) 2008-2021, Alliance for Sustainable Energy, LLC. +# All rights reserved. +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# (1) Redistributions of source code must retain the above copyright notice, +# this list of conditions and the following disclaimer. +# +# (2) Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions and the following disclaimer in the documentation +# and/or other materials provided with the distribution. +# +# (3) Neither the name of the copyright holder nor the names of any contributors +# may be used to endorse or promote products derived from this software without +# specific prior written permission from the respective party. +# +# (4) Other than as required in clauses (1) and (2), distributions in any form +# of modifications or other derivative works may not use the "OpenStudio" +# trademark, "OS", "os", or any other confusingly similar designation without +# specific prior written permission from Alliance for Sustainable Energy, LLC. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS +# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, +# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE +# UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF +# THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +# OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# ******************************************************************************* + +# dependencies +require 'openstudio' +require 'openstudio/measure/ShowRunnerOutput' +require 'fileutils' +require 'minitest/autorun' +require_relative '../measure.rb' +require_relative '../../../../test/helpers/minitest_helper' + +class ElectricBoilerTest < Minitest::Test + + # return file paths to test models in test directory + def models_for_tests + paths = Dir.glob(File.join(File.dirname(__FILE__), '../../../tests/models/*.osm')) + paths = paths.map { |path| File.expand_path(path) } + return paths + end + + # return file paths to epw files in test directory + def epws_for_tests + paths = Dir.glob(File.join(File.dirname(__FILE__), '../../../tests/weather/*.epw')) + paths = paths.map { |path| File.expand_path(path) } + return paths + end + + def load_model(osm_path) + translator = OpenStudio::OSVersion::VersionTranslator.new + model = translator.loadModel(OpenStudio::Path.new(osm_path)) + assert(!model.empty?) + model = model.get + return model + end + + def run_dir(test_name) + # always generate test output in specially named 'output' directory so result files are not made part of the measure + puts "run dir expanded=" + "#{File.expand_path(File.join(File.dirname(__FILE__),'output', test_name.to_s))}" + return File.join(File.dirname(__FILE__),"output","#{test_name}") + end + + def model_input_path(osm_name) + # return models_for_tests.select { |x| set[:model] == osm_name } + puts (File.expand_path(File.dirname(__FILE__))) #expands path relative to current wd, passing abs path back + return File.expand_path(File.join(File.dirname(__FILE__), '../../../tests/models', osm_name)) + end + + def epw_input_path(epw_name) + return File.join(File.dirname(__FILE__), '../../../tests/weather', epw_name) + end + + def model_output_path(test_name) + return "#{run_dir(test_name)}/#{test_name}.osm" + end + + def sql_path(test_name) + return "#{run_dir(test_name)}/run/eplusout.sql" + end + + def report_path(test_name) + return "#{run_dir(test_name)}/reports/eplustbl.html" + end + + # applies the measure and then runs the model + def apply_measure_and_run(test_name, measure, argument_map, osm_path, epw_path, run_model: false, model: nil) + assert(File.exist?(osm_path)) + assert(File.exist?(epw_path)) + + # create run directory if it does not exist + if !File.exist?(run_dir(test_name)) + FileUtils.mkdir_p(run_dir(test_name)) + end + assert(File.exist?(run_dir(test_name))) + + # remove prior runs if they exist + # if File.exist?(model_output_path(test_name)) + # FileUtils.rm(model_output_path(test_name)) + # end + if File.exist?(report_path(test_name)) + FileUtils.rm(report_path(test_name)) + end + + # copy the osm and epw to the test directory + #osm_path = File.expand_path(osm_path) + puts(osm_path) + new_osm_path = "#{run_dir(test_name)}/#{File.basename(osm_path)}" + new_osm_path = File.expand_path(new_osm_path) + puts(new_osm_path) + FileUtils.cp(osm_path, new_osm_path) + new_epw_path = File.expand_path("#{run_dir(test_name)}/#{File.basename(epw_path)}") + FileUtils.cp(epw_path, new_epw_path) + # create an instance of a runner + runner = OpenStudio::Measure::OSRunner.new(OpenStudio::WorkflowJSON.new) + + # load the test model + if model.nil? + model = load_model(new_osm_path) + end + + # set model weather file + epw_file = OpenStudio::EpwFile.new(OpenStudio::Path.new(new_epw_path)) + OpenStudio::Model::WeatherFile.setWeatherFile(model, epw_file) + assert(model.weatherFile.is_initialized) + + # run the simulation if necessary + unless File.exist?(sql_path(test_name)) + puts "\nRUNNING SIZING RUN FOR #{test_name}..." + std = Standard.build('90.1-2013') + std.model_run_sizing_run(model, run_dir(test_name)) + end + assert(File.exist?(File.join(run_dir(test_name), "in.osm"))) + assert(File.exist?(sql_path(test_name))) + + # change into run directory for tests + start_dir = Dir.pwd + Dir.chdir run_dir(test_name) + + # run the measure + puts "\nAPPLYING MEASURE..." + measure.run(model, runner, argument_map) + result = runner.result + result_success = result.value.valueName == 'Success' + + # change back directory + Dir.chdir(start_dir) + + # Show the output + show_output(result) + + # Save model + puts "saving model to" + File.expand_path(model_output_path(test_name)) + model.save(File.expand_path(model_output_path(test_name)), true) + + if run_model && result_success + puts "\nRUNNING MODEL..." + + std = Standard.build('90.1-2013') + std.model_run_simulation_and_log_errors(model, run_dir(test_name)) + + # Check that the model ran successfully + assert(File.exist?(sql_path(test_name))) + end + + return result + end + + def test_number_of_arguments_and_argument_names + # This test ensures that the current test is matched to the measure inputs + test_name = 'test_number_of_arguments_and_argument_names' + puts "\n######\nTEST:#{test_name}\n######\n" + + # Create an instance of the measure + measure = ElectricResistanceBoilers.new + + # Make an empty model + model = OpenStudio::Model::Model.new + + # Get arguments and test that they are what we are expecting + arguments = measure.arguments(model) + assert_equal(0, arguments.size) + end + + def test_boiler_model + osm_name = '370_warehouse_pvav_gas_boiler_reheat_2A.osm' + epw_name = 'CA_LOS-ANGELES-DOWNTOWN-USC_722874S_16.epw' + + osm_path = model_input_path(osm_name) + epw_path = epw_input_path(epw_name) + + # Create an instance of the measure + measure = ElectricResistanceBoilers.new + + # Load the model; only used here for populating arguments + model = load_model(osm_path) + arguments = measure.arguments(model) + argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) + #put base case assertions here + # create hash of argument values + args_hash = {} + # populate argument with specified hash value if specified + arguments.each do |arg| + temp_arg_var = arg.clone + if args_hash.key?(arg.name) + assert(temp_arg_var.setValue(args_hash[arg.name]), "Could not set #{arg.name} to #{args_hash[arg.name]}") + end + argument_map[arg.name] = temp_arg_var + end + + # Apply the measure to the model and optionally run the model + result = apply_measure_and_run(__method__, measure, argument_map, osm_path, epw_path, run_model: false) + assert_equal('Success', result.value.valueName) + model = load_model(File.expand_path(model_output_path(__method__))) + + #confirm that boilers in model are now electric + boilers = model.getBoilerHotWaters + if boilers.size > 0 + boilers.each do |boiler| + boiler_fuel_type = boiler.fuelType + boiler_efficiency = boiler.nominalThermalEfficiency + assert(boiler_fuel_type = "Electricity") + assert(boiler_efficiency = 1.0) + end + else + runner.registerInfo("Model does not have any boilers. Measure not applicable.") + end + end + + def test_not_applicable_model + osm_name = '361_Retail_PSZ_Gas_5a.osm' + epw_name = 'CA_LOS-ANGELES-DOWNTOWN-USC_722874S_16.epw' + + osm_path = model_input_path(osm_name) + epw_path = epw_input_path(epw_name) + + # Create an instance of the measure + measure = ElectricResistanceBoilers.new + + # Load the model; only used here for populating arguments + model = load_model(osm_path) + arguments = measure.arguments(model) + argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) + #put base case assertions here + # create hash of argument values + args_hash = {} + + # Apply the measure to the model and optionally run the model + result = apply_measure_and_run(__method__, measure, argument_map, osm_path, epw_path, run_model: false) + assert_equal('NA', result.value.valueName) + model = load_model(File.expand_path(model_output_path(__method__))) + end +end From a1012fe08db4968d93009a55aa86fd4f96ee52da Mon Sep 17 00:00:00 2001 From: Praprost Date: Tue, 22 Oct 2024 14:26:13 -0600 Subject: [PATCH 3/6] update options lookup --- national/housing_characteristics/options_lookup.tsv | 1 + resources/options_lookup.tsv | 1 + 2 files changed, 2 insertions(+) diff --git a/national/housing_characteristics/options_lookup.tsv b/national/housing_characteristics/options_lookup.tsv index 28123aae2..5dbe339f5 100644 --- a/national/housing_characteristics/options_lookup.tsv +++ b/national/housing_characteristics/options_lookup.tsv @@ -4999,6 +4999,7 @@ hvac_economizer apply_measure upgrade_hvac_economizer hvac_dcv_v2 demand_control_ventilation upgrade_hvac_dcv hvac_exhaust_air_energy_or_heat_recovery add_energy_or_heat_recovery upgrade_hvac_exhaust_air_energy_or_heat_recovery hvac_unocc_oa_control unocc_oa_control upgrade_unoccupied_oa_controls +hvac_electric_boiler elec_boiler upgrade_hvac_electric_boiler fault_economizer_db_limit NA fault_hvac_economizer_changeover_temperature apply_measure=false econ_choice=all available economizer changeovertemp=10.88 fault_economizer_db_limit No fault fault_hvac_economizer_changeover_temperature apply_measure=false econ_choice=all available economizer changeovertemp=10.88 fault_economizer_db_limit Fault fault_hvac_economizer_changeover_temperature apply_measure=true econ_choice=all available economizer changeovertemp=10.88 diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index 28123aae2..5dbe339f5 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -4999,6 +4999,7 @@ hvac_economizer apply_measure upgrade_hvac_economizer hvac_dcv_v2 demand_control_ventilation upgrade_hvac_dcv hvac_exhaust_air_energy_or_heat_recovery add_energy_or_heat_recovery upgrade_hvac_exhaust_air_energy_or_heat_recovery hvac_unocc_oa_control unocc_oa_control upgrade_unoccupied_oa_controls +hvac_electric_boiler elec_boiler upgrade_hvac_electric_boiler fault_economizer_db_limit NA fault_hvac_economizer_changeover_temperature apply_measure=false econ_choice=all available economizer changeovertemp=10.88 fault_economizer_db_limit No fault fault_hvac_economizer_changeover_temperature apply_measure=false econ_choice=all available economizer changeovertemp=10.88 fault_economizer_db_limit Fault fault_hvac_economizer_changeover_temperature apply_measure=true econ_choice=all available economizer changeovertemp=10.88 From 7f53ef172131b4bbbaa2639174a8b3537d211b8d Mon Sep 17 00:00:00 2001 From: Praprost Date: Tue, 22 Oct 2024 15:04:41 -0600 Subject: [PATCH 4/6] add missing columns --- national/housing_characteristics/options_lookup.tsv | 5 +++++ resources/options_lookup.tsv | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/national/housing_characteristics/options_lookup.tsv b/national/housing_characteristics/options_lookup.tsv index 5dbe339f5..5ad88002a 100644 --- a/national/housing_characteristics/options_lookup.tsv +++ b/national/housing_characteristics/options_lookup.tsv @@ -5096,3 +5096,8 @@ resstock_puma_id * resstock_custom_region * cluster_id * cluster_name * +sampling_region * +size_bin * +tract * +state_id * +census_region * \ No newline at end of file diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index 5dbe339f5..5ad88002a 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -5096,3 +5096,8 @@ resstock_puma_id * resstock_custom_region * cluster_id * cluster_name * +sampling_region * +size_bin * +tract * +state_id * +census_region * \ No newline at end of file From 7f64a984c268eb362bc909bcda1854f7de12efc1 Mon Sep 17 00:00:00 2001 From: Praprost Date: Tue, 5 Nov 2024 11:43:05 -0700 Subject: [PATCH 5/6] add another unit test --- .../tests/elec_boiler_test.rb | 47 ++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/resources/measures/upgrade_hvac_electric_boiler/tests/elec_boiler_test.rb b/resources/measures/upgrade_hvac_electric_boiler/tests/elec_boiler_test.rb index 32eee804d..f57e1e4a2 100644 --- a/resources/measures/upgrade_hvac_electric_boiler/tests/elec_boiler_test.rb +++ b/resources/measures/upgrade_hvac_electric_boiler/tests/elec_boiler_test.rb @@ -162,7 +162,7 @@ def apply_measure_and_run(test_name, measure, argument_map, osm_path, epw_path, show_output(result) # Save model - puts "saving model to" + File.expand_path(model_output_path(test_name)) + puts "saving model to" + File.expand_path(model_output_path(test_name)) model.save(File.expand_path(model_output_path(test_name)), true) if run_model && result_success @@ -239,6 +239,51 @@ def test_boiler_model end end + def test_wshp_model + osm_name = '380_wshp_boiler.osm' + epw_name = 'CA_LOS-ANGELES-DOWNTOWN-USC_722874S_16.epw' + + osm_path = model_input_path(osm_name) + epw_path = epw_input_path(epw_name) + + # Create an instance of the measure + measure = ElectricResistanceBoilers.new + + # Load the model; only used here for populating arguments + model = load_model(osm_path) + arguments = measure.arguments(model) + argument_map = OpenStudio::Measure.convertOSArgumentVectorToMap(arguments) + #put base case assertions here + # create hash of argument values + args_hash = {} + # populate argument with specified hash value if specified + arguments.each do |arg| + temp_arg_var = arg.clone + if args_hash.key?(arg.name) + assert(temp_arg_var.setValue(args_hash[arg.name]), "Could not set #{arg.name} to #{args_hash[arg.name]}") + end + argument_map[arg.name] = temp_arg_var + end + + # Apply the measure to the model and optionally run the model + result = apply_measure_and_run(__method__, measure, argument_map, osm_path, epw_path, run_model: false) + assert_equal('Success', result.value.valueName) + model = load_model(File.expand_path(model_output_path(__method__))) + + #confirm that boilers in model are now electric + boilers = model.getBoilerHotWaters + if boilers.size > 0 + boilers.each do |boiler| + boiler_fuel_type = boiler.fuelType + boiler_efficiency = boiler.nominalThermalEfficiency + assert(boiler_fuel_type = "Electricity") + assert(boiler_efficiency = 1.0) + end + else + runner.registerInfo("Model does not have any boilers. Measure not applicable.") + end + end + def test_not_applicable_model osm_name = '361_Retail_PSZ_Gas_5a.osm' epw_name = 'CA_LOS-ANGELES-DOWNTOWN-USC_722874S_16.epw' From fa7dc66f0703b9e59a2115fe408570aa6abce303 Mon Sep 17 00:00:00 2001 From: Praprost Date: Tue, 5 Nov 2024 11:44:48 -0700 Subject: [PATCH 6/6] add new test model --- postprocessing/compare_runs.py | 89 + postprocessing/compare_upgrades.py | 93 + resources/tests/models/380_wshp_boiler.osm | 70326 +++++++++++++++++++ 3 files changed, 70508 insertions(+) create mode 100644 postprocessing/compare_runs.py create mode 100644 postprocessing/compare_upgrades.py create mode 100644 resources/tests/models/380_wshp_boiler.osm diff --git a/postprocessing/compare_runs.py b/postprocessing/compare_runs.py new file mode 100644 index 000000000..9278c4c5c --- /dev/null +++ b/postprocessing/compare_runs.py @@ -0,0 +1,89 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +import logging + +import comstockpostproc as cspp + + +logging.basicConfig(level='INFO') # Use DEBUG, INFO, or WARNING +logger = logging.getLogger(__name__) + +def main(): + # First ComStock run + comstock_a = cspp.ComStock( + s3_base_dir='eulp/euss_com', # If run not on S3, download results_up**.parquet manually + comstock_run_name='new_sampling_154k', # Name of the run on S3 + comstock_run_version='new_sampling_154k', # Use whatever you want to see in plot and folder names + comstock_year=2018, # Typically don't change this + athena_table_name=None, # Typically don't change this + truth_data_version='v01', # Typically don't change this + buildstock_csv_name='buildstock.csv', # Download buildstock.csv manually + acceptable_failure_percentage=0.025, # Can increase this when testing and high failure are OK + drop_failed_runs=True, # False if you want to evaluate which runs failed in raw output data + color_hex='#0072B2', # Color used to represent this run in plots + skip_missing_columns=True, # False if you want to ensure you have all data specified for export + reload_from_csv=False, # True if CSV already made and want faster reload times + include_upgrades=False # False if not looking at upgrades + ) + + # Second ComStock run + # comstock_b = cspp.ComStock( + # s3_base_dir='eulp/euss_com', # If run not on S3, download results_up**.parquet manually + # comstock_run_name='new_sampling_154k', # Name of the run on S3 + # comstock_run_version='new_sampling_154k', # Use whatever you want to see in plot and folder names + # comstock_year=2018, # Typically don't change this + # athena_table_name='rand_985932_20240321', # Typically same as comstock_run_name or None + # truth_data_version='v01', # Typically don't change this + # buildstock_csv_name='buildstock.csv', # Download buildstock.csv manually + # acceptable_failure_percentage=0.025, # Can increase this when testing and high failure are OK + # drop_failed_runs=True, # False if you want to evaluate which runs failed in raw output data + # color_hex='#56B4E9', # Color used to represent this run in plots + # skip_missing_columns=True, # False if you want to ensure you have all data specified for export + # reload_from_csv=False, # True if CSV already made and want faster reload times + # include_upgrades=False # False if not looking at upgrades + # ) + + # Stock Estimation for Apportionment: + stock_estimate = cspp.Apportion( + stock_estimation_version='2024R2', # Only updated when a new stock estimate is published + truth_data_version='v01' # Typically don't change this + ) + + # CBECS + cbecs = cspp.CBECS( + cbecs_year=2018, # 2012 and 2018 currently available + truth_data_version='v01', # Typically don't change this + color_hex='#009E73', # Color used to represent CBECS in plots + reload_from_csv=False # True if CSV already made and want faster reload times + ) + + # First scale ComStock runs to the 'truth data' from StockE V3 estimates using bucket-based apportionment + # Then scale both ComStock runs to CBECS 2018 AND remove non-ComStock buildings from CBECS + # This is how weights in the models are set to represent national energy consumption + comstock_a.add_weights_aportioned_by_stock_estimate(apportionment=stock_estimate) + comstock_a.add_national_scaling_weights(cbecs, remove_non_comstock_bldg_types_from_cbecs=True) + # comstock_b.add_weights_aportioned_by_stock_estimate(apportionment=stock_estimate) + # comstock_b.add_national_scaling_weights(cbecs, remove_non_comstock_bldg_types_from_cbecs=True) + + # Export CBECS and ComStock data to wide and long formats for Tableau and to skip processing later + cbecs.export_to_csv_wide() # May comment this out if CSV output isn't needed + # comstock_a.create_national_aggregation() # May comment this out if CSV output isn't needed + # comstock_b.create_national_aggregation() # May comment this out if CSV output isn't needed + # TODO This (long CSV export) is not yet re-implemented + # comstock_a.export_to_csv_long() # Long format useful for stacking end uses and fuels + # comstock_b.export_to_csv_long() # Long format useful for stacking end uses and fuels + + # Compare multiple ComStock runs to one another and to CBECS + comparison = cspp.ComStockToCBECSComparison( + cbecs_list=[cbecs], + comstock_list = [comstock_a], + make_comparison_plots=True + ) + + # Export the comparison data to wide format for Tableau + comparison.export_to_csv_wide() + +# Code to execute the script +if __name__=="__main__": + main() diff --git a/postprocessing/compare_upgrades.py b/postprocessing/compare_upgrades.py new file mode 100644 index 000000000..58b055128 --- /dev/null +++ b/postprocessing/compare_upgrades.py @@ -0,0 +1,93 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +import logging + +import comstockpostproc as cspp + + +logging.basicConfig(level='INFO') # Use DEBUG, INFO, or WARNING +logger = logging.getLogger(__name__) + +def main(): + # ComStock run + comstock = cspp.ComStock( + s3_base_dir='eulp/euss_com', # If run not on S3, download results_up**.parquet manually +<<<<<<< Updated upstream + comstock_run_name='new_sampling_154k', # Name of the run on S3 + comstock_run_version='new_sampling_154k', # Use whatever you want to see in plot and folder names +======= + comstock_run_name='elec_boiler_10k', # Name of the run on S3 + comstock_run_version='elec_boiler_10k', # Use whatever you want to see in plot and folder names +>>>>>>> Stashed changes + comstock_year=2018, # Typically don't change this + athena_table_name=None, # Typically don't change this + truth_data_version='v01', # Typically don't change this + buildstock_csv_name='buildstock.csv', # Download buildstock.csv manually +<<<<<<< Updated upstream + acceptable_failure_percentage=0.25, # Can increase this when testing and high failure are OK +======= + acceptable_failure_percentage=0.025, # Can increase this when testing and high failure are OK +>>>>>>> Stashed changes + drop_failed_runs=True, # False if you want to evaluate which runs failed in raw output data + color_hex='#0072B2', # Color used to represent this run in plots + skip_missing_columns=True, # False if you want to ensure you have all data specified for export + reload_from_csv=False, # True if CSV already made and want faster reload times + include_upgrades=True, # False if not looking at upgrades + upgrade_ids_to_skip=[], # Use [1, 3] etc. to exclude certain upgrades + make_timeseries_plots=False, + states={ + #'MN': 'Minnesota', # specify state to use for timeseries plots in dictionary format. State ID must correspond correctly. +<<<<<<< Updated upstream + 'MA':'Massachusetts', +======= + #'MA':'Massachusetts', +>>>>>>> Stashed changes + #'OR': 'Oregon', + #'LA': 'Louisiana', + #'AZ': 'Arizona', + #'TN': 'Tennessee' + }, + upgrade_ids_for_comparison={} # Use {'':[0,1,2]}; add as many upgrade IDs as needed, but plots look strange over 5 + ) + + # Stock Estimation for Apportionment: + stock_estimate = cspp.Apportion( + stock_estimation_version='2024R2', # Only updated when a new stock estimate is published + truth_data_version='v01' # Typically don't change this + ) + + # CBECS + cbecs = cspp.CBECS( + cbecs_year=2018, # 2012 and 2018 currently available + truth_data_version='v01', # Typically don't change this + color_hex='#009E73', # Color used to represent CBECS in plots + reload_from_csv=False # True if CSV already made and want faster reload times + ) + + # Scale ComStock runs to the 'truth data' from StockE V3 estimates using bucket-based apportionment + comstock.add_weights_aportioned_by_stock_estimate(apportionment=stock_estimate) + # Scale ComStock run to CBECS 2018 AND remove non-ComStock buildings from CBECS + comstock.add_national_scaling_weights(cbecs, remove_non_comstock_bldg_types_from_cbecs=True) + + # Export CBECS and ComStock data to wide and long formats for Tableau and to skip processing later +<<<<<<< Updated upstream + #cbecs.export_to_csv_wide() # May comment this out after run once + comstock.create_national_aggregation() + #comstock.create_geospatially_resolved_aggregations(comstock.STATE_ID, pretty_geo_col_name='state_id') + #comstock.create_geospatially_resolved_aggregations(comstock.COUNTY_ID, pretty_geo_col_name='county_id') +======= + # cbecs.export_to_csv_wide() # May comment this out after run once + # comstock.create_national_aggregation() + # comstock.create_geospatially_resolved_aggregations(comstock.STATE_ID, pretty_geo_col_name='state_id') + # comstock.create_geospatially_resolved_aggregations(comstock.COUNTY_ID, pretty_geo_col_name='county_id') +>>>>>>> Stashed changes + # TODO Long is def not working as expected anymore... + # comstock.export_to_csv_long() # Long format useful for stacking end uses and fuels + + # Create measure run comparisons; only use if run has measures + comparison = cspp.ComStockMeasureComparison(comstock, states=comstock.states, make_comparison_plots = comstock.make_comparison_plots, make_timeseries_plots = comstock.make_timeseries_plots) + +# Code to execute the script +if __name__=="__main__": + main() diff --git a/resources/tests/models/380_wshp_boiler.osm b/resources/tests/models/380_wshp_boiler.osm new file mode 100644 index 000000000..79ecefb03 --- /dev/null +++ b/resources/tests/models/380_wshp_boiler.osm @@ -0,0 +1,70326 @@ + +OS:Version, + {c6878c01-ad80-4d88-a759-43dfa5e8cd5f}, !- Handle + 3.8.0; !- Version Identifier + +OS:Building, + {07983feb-65c5-4d39-bc2e-56e51681b631}, !- Handle + ComStock DOE Ref Pre-1980|Outpatient, !- Name + , !- Building Sector Type + 45, !- North Axis {deg} + , !- Nominal Floor to Floor Height {m} + , !- Space Type Name + {b8e45b3f-9987-44bc-9ac4-7da42a54f0b4}, !- Default Construction Set Name + {588c91b5-3cb0-409d-8487-e837b16855e0}, !- Default Schedule Set Name + , !- Standards Number of Stories + , !- Standards Number of Above Ground Stories + , !- Standards Template + Outpatient; !- Standards Building Type + +OS:Facility, + {a664b1ed-5c64-4961-af93-8438960f1b48}; !- Handle + +OS:Site, + {bbd880ea-2b4d-45c8-8979-091b65ccd5c9}, !- Handle + Wilmington New Cast_DE_USA, !- Name + 39.67, !- Latitude {deg} + -75.6, !- Longitude {deg} + -5, !- Time Zone {hr} + 24, !- Elevation {m} + City; !- Terrain + +OS:SimulationControl, + {08db53a2-7a2b-482b-b60b-0420facd0b27}, !- Handle + Yes, !- Do Zone Sizing Calculation + Yes, !- Do System Sizing Calculation + Yes, !- Do Plant Sizing Calculation + No, !- Run Simulation for Sizing Periods + Yes, !- Run Simulation for Weather File Run Periods + , !- Loads Convergence Tolerance Value {W} + , !- Temperature Convergence Tolerance Value {deltaC} + , !- Solar Distribution + , !- Maximum Number of Warmup Days + , !- Minimum Number of Warmup Days + No, !- Do HVAC Sizing Simulation for Sizing Periods + 1; !- Maximum Number of HVAC Sizing Simulation Passes + +OS:Sizing:Parameters, + {519ac565-95fc-4b92-aaa0-90891610a946}, !- Handle + 1.25, !- Heating Sizing Factor + 1.15; !- Cooling Sizing Factor + +OS:Timestep, + {1a328aa6-3e82-44b4-9c02-9fe23c5074ea}, !- Handle + 4; !- Number of Timesteps per Hour + +OS:ShadowCalculation, + {7b7c0c0e-bfb3-4685-95e2-f5591535a6b2}, !- Handle + PolygonClipping, !- Shading Calculation Method + , !- Shading Calculation Update Frequency Method + 20, !- Shading Calculation Update Frequency + 15000, !- Maximum Figures in Shadow Overlap Calculations + , !- Polygon Clipping Algorithm + 512, !- Pixel Counting Resolution + , !- Sky Diffuse Modeling Algorithm + No, !- Output External Shading Calculation Results + No, !- Disable Self-Shading Within Shading Zone Groups + No; !- Disable Self-Shading From Shading Zone Groups to Other Zones + +OS:HeatBalanceAlgorithm, + {cafe7eae-c994-4b49-aa95-8b237e859bab}, !- Handle + ConductionTransferFunction, !- Algorithm + 200; !- Surface Temperature Upper Limit {C} + +OS:RunPeriod, + {b3cc4298-ef6d-4766-a846-2585c8775c14}, !- Handle + Run Period 1, !- Name + 1, !- Begin Month + 1, !- Begin Day of Month + 12, !- End Month + 31, !- End Day of Month + , !- 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 + ; !- Number of Times Runperiod to be Repeated + +OS:LifeCycleCost:Parameters, + {5907de86-f936-4e9f-b590-3eab6957f906}, !- Handle + , !- Analysis Type + , !- Discounting Convention + , !- Inflation Approach + , !- Real Discount Rate + , !- Nominal Discount Rate + , !- Inflation + , !- Base Date Month + , !- Base Date Year + , !- Service Date Month + , !- Service Date Year + ; !- Length of Study Period in Years + +OS:WeatherFile, + {3178f088-e448-4533-9d41-9defc9ed06eb}, !- Handle + Wilmington New Cast, !- City + DE, !- State Province Region + USA, !- Country + customized weather file, !- Data Source + 724089, !- WMO Number + 39.67, !- Latitude {deg} + -75.6, !- Longitude {deg} + -5, !- Time Zone {hr} + 24, !- Elevation {m} + /weather/G1000030.epw, !- Url + 226BE93E, !- Checksum + , !- Start Date Actual Year + Friday; !- Start Day of Week + +OS:AdditionalProperties, + {cb0058d0-fb54-4953-ae03-87fce3c2ae5e}, !- Handle + {07983feb-65c5-4d39-bc2e-56e51681b631}, !- Object Name + Building, !- Feature Name 1 + String, !- Feature Data Type 1 + 295267, !- Feature Value 1 + cook_fuel_broiler, !- Feature Name 2 + String, !- Feature Data Type 2 + Electric, !- Feature Value 2 + cook_fuel_fryer, !- Feature Name 3 + String, !- Feature Data Type 3 + Gas, !- Feature Value 3 + cook_fuel_griddle, !- Feature Name 4 + String, !- Feature Data Type 4 + Gas, !- Feature Value 4 + cook_fuel_oven, !- Feature Name 5 + String, !- Feature Data Type 5 + Electric, !- Feature Value 5 + cook_fuel_range, !- Feature Name 6 + String, !- Feature Data Type 6 + Gas, !- Feature Value 6 + cook_fuel_steamer, !- Feature Name 7 + String, !- Feature Data Type 7 + Electric, !- Feature Value 7 + heating_fuel, !- Feature Name 8 + String, !- Feature Data Type 8 + NaturalGas, !- Feature Value 8 + hvac_system_type, !- Feature Name 9 + String, !- Feature Data Type 9 + DOAS with water source heat pumps cooling tower with boiler, !- Feature Value 9 + rotation, !- Feature Name 10 + String, !- Feature Data Type 10 + 45, !- Feature Value 10 + year_of_simulation, !- Feature Name 11 + String, !- Feature Data Type 11 + 2018, !- Feature Value 11 + building_type, !- Feature Name 12 + String, !- Feature Data Type 12 + outpatient, !- Feature Value 12 + sampling_region, !- Feature Name 13 + String, !- Feature Data Type 13 + 46, !- Feature Value 13 + size_bin, !- Feature Name 14 + String, !- Feature Data Type 14 + 2, !- Feature Value 14 + building_area, !- Feature Name 15 + String, !- Feature Data Type 15 + 80001_100000, !- Feature Value 15 + tract, !- Feature Name 16 + String, !- Feature Data Type 16 + G1000030013501, !- Feature Value 16 + year_built, !- Feature Name 17 + String, !- Feature Data Type 17 + 1968, !- Feature Value 17 + number_stories, !- Feature Name 18 + String, !- Feature Data Type 18 + 1, !- Feature Value 18 + state_id, !- Feature Name 19 + String, !- Feature Data Type 19 + G100, !- Feature Value 19 + county_id, !- Feature Name 20 + String, !- Feature Data Type 20 + G1000030, !- Feature Value 20 + building_subtype, !- Feature Name 21 + String, !- Feature Data Type 21 + NA, !- Feature Value 21 + census_region, !- Feature Name 22 + String, !- Feature Data Type 22 + South Atlantic, !- Feature Value 22 + climate_zone, !- Feature Name 23 + String, !- Feature Data Type 23 + 4A, !- Feature Value 23 + ground_thermal_conductivity, !- Feature Name 24 + String, !- Feature Data Type 24 + 1.7, !- Feature Value 24 + energy_code_compliance_during_original_building_construction, !- Feature Name 25 + String, !- Feature Data Type 25 + comply, !- Feature Value 25 + ownership_status, !- Feature Name 26 + String, !- Feature Data Type 26 + leased, !- Feature Value 26 + party_responsible_for_operation, !- Feature Name 27 + String, !- Feature Data Type 27 + building_owner_or_tenant, !- Feature Value 27 + purchase_input_responsibility, !- Feature Name 28 + String, !- Feature Data Type 28 + building_owner_or_tenant, !- Feature Value 28 + year_bin_of_original_building_construction, !- Feature Name 29 + String, !- Feature Data Type 29 + pre_1978, !- Feature Value 29 + energy_code_in_force_during_original_building_construction, !- Feature Name 30 + String, !- Feature Data Type 30 + ComStock DOE Ref Pre-1980, !- Feature Value 30 + window_wall_ratio, !- Feature Name 31 + String, !- Feature Data Type 31 + 76_100pct, !- Feature Value 31 + energy_code_followed_during_original_building_construction, !- Feature Name 32 + String, !- Feature Data Type 32 + ComStock DOE Ref Pre-1980, !- Feature Value 32 + building_shape, !- Feature Name 33 + String, !- Feature Data Type 33 + 2, !- Feature Value 33 + service_water_heating_fuel, !- Feature Name 34 + String, !- Feature Data Type 34 + NaturalGas, !- Feature Value 34 + wall_construction_type, !- Feature Name 35 + String, !- Feature Data Type 35 + mass, !- Feature Value 35 + weekday_start_time, !- Feature Name 36 + String, !- Feature Data Type 36 + 10.25, !- Feature Value 36 + weekend_start_time, !- Feature Name 37 + String, !- Feature Data Type 37 + 9.75, !- Feature Value 37 + airtightness, !- Feature Name 38 + String, !- Feature Data Type 38 + 30.0, !- Feature Value 38 + aspect_ratio, !- Feature Name 39 + String, !- Feature Data Type 39 + 1, !- Feature Value 39 + weekday_duration, !- Feature Name 40 + String, !- Feature Data Type 40 + 6.0, !- Feature Value 40 + weekend_duration, !- Feature Name 41 + String, !- Feature Data Type 41 + 6.5, !- Feature Value 41 + energy_code_compliance_hvac, !- Feature Name 42 + String, !- Feature Data Type 42 + comply, !- Feature Value 42 + fault_economizer_damper_fully_closed, !- Feature Name 43 + String, !- Feature Data Type 43 + No fault, !- Feature Value 43 + hvac_night_variability, !- Feature Name 44 + String, !- Feature Data Type 44 + default_nochange, !- Feature Value 44 + hvac_tst_clg_delta_f, !- Feature Name 45 + String, !- Feature Data Type 45 + 999, !- Feature Value 45 + hvac_tst_clg_sp_f, !- Feature Name 46 + String, !- Feature Data Type 46 + 999, !- Feature Value 46 + hvac_tst_htg_delta_f, !- Feature Name 47 + String, !- Feature Data Type 47 + 999, !- Feature Value 47 + hvac_tst_htg_sp_f, !- Feature Name 48 + String, !- Feature Data Type 48 + 999, !- Feature Value 48 + year_bin_of_last_hvac_replacement, !- Feature Name 49 + String, !- Feature Data Type 49 + 1993, !- Feature Value 49 + energy_code_in_force_during_last_hvac_replacement, !- Feature Name 50 + String, !- Feature Data Type 50 + ComStock DOE Ref 1980-2004, !- Feature Value 50 + energy_code_followed_during_last_hvac_replacement, !- Feature Name 51 + String, !- Feature Data Type 51 + ComStock DOE Ref 1980-2004, !- Feature Value 51 + fault_economizer_db_limit, !- Feature Name 52 + String, !- Feature Data Type 52 + No fault, !- Feature Value 52 + cook_dining_type, !- Feature Name 53 + String, !- Feature Data Type 53 + None, !- Feature Value 53 + cook_fryers_counts, !- Feature Name 54 + String, !- Feature Data Type 54 + 0.0, !- Feature Value 54 + cook_griddles_counts, !- Feature Name 55 + String, !- Feature Data Type 55 + 0.0, !- Feature Value 55 + cook_ovens_counts, !- Feature Name 56 + String, !- Feature Data Type 56 + 0.0, !- Feature Value 56 + cook_ranges_counts, !- Feature Name 57 + String, !- Feature Data Type 57 + 0.0, !- Feature Value 57 + cook_steamers_counts, !- Feature Name 58 + String, !- Feature Data Type 58 + 0.0, !- Feature Value 58 + cook_broiler_counts, !- Feature Name 59 + String, !- Feature Data Type 59 + 0.0, !- Feature Value 59 + energy_code_compliance_service_water_heating, !- Feature Name 60 + String, !- Feature Data Type 60 + comply, !- Feature Value 60 + energy_code_compliance_interior_equipment, !- Feature Name 61 + String, !- Feature Data Type 61 + comply, !- Feature Value 61 + plugload_sch_base_peak_ratio_type, !- Feature Name 62 + String, !- Feature Data Type 62 + no_modification, !- Feature Value 62 + plugload_sch_weekday_base_peak_ratio, !- Feature Name 63 + String, !- Feature Data Type 63 + NA, !- Feature Value 63 + plugload_sch_weekend_base_peak_ratio, !- Feature Name 64 + String, !- Feature Data Type 64 + NA, !- Feature Value 64 + year_bin_of_last_interior_equipment_replacement, !- Feature Name 65 + String, !- Feature Data Type 65 + 2005, !- Feature Value 65 + year_bin_of_last_service_water_heating_replacement, !- Feature Name 66 + String, !- Feature Data Type 66 + 2014, !- Feature Value 66 + energy_code_in_force_during_last_interior_equipment_replacement, !- Feature Name 67 + String, !- Feature Data Type 67 + ComStock DOE Ref 1980-2004, !- Feature Value 67 + energy_code_in_force_during_last_service_water_heating_replacement, !- Feature Name 68 + String, !- Feature Data Type 68 + ComStock 90.1-2007, !- Feature Value 68 + energy_code_followed_during_last_interior_equipment_replacement, !- Feature Name 69 + String, !- Feature Data Type 69 + ComStock DOE Ref 1980-2004, !- Feature Value 69 + energy_code_followed_during_last_service_water_heating_replacement, !- Feature Name 70 + String, !- Feature Data Type 70 + ComStock 90.1-2007, !- Feature Value 70 + building_size_lighting_tech, !- Feature Name 71 + String, !- Feature Data Type 71 + large, !- Feature Value 71 + energy_code_compliance_exterior_lighting, !- Feature Name 72 + String, !- Feature Data Type 72 + comply, !- Feature Value 72 + energy_code_compliance_interior_lighting, !- Feature Name 73 + String, !- Feature Data Type 73 + lead, !- Feature Value 73 + ltg_sch_base_peak_ratio_type, !- Feature Name 74 + String, !- Feature Data Type 74 + no_modification, !- Feature Value 74 + ltg_sch_weekday_base_peak_ratio, !- Feature Name 75 + String, !- Feature Data Type 75 + NA, !- Feature Value 75 + ltg_sch_weekend_base_peak_ratio, !- Feature Name 76 + String, !- Feature Data Type 76 + NA, !- Feature Value 76 + year_bin_of_last_exterior_lighting_replacement, !- Feature Name 77 + String, !- Feature Data Type 77 + 2014, !- Feature Value 77 + year_bin_of_last_interior_lighting_replacement, !- Feature Name 78 + String, !- Feature Data Type 78 + 2015, !- Feature Value 78 + energy_code_in_force_during_last_exterior_lighting_replacement, !- Feature Name 79 + String, !- Feature Data Type 79 + ComStock 90.1-2007, !- Feature Value 79 + energy_code_in_force_during_last_interior_lighting_replacement, !- Feature Name 80 + String, !- Feature Data Type 80 + ComStock 90.1-2010, !- Feature Value 80 + lighting_generation, !- Feature Name 81 + String, !- Feature Data Type 81 + gen4_led, !- Feature Value 81 + energy_code_followed_during_last_exterior_lighting_replacement, !- Feature Name 82 + String, !- Feature Data Type 82 + ComStock 90.1-2007, !- Feature Value 82 + energy_code_followed_during_last_interior_lighting_replacement, !- Feature Name 83 + String, !- Feature Data Type 83 + ComStock 90.1-2019, !- Feature Value 83 + energy_code_compliance_roof, !- Feature Name 84 + String, !- Feature Data Type 84 + comply, !- Feature Value 84 + energy_code_compliance_walls, !- Feature Name 85 + String, !- Feature Data Type 85 + comply, !- Feature Value 85 + energy_code_compliance_windows, !- Feature Name 86 + String, !- Feature Data Type 86 + comply, !- Feature Value 86 + year_bin_of_last_roof_replacement, !- Feature Name 87 + String, !- Feature Data Type 87 + pre_1978, !- Feature Value 87 + year_bin_of_last_walls_replacement, !- Feature Name 88 + String, !- Feature Data Type 88 + pre_1978, !- Feature Value 88 + year_bin_of_last_windows_replacement, !- Feature Name 89 + String, !- Feature Data Type 89 + pre_1978, !- Feature Value 89 + energy_code_in_force_during_last_roof_replacement, !- Feature Name 90 + String, !- Feature Data Type 90 + ComStock DOE Ref Pre-1980, !- Feature Value 90 + energy_code_in_force_during_last_walls_replacement, !- Feature Name 91 + String, !- Feature Data Type 91 + ComStock DOE Ref Pre-1980, !- Feature Value 91 + energy_code_in_force_during_last_windows_replacement, !- Feature Name 92 + String, !- Feature Data Type 92 + ComStock DOE Ref Pre-1980, !- Feature Value 92 + energy_code_followed_during_last_roof_replacement, !- Feature Name 93 + String, !- Feature Data Type 93 + ComStock DOE Ref Pre-1980, !- Feature Value 93 + energy_code_followed_during_last_walls_replacement, !- Feature Name 94 + String, !- Feature Data Type 94 + ComStock DOE Ref Pre-1980, !- Feature Value 94 + energy_code_followed_during_last_windows_replacement, !- Feature Name 95 + String, !- Feature Data Type 95 + ComStock DOE Ref Pre-1980, !- Feature Value 95 + baseline_hvac_sizing, !- Feature Name 96 + String, !- Feature Data Type 96 + hardsize, !- Feature Value 96 + nhgis_tract_gisjoin, !- Feature Name 97 + String, !- Feature Data Type 97 + G1000030014808, !- Feature Value 97 + nhgis_county_gisjoin, !- Feature Name 98 + String, !- Feature Data Type 98 + G1000030, !- Feature Value 98 + nhgis_puma_gisjoin, !- Feature Name 99 + String, !- Feature Data Type 99 + G10000104, !- Feature Value 99 + state_name, !- Feature Name 100 + String, !- Feature Data Type 100 + Delaware, !- Feature Value 100 + state_abbreviation, !- Feature Name 101 + String, !- Feature Data Type 101 + DE, !- Feature Value 101 + census_division_name, !- Feature Name 102 + String, !- Feature Data Type 102 + South Atlantic, !- Feature Value 102 + census_region_name, !- Feature Name 103 + String, !- Feature Data Type 103 + South, !- Feature Value 103 + census_division_name_recs, !- Feature Name 104 + String, !- Feature Data Type 104 + South Atlantic, !- Feature Value 104 + american_housing_survey_region, !- Feature Name 105 + String, !- Feature Data Type 105 + CBSA Philadelphia-Camden-Wilmington, PA-NJ-DE-MD, !- Feature Value 105 + weather_file_2018, !- Feature Name 106 + String, !- Feature Data Type 106 + USA_DE_Wilmington.New.Cast.724089_2018.epw, !- Feature Value 106 + weather_file_TMY3, !- Feature Name 107 + String, !- Feature Data Type 107 + Wilmington_New_Castle_Cnty_Ap, !- Feature Value 107 + climate_zone_building_america, !- Feature Name 108 + String, !- Feature Data Type 108 + Mixed-Humid, !- Feature Value 108 + climate_zone_ashrae_2006, !- Feature Name 109 + String, !- Feature Data Type 109 + 4A, !- Feature Value 109 + iso_region, !- Feature Name 110 + String, !- Feature Data Type 110 + PJM, !- Feature Value 110 + reeds_balancing_area, !- Feature Name 111 + String, !- Feature Data Type 111 + 125.0, !- Feature Value 111 + resstock_county_id, !- Feature Name 112 + String, !- Feature Data Type 112 + DE, New Castle County, !- Feature Value 112 + resstock_puma_id, !- Feature Name 113 + String, !- Feature Data Type 113 + DE, 00104, !- Feature Value 113 + resstock_custom_region, !- Feature Name 114 + String, !- Feature Data Type 114 + CR08, !- Feature Value 114 + cambium_grid_region, !- Feature Name 115 + String, !- Feature Data Type 115 + RFCEc, !- Feature Value 115 + cluster_id, !- Feature Name 116 + String, !- Feature Data Type 116 + 39, !- Feature Value 116 + cluster_name, !- Feature Name 117 + String, !- Feature Data Type 117 + the Washington DC to Philadelphia Area, !- Feature Value 117 + grid_region, !- Feature Name 118 + String, !- Feature Data Type 118 + RFCEc, !- Feature Value 118 + Soil Conductivity, !- Feature Name 119 + Double, !- Feature Data Type 119 + 1.7, !- Feature Value 119 + Undisturbed Ground Temperature, !- Feature Name 120 + Double, !- Feature Data Type 120 + 14.699999999999999, !- Feature Value 120 + wall_as_constructed_template, !- Feature Name 121 + String, !- Feature Data Type 121 + ComStock DOE Ref Pre-1980, !- Feature Value 121 + wall_template, !- Feature Name 122 + String, !- Feature Data Type 122 + ComStock DOE Ref Pre-1980, !- Feature Value 122 + roof_as_constructed_template, !- Feature Name 123 + String, !- Feature Data Type 123 + ComStock DOE Ref Pre-1980, !- Feature Value 123 + roof_template, !- Feature Name 124 + String, !- Feature Data Type 124 + ComStock DOE Ref Pre-1980, !- Feature Value 124 + exterior_lighting_as_constructed_template, !- Feature Name 125 + String, !- Feature Data Type 125 + ComStock DOE Ref Pre-1980, !- Feature Value 125 + exterior_lighting_template, !- Feature Name 126 + String, !- Feature Data Type 126 + ComStock 90.1-2007, !- Feature Value 126 + interior_equipment_as_constructed_template, !- Feature Name 127 + String, !- Feature Data Type 127 + ComStock DOE Ref Pre-1980, !- Feature Value 127 + interior_equipment_template, !- Feature Name 128 + String, !- Feature Data Type 128 + ComStock DOE Ref 1980-2004, !- Feature Value 128 + service_water_heating_as_constructed_template, !- Feature Name 129 + String, !- Feature Data Type 129 + ComStock DOE Ref Pre-1980, !- Feature Value 129 + service_water_heating_template, !- Feature Name 130 + String, !- Feature Data Type 130 + ComStock 90.1-2007, !- Feature Value 130 + hvac_as_constructed_template, !- Feature Name 131 + String, !- Feature Data Type 131 + ComStock DOE Ref Pre-1980, !- Feature Value 131 + hvac_template, !- Feature Name 132 + String, !- Feature Data Type 132 + ComStock DOE Ref 1980-2004; !- Feature Value 132 + +OS:Site:WaterMainsTemperature, + {733038da-e43a-4d3c-9036-0761c8633e04}, !- Handle + Correlation, !- Calculation Method + , !- Temperature Schedule Name + 13.2908333333333, !- Annual Average Outdoor Air Temperature {C} + 25.79; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} + +OS:SizingPeriod:DesignDay, + {e86ad40b-7179-4790-b38c-8f734ac02597}, !- Handle + Wilmington New Cast Ann Clg .4% Condns DB=>MWB 1, !- Name + 33.3, !- Maximum Dry-Bulb Temperature {C} + 9.5, !- Daily Dry-Bulb Temperature Range {deltaC} + 101037, !- Barometric Pressure {Pa} + 4.6, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + , !- Sky Clearness + No, !- Rain Indicator + No, !- Snow Indicator + 21, !- Day of Month + 7, !- Month + SummerDesignDay, !- Day Type + No, !- Daylight Saving Time Indicator + Wetbulb, !- Humidity Condition Type + , !- Humidity Condition Day Schedule Name + 23.9, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.454, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance {dimensionless} + 2.123; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} + +OS:SizingPeriod:DesignDay, + {9cd98d64-2d6d-4c55-b02c-93ee38350df0}, !- Handle + Wilmington New Cast Ann Clg .4% Condns WB=>MDB 1, !- Name + 30.7, !- Maximum Dry-Bulb Temperature {C} + 9.5, !- Daily Dry-Bulb Temperature Range {deltaC} + 101037, !- Barometric Pressure {Pa} + 4.6, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + , !- Sky Clearness + No, !- Rain Indicator + No, !- Snow Indicator + 21, !- Day of Month + 7, !- Month + SummerDesignDay, !- Day Type + No, !- Daylight Saving Time Indicator + Wetbulb, !- Humidity Condition Type + , !- Humidity Condition Day Schedule Name + 25.6, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.454, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance {dimensionless} + 2.123; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} + +OS:SizingPeriod:DesignDay, + {9738e67c-0c4c-46df-80d6-092987d6cfe7}, !- Handle + Wilmington New Cast Ann Htg 99.6% Condns DB 1, !- Name + -10.4, !- Maximum Dry-Bulb Temperature {C} + 0, !- Daily Dry-Bulb Temperature Range {deltaC} + 101037, !- Barometric Pressure {Pa} + 4.8, !- Wind Speed {m/s} + 300, !- Wind Direction {deg} + 0, !- Sky Clearness + No, !- Rain Indicator + No, !- Snow Indicator + 21, !- Day of Month + 1, !- Month + WinterDesignDay, !- Day Type + No, !- Daylight Saving Time Indicator + Wetbulb, !- Humidity Condition Type + , !- Humidity Condition Day Schedule Name + -10.4, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + ASHRAEClearSky; !- Solar Model Indicator + +OS:SizingPeriod:DesignDay, + {6ff8822f-71ee-43fc-82d4-17906fc8144c}, !- Handle + Wilmington New Cast August .4% Condns DB=>MCWB 1, !- Name + 34.5, !- Maximum Dry-Bulb Temperature {C} + 9.3, !- Daily Dry-Bulb Temperature Range {deltaC} + 101037, !- Barometric Pressure {Pa} + 4.6, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + , !- Sky Clearness + No, !- Rain Indicator + No, !- Snow Indicator + 21, !- Day of Month + 8, !- Month + SummerDesignDay, !- Day Type + No, !- Daylight Saving Time Indicator + Wetbulb, !- Humidity Condition Type + , !- Humidity Condition Day Schedule Name + 24.4, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.441, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance {dimensionless} + 2.186; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} + +OS:SizingPeriod:DesignDay, + {62b4c91b-8bf2-497f-9095-90fda1025f9c}, !- Handle + Wilmington New Cast October .4% Condns DB=>MCWB 1, !- Name + 27.8, !- Maximum Dry-Bulb Temperature {C} + 10.4, !- Daily Dry-Bulb Temperature Range {deltaC} + 101037, !- Barometric Pressure {Pa} + 4.6, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + , !- Sky Clearness + No, !- Rain Indicator + No, !- Snow Indicator + 21, !- Day of Month + 10, !- Month + SummerDesignDay, !- Day Type + No, !- Daylight Saving Time Indicator + Wetbulb, !- Humidity Condition Type + , !- Humidity Condition Day Schedule Name + 20.6, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.352, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance {dimensionless} + 2.466; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} + +OS:SizingPeriod:DesignDay, + {56b995a7-8fb8-4e81-8bec-153fcf27c6ac}, !- Handle + Wilmington New Cast September .4% Condns DB=>MCWB 1, !- Name + 32, !- Maximum Dry-Bulb Temperature {C} + 9.7, !- Daily Dry-Bulb Temperature Range {deltaC} + 101037, !- Barometric Pressure {Pa} + 4.6, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + , !- Sky Clearness + No, !- Rain Indicator + No, !- Snow Indicator + 21, !- Day of Month + 9, !- Month + SummerDesignDay, !- Day Type + No, !- Daylight Saving Time Indicator + Wetbulb, !- Humidity Condition Type + , !- Humidity Condition Day Schedule Name + 22.9, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + ASHRAETau, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + 0.404, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance {dimensionless} + 2.32; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance {dimensionless} + +OS:ClimateZones, + {3f58724f-9b18-4f64-85af-f905d361808a}, !- Handle + ASHRAE, !- Climate Zone Institution Name 1 + ANSI/ASHRAE Standard 169, !- Climate Zone Document Name 1 + 2006, !- Climate Zone Document Year 1 + ASHRAE 169-2013-4A; !- Climate Zone Value 1 + +OS:RunPeriodControl:DaylightSavingTime, + {29e28d43-4792-4bbd-a59f-2a62ff572b78}, !- Handle + 2nd Sunday in March, !- Start Date + 1st Sunday in November; !- End Date + +OS:YearDescription, + {07a05cad-f3bb-4307-b2b0-4854ce36875c}, !- Handle + 2018, !- Calendar Year + , !- Day of Week for Start Day + ; !- Is Leap Year + +OS:SpaceType, + {7b20985f-3aeb-492d-93f8-a179c637cd44}, !- Handle + Outpatient BioHazard - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {28ee29c2-85dd-4f35-bf30-1e629f45d725}, !- Default Schedule Set Name + {a9d7f5f7-35d8-4dc4-a03d-a0564cc7ac17}, !- Group Rendering Name + {dc80397e-87cc-4a74-a34e-a33d5ec333dc}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + BioHazard; !- Standards Space Type + +OS:Rendering:Color, + {a9d7f5f7-35d8-4dc4-a03d-a0564cc7ac17}, !- Handle + Outpatient BioHazard, !- Name + 204, !- Rendering Red Value + 120, !- Rendering Green Value + 230; !- Rendering Blue Value + +OS:SpaceType, + {117f4d87-7bb7-4e81-9561-b5cd18d45f9d}, !- Handle + Outpatient MedGas - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {8d507d8a-2e04-4902-8371-8778b2dd729a}, !- Default Schedule Set Name + {d32d3128-9145-4b0c-835a-3c10b9b019c9}, !- Group Rendering Name + {7ebad170-8320-4b4e-98cc-f8b6c533c3b0}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + MedGas; !- Standards Space Type + +OS:Rendering:Color, + {d32d3128-9145-4b0c-835a-3c10b9b019c9}, !- Handle + Outpatient MedGas, !- Name + 204, !- Rendering Red Value + 120, !- Rendering Green Value + 230; !- Rendering Blue Value + +OS:SpaceType, + {186554b7-5d4c-463b-8382-6d118c7366be}, !- Handle + Outpatient DressingRoom - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {d5c15cd8-10ae-49de-b7d7-f1abe8aaedf5}, !- Default Schedule Set Name + {0547b686-8914-418b-b4a7-0dbfe9323664}, !- Group Rendering Name + {26fc7edc-ab95-48e3-92a9-2588ef1d1073}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + DressingRoom; !- Standards Space Type + +OS:Rendering:Color, + {0547b686-8914-418b-b4a7-0dbfe9323664}, !- Handle + Outpatient DressingRoom, !- Name + 136, !- Rendering Red Value + 78, !- Rendering Green Value + 222; !- Rendering Blue Value + +OS:SpaceType, + {c0c1e222-fa00-4a79-91b3-309953f143b4}, !- Handle + Outpatient ElevatorPumpRoom - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {c5acdcca-f533-4334-b3fb-185be125b0ec}, !- Default Schedule Set Name + {1c0f5017-6e28-400b-8741-3f6bc24e12ff}, !- Group Rendering Name + {3a78f790-6c52-42ce-aa83-5087f8b21451}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + ElevatorPumpRoom; !- Standards Space Type + +OS:Rendering:Color, + {1c0f5017-6e28-400b-8741-3f6bc24e12ff}, !- Handle + Outpatient ElevatorPumpRoom, !- Name + 41, !- Rendering Red Value + 31, !- Rendering Green Value + 169; !- Rendering Blue Value + +OS:SpaceType, + {8c151d9d-16aa-4372-a68e-592d90c257bc}, !- Handle + Outpatient Anesthesia - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {bc94fa66-d803-4363-b5fc-d427752417e6}, !- Default Schedule Set Name + {317198a0-559d-44ea-8791-39541c9c244e}, !- Group Rendering Name + {30fae86d-8404-4155-9dcf-c503dcfa5922}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + Anesthesia; !- Standards Space Type + +OS:Rendering:Color, + {317198a0-559d-44ea-8791-39541c9c244e}, !- Handle + Outpatient Anesthesia, !- Name + 204, !- Rendering Red Value + 120, !- Rendering Green Value + 230; !- Rendering Blue Value + +OS:SpaceType, + {4b9df3de-a3d0-4438-acca-986ad88544a1}, !- Handle + Outpatient IT_Room - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {06d598ea-1915-46b4-95c2-164255d100d3}, !- Default Schedule Set Name + {5a9c592a-8348-4df4-966a-e650cf1f687d}, !- Group Rendering Name + {d96f747f-d25a-4c94-9fd5-ab079a846c46}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + IT_Room; !- Standards Space Type + +OS:Rendering:Color, + {5a9c592a-8348-4df4-966a-e650cf1f687d}, !- Handle + Outpatient IT_Room, !- Name + 41, !- Rendering Red Value + 31, !- Rendering Green Value + 169; !- Rendering Blue Value + +OS:SpaceType, + {bcd0ccb4-07a2-483e-8764-49c9a286542d}, !- Handle + Outpatient MRI_Control - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {2a727310-2d42-436a-bfb0-1e5fd62f783f}, !- Default Schedule Set Name + {feb68a92-5804-4fcd-acb3-5cba9c5c269f}, !- Group Rendering Name + {9cc899cb-9d84-49b3-afee-b54198a4fe22}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + MRI_Control; !- Standards Space Type + +OS:Rendering:Color, + {feb68a92-5804-4fcd-acb3-5cba9c5c269f}, !- Handle + Outpatient MRI_Control, !- Name + 136, !- Rendering Red Value + 78, !- Rendering Green Value + 222; !- Rendering Blue Value + +OS:SpaceType, + {864ed981-cdc7-451f-8bef-1ea81ff2d854}, !- Handle + Outpatient ProcedureRoom - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {e567e17e-81fc-4abc-8b85-35e005f1eccf}, !- Default Schedule Set Name + {8f494f7f-eb9a-42af-b789-7f2566484431}, !- Group Rendering Name + {647a0866-3738-4779-9626-81c5b6ead260}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + ProcedureRoom; !- Standards Space Type + +OS:Rendering:Color, + {8f494f7f-eb9a-42af-b789-7f2566484431}, !- Handle + Outpatient ProcedureRoom, !- Name + 169, !- Rendering Red Value + 31, !- Rendering Green Value + 159; !- Rendering Blue Value + +OS:SpaceType, + {132d8eeb-89bc-4975-9e9d-32758ae60fe3}, !- Handle + Outpatient CleanWork - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {1c18f57d-77de-4b46-8daf-cea17bfefb32}, !- Default Schedule Set Name + {80f07325-6850-4edc-a809-8cf27c4a94fd}, !- Group Rendering Name + {5acc61d9-373f-4040-b1a6-7709c4974d5e}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + CleanWork; !- Standards Space Type + +OS:Rendering:Color, + {80f07325-6850-4edc-a809-8cf27c4a94fd}, !- Handle + Outpatient CleanWork, !- Name + 204, !- Rendering Red Value + 120, !- Rendering Green Value + 230; !- Rendering Blue Value + +OS:SpaceType, + {93b236bb-87a7-4e13-8625-9c2aa92c03be}, !- Handle + Outpatient Conference - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {6941d3ca-d55f-4808-967c-9123a15f6b3a}, !- Default Schedule Set Name + {5f49624c-73ad-48ab-ab21-df1cf8ab9df4}, !- Group Rendering Name + {ad3b198a-9d94-4a48-9c9f-a27af8edabc0}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + Conference; !- Standards Space Type + +OS:Rendering:Color, + {5f49624c-73ad-48ab-ab21-df1cf8ab9df4}, !- Handle + Outpatient Conference, !- Name + 230, !- Rendering Red Value + 196, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:SpaceType, + {d0eedb12-8aab-42b8-8864-4ef144c40d57}, !- Handle + Outpatient Soil Work - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {c93e04d6-a60b-461c-9b26-b716e91dd67a}, !- Default Schedule Set Name + {f645bbfe-8a13-464f-9a2f-6aa9b6b84a03}, !- Group Rendering Name + {2ff355d4-7bc6-4159-9a6d-7686f6ed2044}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + Soil Work; !- Standards Space Type + +OS:Rendering:Color, + {f645bbfe-8a13-464f-9a2f-6aa9b6b84a03}, !- Handle + Outpatient Soil Work, !- Name + 204, !- Rendering Red Value + 120, !- Rendering Green Value + 230; !- Rendering Blue Value + +OS:SpaceType, + {3ed95ffb-bc8e-4422-ae67-017cf6f15a1e}, !- Handle + Outpatient Cafe - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {578759d7-d3b3-4192-ab76-c372138c0599}, !- Default Schedule Set Name + {66a41774-d73c-4ca0-b3cc-2ebdcb769b78}, !- Group Rendering Name + {5da48930-2245-4a26-800d-cdacb30c5e9b}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + Cafe; !- Standards Space Type + +OS:Rendering:Color, + {66a41774-d73c-4ca0-b3cc-2ebdcb769b78}, !- Handle + Outpatient Cafe, !- Name + 31, !- Rendering Red Value + 169, !- Rendering Green Value + 34; !- Rendering Blue Value + +OS:SpaceType, + {a0d541c6-3262-49a8-96cb-668f335a0ac4}, !- Handle + Outpatient MRI - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {a52c37f8-665f-4030-a000-e8b4179eb3d1}, !- Default Schedule Set Name + {b2ccd670-8366-4364-afdc-af716e2949c4}, !- Group Rendering Name + {b7818e03-80e3-474f-9a6f-f9f4db74485d}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + MRI; !- Standards Space Type + +OS:Rendering:Color, + {b2ccd670-8366-4364-afdc-af716e2949c4}, !- Handle + Outpatient MRI, !- Name + 169, !- Rendering Red Value + 31, !- Rendering Green Value + 159; !- Rendering Blue Value + +OS:SpaceType, + {2ddb316f-6ad1-4b05-9092-190cb98dab70}, !- Handle + Outpatient Elec/MechRoom - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {4ef9f89b-96b0-492d-9194-1ac72fa35828}, !- Default Schedule Set Name + {feacc62d-187f-41b8-a3d3-cc52efe7c9d4}, !- Group Rendering Name + {2fa04005-ea9b-4401-bdd1-b16c9d4eef68}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + Elec/MechRoom; !- Standards Space Type + +OS:Rendering:Color, + {feacc62d-187f-41b8-a3d3-cc52efe7c9d4}, !- Handle + Outpatient Elec/MechRoom, !- Name + 41, !- Rendering Red Value + 31, !- Rendering Green Value + 169; !- Rendering Blue Value + +OS:SpaceType, + {92312da1-9ed9-4fea-82b7-d1ae297e9d8a}, !- Handle + Outpatient PreOp - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {c8f9e156-7c70-4f4f-a2f1-58f48a0c4fa4}, !- Default Schedule Set Name + {cbf61867-2674-4871-9ecb-6591f71aafa9}, !- Group Rendering Name + {9e179e3c-76d1-4aed-acbb-143665179566}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + PreOp; !- Standards Space Type + +OS:Rendering:Color, + {cbf61867-2674-4871-9ecb-6591f71aafa9}, !- Handle + Outpatient PreOp, !- Name + 169, !- Rendering Red Value + 31, !- Rendering Green Value + 159; !- Rendering Blue Value + +OS:SpaceType, + {36ea0a66-256f-4bab-bd07-1a8541fc24fb}, !- Handle + Outpatient Stair - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {d0aa80c8-d643-42d9-b085-386e3dc3c088}, !- Default Schedule Set Name + {8337cda9-aad0-4bb8-a54e-9fe1f30d9412}, !- Group Rendering Name + {766ffa18-8b6c-4bc9-9dbf-bf5f2f914268}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + Stair; !- Standards Space Type + +OS:Rendering:Color, + {8337cda9-aad0-4bb8-a54e-9fe1f30d9412}, !- Handle + Outpatient Stair, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:SpaceType, + {830595d2-f1c6-4a4f-adab-f4229419a49b}, !- Handle + Outpatient Lobby - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {2e1988de-7aeb-4611-a7ca-646aafe3122b}, !- Default Schedule Set Name + {9b8dec1f-7736-4bfc-a393-1f7a8f8a56ec}, !- Group Rendering Name + {c87bdf82-5e9b-4662-90c1-f1c5c3e0da71}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + Lobby; !- Standards Space Type + +OS:Rendering:Color, + {9b8dec1f-7736-4bfc-a393-1f7a8f8a56ec}, !- Handle + Outpatient Lobby, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:SpaceType, + {5b09c434-c361-4e51-b3be-21b2f3d26cc3}, !- Handle + Outpatient NurseStation - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {60852758-95d0-4718-ab5f-5abe40ff6f70}, !- Default Schedule Set Name + {15f1221d-401a-4ae7-bf32-2a7bbb9c963f}, !- Group Rendering Name + {2fa19651-554f-4cff-a3ec-846501f487ff}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + NurseStation; !- Standards Space Type + +OS:Rendering:Color, + {15f1221d-401a-4ae7-bf32-2a7bbb9c963f}, !- Handle + Outpatient NurseStation, !- Name + 31, !- Rendering Red Value + 162, !- Rendering Green Value + 169; !- Rendering Blue Value + +OS:SpaceType, + {55e9e53a-8be5-42d7-b81b-a3ad93018a1a}, !- Handle + Outpatient LockerRoom - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {6851e67d-e392-4717-91f7-42bb7700359b}, !- Default Schedule Set Name + {caf04dfd-fce4-4d78-9696-9ec39161d04a}, !- Group Rendering Name + {b27e3888-00f1-42de-8175-d25d47acbe0b}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + LockerRoom; !- Standards Space Type + +OS:Rendering:Color, + {caf04dfd-fce4-4d78-9696-9ec39161d04a}, !- Handle + Outpatient LockerRoom, !- Name + 169, !- Rendering Red Value + 169, !- Rendering Green Value + 31; !- Rendering Blue Value + +OS:SpaceType, + {10a9958c-5712-4449-9d93-940c14d4492e}, !- Handle + Outpatient Toilet - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {2279af71-0fe1-4d88-95cf-f12441dab22f}, !- Default Schedule Set Name + {d0108c45-fca3-4292-b28c-50d2b7fa03a2}, !- Group Rendering Name + {43ed8193-26aa-4ca8-8d94-77c9fc2436da}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + Toilet; !- Standards Space Type + +OS:Rendering:Color, + {d0108c45-fca3-4292-b28c-50d2b7fa03a2}, !- Handle + Outpatient Toilet, !- Name + 169, !- Rendering Red Value + 169, !- Rendering Green Value + 31; !- Rendering Blue Value + +OS:SpaceType, + {8699ada1-ecd3-452b-951b-33b0abe847f3}, !- Handle + Outpatient Xray - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {73adfbf9-0e5a-4518-8ba5-299bf7f39441}, !- Default Schedule Set Name + {de982ae2-9361-4f3d-b1f5-09c36c2d2365}, !- Group Rendering Name + {59d243f7-030b-4a56-a4eb-4688fe982faf}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + Xray; !- Standards Space Type + +OS:Rendering:Color, + {de982ae2-9361-4f3d-b1f5-09c36c2d2365}, !- Handle + Outpatient Xray, !- Name + 169, !- Rendering Red Value + 31, !- Rendering Green Value + 159; !- Rendering Blue Value + +OS:SpaceType, + {171a2876-5f59-46c1-9438-827411e98017}, !- Handle + Outpatient PACU - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {7821f414-86cb-4dc1-9704-5aa7e6062a05}, !- Default Schedule Set Name + {98d7a21b-f5b5-44fc-b656-e764a87e4610}, !- Group Rendering Name + {cbe97760-2cac-4e84-b72e-fa82cec3a302}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + PACU; !- Standards Space Type + +OS:Rendering:Color, + {98d7a21b-f5b5-44fc-b656-e764a87e4610}, !- Handle + Outpatient PACU, !- Name + 169, !- Rendering Red Value + 31, !- Rendering Green Value + 159; !- Rendering Blue Value + +OS:SpaceType, + {e67caa29-7f43-467d-9e61-3b46df30c822}, !- Handle + Outpatient Lounge - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {0332f57a-d6e1-4ec9-a7d8-9ae2b5b269cb}, !- Default Schedule Set Name + {e2eb097b-c358-4200-bc2b-4230b84fed10}, !- Group Rendering Name + {a0bae964-694b-4674-a18b-0be1d70446c5}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + Lounge; !- Standards Space Type + +OS:Rendering:Color, + {e2eb097b-c358-4200-bc2b-4230b84fed10}, !- Handle + Outpatient Lounge, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:SpaceType, + {5fb014fb-6043-4a5b-b056-a124c49bf50e}, !- Handle + Outpatient OR - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {8a6cc611-218c-486f-b986-5dcd7b9073ed}, !- Default Schedule Set Name + {189a2ef5-241a-418f-8ce5-ee6b8fd0908b}, !- Group Rendering Name + {2e6999a8-dd65-4180-b436-1d007afe7184}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + OR; !- Standards Space Type + +OS:Rendering:Color, + {189a2ef5-241a-418f-8ce5-ee6b8fd0908b}, !- Handle + Outpatient OR, !- Name + 169, !- Rendering Red Value + 31, !- Rendering Green Value + 159; !- Rendering Blue Value + +OS:SpaceType, + {b0858a9c-8d82-4ec2-b1e5-e4c1bbd82d0e}, !- Handle + Outpatient Reception - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {81b0c1d8-8641-4a56-bfa2-dc6989af6b04}, !- Default Schedule Set Name + {41d18591-46f0-42ca-8eb0-c44bd9fc06ad}, !- Group Rendering Name + {5f0a6ce4-ce95-4103-b122-bb857893f018}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + Reception; !- Standards Space Type + +OS:Rendering:Color, + {41d18591-46f0-42ca-8eb0-c44bd9fc06ad}, !- Handle + Outpatient Reception, !- Name + 230, !- Rendering Red Value + 157, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:SpaceType, + {2d20a7e4-e28e-45fe-b57b-4ce2154fb88e}, !- Handle + Outpatient PhysicalTherapy - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {a899d6e7-b2bf-4a63-9f9e-fb7111c8db17}, !- Default Schedule Set Name + {c16dbbdc-defe-4ab4-970b-b3b0bbcff5fd}, !- Group Rendering Name + {16fe58f0-5137-49a1-aa98-998e3ec554b8}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + PhysicalTherapy; !- Standards Space Type + +OS:Rendering:Color, + {c16dbbdc-defe-4ab4-970b-b3b0bbcff5fd}, !- Handle + Outpatient PhysicalTherapy, !- Name + 154, !- Rendering Red Value + 230, !- Rendering Green Value + 120; !- Rendering Blue Value + +OS:SpaceType, + {29b4ce0c-01c2-4306-a68e-383950b76114}, !- Handle + Outpatient Janitor - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {ab8bcc8a-2906-4baf-a59f-cd99ff31db46}, !- Default Schedule Set Name + {9bfe081a-5912-4aad-acc3-f92cab55e71e}, !- Group Rendering Name + {37f67386-1b05-4340-be70-c7e5e38add30}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + Janitor; !- Standards Space Type + +OS:Rendering:Color, + {9bfe081a-5912-4aad-acc3-f92cab55e71e}, !- Handle + Outpatient Janitor, !- Name + 120, !- Rendering Red Value + 149, !- Rendering Green Value + 230; !- Rendering Blue Value + +OS:SpaceType, + {c912bf90-f212-44be-bcc8-1e25d4bd9d5f}, !- Handle + Outpatient Exam - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {c86ad63d-8b46-4de7-a815-29cc6e31fec6}, !- Default Schedule Set Name + {42f31855-0d30-449c-958e-7de780572d8c}, !- Group Rendering Name + {9751cc7e-a381-41ad-ac4d-80ceb3bf63ce}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + Exam; !- Standards Space Type + +OS:Rendering:Color, + {42f31855-0d30-449c-958e-7de780572d8c}, !- Handle + Outpatient Exam, !- Name + 136, !- Rendering Red Value + 78, !- Rendering Green Value + 222; !- Rendering Blue Value + +OS:SpaceType, + {c886771f-d399-4984-b712-aefe78a14e4c}, !- Handle + Outpatient Office - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {b6e41542-fdf5-4455-b524-5f9ac4c7d72c}, !- Default Schedule Set Name + {cb21c3c4-4d57-4ca0-ae7a-1756129f40b3}, !- Group Rendering Name + {38fcebe4-7229-44e7-acd2-871357897539}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + Office; !- Standards Space Type + +OS:Rendering:Color, + {cb21c3c4-4d57-4ca0-ae7a-1756129f40b3}, !- Handle + Outpatient Office, !- Name + 120, !- Rendering Red Value + 230, !- Rendering Green Value + 199; !- Rendering Blue Value + +OS:SpaceType, + {6e2bb69a-5a51-4d2e-a996-f562611bd2cb}, !- Handle + Outpatient Hall - ComStock DOE Ref Pre-1980, !- Name + , !- Default Construction Set Name + {e160eb2b-4050-46d0-aabb-7c63d3b8877c}, !- Default Schedule Set Name + {f9197f1e-18a2-4b15-88da-26f8c610ad53}, !- Group Rendering Name + {5d1e8026-005b-49ea-af5b-0aab6e34277c}, !- Design Specification Outdoor Air Object Name + , !- Standards Template + Outpatient, !- Standards Building Type + Hall; !- Standards Space Type + +OS:Rendering:Color, + {f9197f1e-18a2-4b15-88da-26f8c610ad53}, !- Handle + Outpatient Hall, !- Name + 169, !- Rendering Red Value + 31, !- Rendering Green Value + 31; !- Rendering Blue Value + +OS:BuildingStory, + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Handle + Story ground, !- Name + 0, !- Nominal Z Coordinate {m} + 3.048, !- Nominal Floor to Floor Height {m} + , !- Default Construction Set Name + , !- Default Schedule Set Name + ; !- Group Rendering Name + +OS:Space, + {369e096c-d9ad-4605-8bfa-ca78020d3709}, !- Handle + Outpatient Exam A end_a - Story ground, !- Name + {c912bf90-f212-44be-bcc8-1e25d4bd9d5f}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + -51.25212, !- X Origin {m} + -28.0904835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {6769698b-e80c-41a5-a4d0-d474c041d751}; !- Thermal Zone Name + +OS:Surface, + {768170ae-c9ae-4e09-a4d7-4ef0aa0c9276}, !- Handle + Surface 1, !- Name + Floor, !- Surface Type + {5e87bc03-2832-4e19-af79-b776f81d11e7}, !- Construction Name + {369e096c-d9ad-4605-8bfa-ca78020d3709}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + 0, 9.78838724710005, 0, !- X,Y,Z Vertex 2 {m} + 4.572, 9.78838724710005, 0, !- X,Y,Z Vertex 3 {m} + 4.572, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {e1449c97-c4eb-42bc-afbb-efec7e714eb7}, !- Handle + Surface 2, !- Name + Wall, !- Surface Type + , !- Construction Name + {369e096c-d9ad-4605-8bfa-ca78020d3709}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 9.78838724710005, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 9.78838724710005, 0, !- X,Y,Z Vertex 3 {m} + 0, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {6bdba798-3de9-4954-9857-bcc3a9b4d950}, !- Handle + Surface 3, !- Name + Wall, !- Surface Type + , !- Construction Name + {369e096c-d9ad-4605-8bfa-ca78020d3709}, !- Space Name + Surface, !- Outside Boundary Condition + {28911d00-f36b-4096-944b-9187250e2dec}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.572, 9.78838724710005, 3.048, !- X,Y,Z Vertex 1 {m} + 4.572, 9.78838724710005, 0, !- X,Y,Z Vertex 2 {m} + 0, 9.78838724710005, 0, !- X,Y,Z Vertex 3 {m} + 0, 9.78838724710005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8e2cb489-9a29-4ac1-8019-31a1322c1a4e}, !- Handle + Surface 4, !- Name + Wall, !- Surface Type + , !- Construction Name + {369e096c-d9ad-4605-8bfa-ca78020d3709}, !- Space Name + Surface, !- Outside Boundary Condition + {fa6bd437-4b4a-4f20-ae63-ba44388c5558}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.572, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 4.572, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 4.572, 9.78838724710005, 0, !- X,Y,Z Vertex 3 {m} + 4.572, 9.78838724710005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4a005623-61a7-4ad8-833e-c937651421df}, !- Handle + Surface 5, !- Name + Wall, !- Surface Type + , !- Construction Name + {369e096c-d9ad-4605-8bfa-ca78020d3709}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.572, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 0, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 4.572, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {655a3680-ac66-4842-85f0-74d75d88b36c}, !- Handle + Surface 6, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {369e096c-d9ad-4605-8bfa-ca78020d3709}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.572, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 4.572, 9.78838724710005, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 9.78838724710005, 3.048, !- X,Y,Z Vertex 3 {m} + 0, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {6769698b-e80c-41a5-a4d0-d474c041d751}, !- Handle + Zone Outpatient Exam A end_a - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {e88a7202-c631-49b3-aca4-cb418a5eb612}, !- Zone Air Inlet Port List + {90e9b5c9-c684-4ca8-98dc-3794a89612ff}, !- Zone Air Exhaust Port List + {d78e5dcd-2838-42ae-872c-7810fd5467d7}, !- Zone Air Node Name + {c202e7e4-a74a-4978-8c4e-14500f6cdeb5}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {1ddeda2c-b7b6-4f36-ab34-d00cff479245}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {775a9008-36ab-46d8-9171-b4606fde1cde}, !- Handle + Zone Outpatient Exam A end_a - Story ground Zone Air Node, !- Name + {d78e5dcd-2838-42ae-872c-7810fd5467d7}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {d78e5dcd-2838-42ae-872c-7810fd5467d7}, !- Handle + {6769698b-e80c-41a5-a4d0-d474c041d751}, !- Source Object + 11, !- Outlet Port + {775a9008-36ab-46d8-9171-b4606fde1cde}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {e88a7202-c631-49b3-aca4-cb418a5eb612}, !- Handle + {6769698b-e80c-41a5-a4d0-d474c041d751}, !- HVAC Component + {01ce372b-9738-40be-80a3-0802345490c6}, !- Port 1 + {9bf08da6-eb1d-4519-bf5b-9c2834cf71c5}; !- Port 2 + +OS:PortList, + {90e9b5c9-c684-4ca8-98dc-3794a89612ff}, !- Handle + {6769698b-e80c-41a5-a4d0-d474c041d751}, !- HVAC Component + {d24a844d-c288-47c3-a729-13b91d28a70a}; !- Port 1 + +OS:PortList, + {c202e7e4-a74a-4978-8c4e-14500f6cdeb5}, !- Handle + {6769698b-e80c-41a5-a4d0-d474c041d751}, !- HVAC Component + {269d49cd-9951-4523-aaae-71eb114db7c5}; !- Port 1 + +OS:Sizing:Zone, + {65d519c3-5622-4ebe-b34d-2942b977e3d0}, !- Handle + {6769698b-e80c-41a5-a4d0-d474c041d751}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {a6d56b5e-c57b-4205-b034-f9ab4e681b1a}, !- Handle + Zone Outpatient Exam A end_a - Story ground Zone HVAC Equipment List, !- Name + {6769698b-e80c-41a5-a4d0-d474c041d751}, !- Thermal Zone + , !- Load Distribution Scheme + {46c7776a-3179-4765-813b-e04f005cbe44}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {51a6dc4f-932c-4d2a-8ae1-1fdcace08d71}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {d44257f8-b925-489b-9340-643764abc149}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {905f873d-72b1-45af-8816-08983838bef1}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {dd86b83c-fece-48cb-8e07-ebc5f5ae7e78}, !- Handle + Outpatient Hall B end_a - Story ground, !- Name + {6e2bb69a-5a51-4d2e-a996-f562611bd2cb}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + -51.25212, !- X Origin {m} + -18.3020962715457, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {86d6e7ba-397e-43b4-98be-b98ba4eae968}; !- Thermal Zone Name + +OS:Surface, + {e8919503-9076-4c06-ab26-27e6659d89e2}, !- Handle + Surface 7, !- Name + Floor, !- Surface Type + {b0e1f26e-4b23-45fe-9b7f-6976dc05ee09}, !- Construction Name + {dd86b83c-fece-48cb-8e07-ebc5f5ae7e78}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -7.105427357601e-15, 0, !- X,Y,Z Vertex 1 {m} + 0, 36.6041925430914, 0, !- X,Y,Z Vertex 2 {m} + 4.572, 36.6041925430914, 0, !- X,Y,Z Vertex 3 {m} + 4.572, -7.105427357601e-15, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {c372aad6-95f3-437b-a595-4c3d03cbcc36}, !- Handle + Surface 8, !- Name + Wall, !- Surface Type + , !- Construction Name + {dd86b83c-fece-48cb-8e07-ebc5f5ae7e78}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -7.105427357601e-15, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 36.6041925430914, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 36.6041925430914, 0, !- X,Y,Z Vertex 3 {m} + 0, -7.105427357601e-15, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {bb7e718f-cae1-4b1e-81a9-c74bfd508e65}, !- Handle + Surface 9, !- Name + Wall, !- Surface Type + , !- Construction Name + {dd86b83c-fece-48cb-8e07-ebc5f5ae7e78}, !- Space Name + Surface, !- Outside Boundary Condition + {0d4df701-33b5-407e-849e-218191187141}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.572, 36.6041925430914, 3.048, !- X,Y,Z Vertex 1 {m} + 4.572, 36.6041925430914, 0, !- X,Y,Z Vertex 2 {m} + 0, 36.6041925430914, 0, !- X,Y,Z Vertex 3 {m} + 0, 36.6041925430914, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1d39b0e9-941e-44ae-af0a-c0218419cd26}, !- Handle + Surface 10, !- Name + Wall, !- Surface Type + , !- Construction Name + {dd86b83c-fece-48cb-8e07-ebc5f5ae7e78}, !- Space Name + Surface, !- Outside Boundary Condition + {ac3da1c1-a588-4926-8914-42ab4aae603e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.572, -7.105427357601e-15, 3.048, !- X,Y,Z Vertex 1 {m} + 4.572, -7.105427357601e-15, 0, !- X,Y,Z Vertex 2 {m} + 4.572, 36.6041925430914, 0, !- X,Y,Z Vertex 3 {m} + 4.572, 36.6041925430914, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {28911d00-f36b-4096-944b-9187250e2dec}, !- Handle + Surface 11, !- Name + Wall, !- Surface Type + , !- Construction Name + {dd86b83c-fece-48cb-8e07-ebc5f5ae7e78}, !- Space Name + Surface, !- Outside Boundary Condition + {6bdba798-3de9-4954-9857-bcc3a9b4d950}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0, -4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 4.572, -4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 4.572, -4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f9c2551b-9675-4417-b35a-b403fa841fd0}, !- Handle + Surface 12, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {dd86b83c-fece-48cb-8e07-ebc5f5ae7e78}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.572, -7.105427357601e-15, 3.048, !- X,Y,Z Vertex 1 {m} + 4.572, 36.6041925430914, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 36.6041925430914, 3.048, !- X,Y,Z Vertex 3 {m} + 0, -7.105427357601e-15, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {86d6e7ba-397e-43b4-98be-b98ba4eae968}, !- Handle + Zone Outpatient Hall B end_a - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {eda8d083-a741-4031-bbeb-49a63073c96c}, !- Zone Air Inlet Port List + {c297e94b-e6aa-4fba-a5c0-7aece9946b6e}, !- Zone Air Exhaust Port List + {82538cd5-941d-4dbe-9c4d-53f1ab84d72b}, !- Zone Air Node Name + {2c922e44-8e0c-463a-84cc-d48a06f490ae}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {e620d437-1076-43a8-80d1-75f9c2156515}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {9777abdb-172c-40d2-88cc-6085e358541f}, !- Handle + Zone Outpatient Hall B end_a - Story ground Zone Air Node, !- Name + {82538cd5-941d-4dbe-9c4d-53f1ab84d72b}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {82538cd5-941d-4dbe-9c4d-53f1ab84d72b}, !- Handle + {86d6e7ba-397e-43b4-98be-b98ba4eae968}, !- Source Object + 11, !- Outlet Port + {9777abdb-172c-40d2-88cc-6085e358541f}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {eda8d083-a741-4031-bbeb-49a63073c96c}, !- Handle + {86d6e7ba-397e-43b4-98be-b98ba4eae968}, !- HVAC Component + {37cb008f-58b7-4688-9755-f0007ae3cf50}, !- Port 1 + {ad52bdab-9ed6-4109-811e-1f4dab0e1b0b}; !- Port 2 + +OS:PortList, + {c297e94b-e6aa-4fba-a5c0-7aece9946b6e}, !- Handle + {86d6e7ba-397e-43b4-98be-b98ba4eae968}, !- HVAC Component + {d145f710-3eb1-4971-bdf7-cf48da4c6f46}; !- Port 1 + +OS:PortList, + {2c922e44-8e0c-463a-84cc-d48a06f490ae}, !- Handle + {86d6e7ba-397e-43b4-98be-b98ba4eae968}, !- HVAC Component + {b146f506-179f-4aaf-ad3b-c544a85939ce}; !- Port 1 + +OS:Sizing:Zone, + {cbabcc6f-1092-4247-8cec-7575e71b371b}, !- Handle + {86d6e7ba-397e-43b4-98be-b98ba4eae968}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {87024dd4-3841-4ae3-95a8-c74c9e1ec723}, !- Handle + Zone Outpatient Hall B end_a - Story ground Zone HVAC Equipment List, !- Name + {86d6e7ba-397e-43b4-98be-b98ba4eae968}, !- Thermal Zone + , !- Load Distribution Scheme + {d912fa57-9459-4a2b-a780-0df96dd0fe59}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {87e0a1ec-2f47-4f93-8866-9df03dc15183}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {c5ae066d-5835-4763-9072-3c6a261cd3e7}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {4e7569e8-159e-4800-a29a-6414a4281378}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {8a09d570-ad4b-41c3-b795-5536154f56fb}, !- Handle + Outpatient Exam C end_a - Story ground, !- Name + {c912bf90-f212-44be-bcc8-1e25d4bd9d5f}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + -51.25212, !- X Origin {m} + 18.3020962715457, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {dea4a48e-17e7-441e-9e86-fa949da2083e}; !- Thermal Zone Name + +OS:Surface, + {5f28c83b-22a6-4681-ae8f-de65df1db24a}, !- Handle + Surface 13, !- Name + Floor, !- Surface Type + {5e87bc03-2832-4e19-af79-b776f81d11e7}, !- Construction Name + {8a09d570-ad4b-41c3-b795-5536154f56fb}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 7.105427357601e-15, 0, !- X,Y,Z Vertex 1 {m} + 0, 9.78838724710011, 0, !- X,Y,Z Vertex 2 {m} + 4.572, 9.78838724710011, 0, !- X,Y,Z Vertex 3 {m} + 4.572, 7.105427357601e-15, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7028465b-288e-49d3-8de7-50f9ec4e9de7}, !- Handle + Surface 14, !- Name + Wall, !- Surface Type + , !- Construction Name + {8a09d570-ad4b-41c3-b795-5536154f56fb}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 7.105427357601e-15, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 9.78838724710011, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 9.78838724710011, 0, !- X,Y,Z Vertex 3 {m} + 0, 7.105427357601e-15, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {dee627fa-4674-46c2-a4b0-638f0fbb15a8}, !- Handle + Surface 15, !- Name + Wall, !- Surface Type + , !- Construction Name + {8a09d570-ad4b-41c3-b795-5536154f56fb}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 9.78838724710011, 3.048, !- X,Y,Z Vertex 1 {m} + 4.572, 9.78838724710011, 3.048, !- X,Y,Z Vertex 2 {m} + 4.572, 9.78838724710011, 0, !- X,Y,Z Vertex 3 {m} + 0, 9.78838724710011, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ca2c587f-58e6-4b3e-95e9-00744391f126}, !- Handle + Surface 16, !- Name + Wall, !- Surface Type + , !- Construction Name + {8a09d570-ad4b-41c3-b795-5536154f56fb}, !- Space Name + Surface, !- Outside Boundary Condition + {98fcea3f-71a9-450e-b4f2-c7d19055b445}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.572, 7.105427357601e-15, 3.048, !- X,Y,Z Vertex 1 {m} + 4.572, 7.105427357601e-15, 0, !- X,Y,Z Vertex 2 {m} + 4.572, 9.78838724710011, 0, !- X,Y,Z Vertex 3 {m} + 4.572, 9.78838724710011, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0d4df701-33b5-407e-849e-218191187141}, !- Handle + Surface 17, !- Name + Wall, !- Surface Type + , !- Construction Name + {8a09d570-ad4b-41c3-b795-5536154f56fb}, !- Space Name + Surface, !- Outside Boundary Condition + {bb7e718f-cae1-4b1e-81a9-c74bfd508e65}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 7.105427357601e-15, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 7.105427357601e-15, 0, !- X,Y,Z Vertex 2 {m} + 4.572, 7.105427357601e-15, 0, !- X,Y,Z Vertex 3 {m} + 4.572, 7.105427357601e-15, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {28f97145-377b-4c35-aa22-c90803d6389a}, !- Handle + Surface 18, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {8a09d570-ad4b-41c3-b795-5536154f56fb}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.572, 7.105427357601e-15, 3.048, !- X,Y,Z Vertex 1 {m} + 4.572, 9.78838724710011, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 9.78838724710011, 3.048, !- X,Y,Z Vertex 3 {m} + 0, 7.105427357601e-15, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {dea4a48e-17e7-441e-9e86-fa949da2083e}, !- Handle + Zone Outpatient Exam C end_a - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {f6c4c369-8269-45fc-b416-50a81132052a}, !- Zone Air Inlet Port List + {a09973ca-8bb7-4c49-9554-b66883f41309}, !- Zone Air Exhaust Port List + {139c93cd-289f-478c-8a44-f2887bd10e84}, !- Zone Air Node Name + {e75cbbd2-b5c9-4a3f-a350-3c5d44991bd3}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {cb01ae6a-77dd-4eac-9a9e-bc2ef83f9b89}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {50011e0b-81f1-43e9-a54a-caf04fe0d91b}, !- Handle + Zone Outpatient Exam C end_a - Story ground Zone Air Node, !- Name + {139c93cd-289f-478c-8a44-f2887bd10e84}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {139c93cd-289f-478c-8a44-f2887bd10e84}, !- Handle + {dea4a48e-17e7-441e-9e86-fa949da2083e}, !- Source Object + 11, !- Outlet Port + {50011e0b-81f1-43e9-a54a-caf04fe0d91b}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {f6c4c369-8269-45fc-b416-50a81132052a}, !- Handle + {dea4a48e-17e7-441e-9e86-fa949da2083e}, !- HVAC Component + {ae9f687e-f8a0-404e-b7c6-e2167cc6cc44}, !- Port 1 + {fe019cdc-6277-4397-b02d-9737ca68477b}; !- Port 2 + +OS:PortList, + {a09973ca-8bb7-4c49-9554-b66883f41309}, !- Handle + {dea4a48e-17e7-441e-9e86-fa949da2083e}, !- HVAC Component + {d70ab58f-5d4c-410b-b1cf-9613487a6136}; !- Port 1 + +OS:PortList, + {e75cbbd2-b5c9-4a3f-a350-3c5d44991bd3}, !- Handle + {dea4a48e-17e7-441e-9e86-fa949da2083e}, !- HVAC Component + {af73acda-a1e0-4a24-b067-40a8d25f956a}; !- Port 1 + +OS:Sizing:Zone, + {b63bd237-b5f0-48b6-889e-6c3a21b390ca}, !- Handle + {dea4a48e-17e7-441e-9e86-fa949da2083e}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {417107eb-48b2-447f-a5b4-4f18e2179905}, !- Handle + Zone Outpatient Exam C end_a - Story ground Zone HVAC Equipment List, !- Name + {dea4a48e-17e7-441e-9e86-fa949da2083e}, !- Thermal Zone + , !- Load Distribution Scheme + {36fb9209-319e-46e8-917e-d3d34a191e2f}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {889cf581-5b18-4c7b-86ed-b484515da6eb}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {a3db0d20-9f18-4e1d-9e89-cd7f35471cc8}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {ae1eeabd-bfd1-4a0b-ad98-5da1cd86879e}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {f5af384c-a5a4-4c87-b078-a5bf21405c54}, !- Handle + Outpatient Exam A - Story ground, !- Name + {c912bf90-f212-44be-bcc8-1e25d4bd9d5f}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + -46.68012, !- X Origin {m} + -28.0904835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {f39e0a93-3a17-4c6b-8d20-847dac6af8ae}; !- Thermal Zone Name + +OS:Surface, + {186a9a37-a426-475f-a730-b72ce48bab6f}, !- Handle + Surface 19, !- Name + Floor, !- Surface Type + {a7070f5c-0e5f-48c1-8284-8fb2364087b5}, !- Construction Name + {f5af384c-a5a4-4c87-b078-a5bf21405c54}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.105427357601e-15, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + -7.105427357601e-15, 9.78838724710005, 0, !- X,Y,Z Vertex 2 {m} + 43.3808255077881, 9.78838724710005, 0, !- X,Y,Z Vertex 3 {m} + 43.3808255077881, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fa6bd437-4b4a-4f20-ae63-ba44388c5558}, !- Handle + Surface 20, !- Name + Wall, !- Surface Type + , !- Construction Name + {f5af384c-a5a4-4c87-b078-a5bf21405c54}, !- Space Name + Surface, !- Outside Boundary Condition + {8e2cb489-9a29-4ac1-8019-31a1322c1a4e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.105427357601e-15, 9.78838724710005, 3.048, !- X,Y,Z Vertex 1 {m} + 7.105427357601e-15, 9.78838724710005, 0, !- X,Y,Z Vertex 2 {m} + 7.105427357601e-15, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 7.105427357601e-15, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1e112031-ebe6-4bb8-ad09-c1ce6022d8de}, !- Handle + Surface 21, !- Name + Wall, !- Surface Type + , !- Construction Name + {f5af384c-a5a4-4c87-b078-a5bf21405c54}, !- Space Name + Surface, !- Outside Boundary Condition + {64a07bca-75f4-46ef-bb1b-e1bc5e2b4ff3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 43.3808255077881, 9.78838724710005, 3.048, !- X,Y,Z Vertex 1 {m} + 43.3808255077881, 9.78838724710005, 0, !- X,Y,Z Vertex 2 {m} + -7.105427357601e-15, 9.78838724710005, 0, !- X,Y,Z Vertex 3 {m} + -7.105427357601e-15, 9.78838724710005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {638c8e9b-9ba4-4007-87f9-49491c9d9f49}, !- Handle + Surface 22, !- Name + Wall, !- Surface Type + , !- Construction Name + {f5af384c-a5a4-4c87-b078-a5bf21405c54}, !- Space Name + Surface, !- Outside Boundary Condition + {2fcf7c03-2da1-40a7-9206-f945bc7fc6aa}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 43.3808255077881, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 43.3808255077881, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 43.3808255077881, 4.57199999999995, 0, !- X,Y,Z Vertex 3 {m} + 43.3808255077881, 4.57199999999995, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {c72fc607-ac47-4fbb-8255-290cb30f91ed}, !- Handle + Surface 23, !- Name + Wall, !- Surface Type + , !- Construction Name + {f5af384c-a5a4-4c87-b078-a5bf21405c54}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 43.3808255077881, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -7.105427357601e-15, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 2 {m} + -7.105427357601e-15, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 43.3808255077881, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f539a648-9cb5-4965-bf4b-55981c5eda3b}, !- Handle + Surface 24, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {f5af384c-a5a4-4c87-b078-a5bf21405c54}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 43.3808255077881, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 43.3808255077881, 9.78838724710005, 3.048, !- X,Y,Z Vertex 2 {m} + -7.105427357601e-15, 9.78838724710005, 3.048, !- X,Y,Z Vertex 3 {m} + -7.105427357601e-15, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {f39e0a93-3a17-4c6b-8d20-847dac6af8ae}, !- Handle + Zone Outpatient Exam A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {b87b26d2-d5fc-425e-97ec-f13ece7878a0}, !- Zone Air Inlet Port List + {daf1944c-c26e-4e1d-afc5-c579ac524b27}, !- Zone Air Exhaust Port List + {e992333f-d80d-4529-a1d9-7cc2a6b9ad3b}, !- Zone Air Node Name + {5580b519-7612-4847-bbef-269b7fba5240}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {435cfee2-4f0a-44c6-9cbb-d1c2a99fe72f}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {ec1c125b-a3fa-4f37-8fb4-4e683a37b60d}, !- Handle + Zone Outpatient Exam A - Story ground Zone Air Node, !- Name + {e992333f-d80d-4529-a1d9-7cc2a6b9ad3b}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {e992333f-d80d-4529-a1d9-7cc2a6b9ad3b}, !- Handle + {f39e0a93-3a17-4c6b-8d20-847dac6af8ae}, !- Source Object + 11, !- Outlet Port + {ec1c125b-a3fa-4f37-8fb4-4e683a37b60d}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {b87b26d2-d5fc-425e-97ec-f13ece7878a0}, !- Handle + {f39e0a93-3a17-4c6b-8d20-847dac6af8ae}, !- HVAC Component + {25696c53-d92a-406c-8a81-05d416f9c972}, !- Port 1 + {2ceb3acf-12e4-4e14-a1d1-5b4f1375343a}; !- Port 2 + +OS:PortList, + {daf1944c-c26e-4e1d-afc5-c579ac524b27}, !- Handle + {f39e0a93-3a17-4c6b-8d20-847dac6af8ae}, !- HVAC Component + {f8dbac76-c823-4ecd-9bca-108f2e03a1c0}; !- Port 1 + +OS:PortList, + {5580b519-7612-4847-bbef-269b7fba5240}, !- Handle + {f39e0a93-3a17-4c6b-8d20-847dac6af8ae}, !- HVAC Component + {1d6d1813-a23f-461b-a7c8-85b850312dcc}; !- Port 1 + +OS:Sizing:Zone, + {27e161aa-8fe3-42b7-955c-e24cf93f76f8}, !- Handle + {f39e0a93-3a17-4c6b-8d20-847dac6af8ae}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {f2347f9d-ae99-4ca9-8f9c-9aef9fb91dbe}, !- Handle + Zone Outpatient Exam A - Story ground Zone HVAC Equipment List, !- Name + {f39e0a93-3a17-4c6b-8d20-847dac6af8ae}, !- Thermal Zone + , !- Load Distribution Scheme + {21674f7f-f403-4674-b5a2-7fb673f45695}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {6bb903a1-3e90-4e8d-b1f8-78e5986aa781}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {a67ce377-4845-4806-99dd-c1f0bd01cc70}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {f9534619-78e9-416e-980b-e00717538ca2}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {1213fed4-6df6-4c2e-af62-c372c21405be}, !- Handle + Outpatient Hall B - Story ground, !- Name + {6e2bb69a-5a51-4d2e-a996-f562611bd2cb}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + -46.68012, !- X Origin {m} + -18.3020962715457, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {116152a8-6536-47ad-bf77-c4e62384745a}; !- Thermal Zone Name + +OS:Surface, + {e198f3ba-a5f7-446e-ba17-fa903251ddb4}, !- Handle + Surface 25, !- Name + Floor, !- Surface Type + {e32d3f12-3d84-4734-bf79-a2e76c6febe6}, !- Construction Name + {1213fed4-6df6-4c2e-af62-c372c21405be}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.105427357601e-15, -7.105427357601e-15, 0, !- X,Y,Z Vertex 1 {m} + -7.105427357601e-15, 36.6041925430914, 0, !- X,Y,Z Vertex 2 {m} + 43.3808255077881, 36.6041925430914, 0, !- X,Y,Z Vertex 3 {m} + 43.3808255077881, -7.105427357601e-15, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ac3da1c1-a588-4926-8914-42ab4aae603e}, !- Handle + Surface 26, !- Name + Wall, !- Surface Type + , !- Construction Name + {1213fed4-6df6-4c2e-af62-c372c21405be}, !- Space Name + Surface, !- Outside Boundary Condition + {1d39b0e9-941e-44ae-af0a-c0218419cd26}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.105427357601e-15, 36.6041925430914, 3.048, !- X,Y,Z Vertex 1 {m} + 7.105427357601e-15, 36.6041925430914, 0, !- X,Y,Z Vertex 2 {m} + 7.105427357601e-15, -7.105427357601e-15, 0, !- X,Y,Z Vertex 3 {m} + 7.105427357601e-15, -7.105427357601e-15, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {c9758c06-34cc-498c-81f5-553b420c6e42}, !- Handle + Surface 27, !- Name + Wall, !- Surface Type + , !- Construction Name + {1213fed4-6df6-4c2e-af62-c372c21405be}, !- Space Name + Surface, !- Outside Boundary Condition + {f37c62ec-8239-48b5-8e8f-a2a3eb40dd30}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 43.3808255077881, 36.6041925430914, 3.048, !- X,Y,Z Vertex 1 {m} + 43.3808255077881, 36.6041925430914, 0, !- X,Y,Z Vertex 2 {m} + -7.105427357601e-15, 36.6041925430914, 0, !- X,Y,Z Vertex 3 {m} + -7.105427357601e-15, 36.6041925430914, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2948e926-a57d-45cc-a0da-9b32d9ca912c}, !- Handle + Surface 28, !- Name + Wall, !- Surface Type + , !- Construction Name + {1213fed4-6df6-4c2e-af62-c372c21405be}, !- Space Name + Surface, !- Outside Boundary Condition + {bc49fb42-7ef5-463f-8ceb-5c88348071af}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 43.3808255077881, -4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 43.3808255077881, -4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 43.3808255077881, 36.6041925430914, 0, !- X,Y,Z Vertex 3 {m} + 43.3808255077881, 36.6041925430914, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {64a07bca-75f4-46ef-bb1b-e1bc5e2b4ff3}, !- Handle + Surface 29, !- Name + Wall, !- Surface Type + , !- Construction Name + {1213fed4-6df6-4c2e-af62-c372c21405be}, !- Space Name + Surface, !- Outside Boundary Condition + {1e112031-ebe6-4bb8-ad09-c1ce6022d8de}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.105427357601e-15, -4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -7.105427357601e-15, -4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 43.3808255077881, -4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 43.3808255077881, -4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4da971eb-37d3-4bfc-9a9f-8dcd8fe57a31}, !- Handle + Surface 30, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {1213fed4-6df6-4c2e-af62-c372c21405be}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 43.3808255077881, -7.105427357601e-15, 3.048, !- X,Y,Z Vertex 1 {m} + 43.3808255077881, 36.6041925430914, 3.048, !- X,Y,Z Vertex 2 {m} + -7.105427357601e-15, 36.6041925430914, 3.048, !- X,Y,Z Vertex 3 {m} + -7.105427357601e-15, -7.105427357601e-15, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {116152a8-6536-47ad-bf77-c4e62384745a}, !- Handle + Zone Outpatient Hall B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {550a7d97-ea54-4014-86e3-b00783f75b61}, !- Zone Air Inlet Port List + {6f4157f8-3c7e-418e-8ea8-e39bc0e49b70}, !- Zone Air Exhaust Port List + {b0de45ea-6806-4baa-9726-fae9ed035b2d}, !- Zone Air Node Name + {c0411530-5b6b-4e14-9732-de4bffc93433}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {93e4ed72-a95b-480c-a2b4-99375f4d9efb}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {72b3d7b7-f824-408c-b2c9-eda9e92588c4}, !- Handle + Zone Outpatient Hall B - Story ground Zone Air Node, !- Name + {b0de45ea-6806-4baa-9726-fae9ed035b2d}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {b0de45ea-6806-4baa-9726-fae9ed035b2d}, !- Handle + {116152a8-6536-47ad-bf77-c4e62384745a}, !- Source Object + 11, !- Outlet Port + {72b3d7b7-f824-408c-b2c9-eda9e92588c4}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {550a7d97-ea54-4014-86e3-b00783f75b61}, !- Handle + {116152a8-6536-47ad-bf77-c4e62384745a}, !- HVAC Component + {b97a6ed7-8543-46b6-94ea-ea948a2e72e4}, !- Port 1 + {aba15370-d8ea-44a9-993e-c58615d1d6ce}; !- Port 2 + +OS:PortList, + {6f4157f8-3c7e-418e-8ea8-e39bc0e49b70}, !- Handle + {116152a8-6536-47ad-bf77-c4e62384745a}, !- HVAC Component + {5b807492-40b9-4f76-b6cc-27a651d76361}; !- Port 1 + +OS:PortList, + {c0411530-5b6b-4e14-9732-de4bffc93433}, !- Handle + {116152a8-6536-47ad-bf77-c4e62384745a}, !- HVAC Component + {41dff447-fa80-4987-865c-bb4a5710ddb0}; !- Port 1 + +OS:Sizing:Zone, + {4d06d997-d4fa-46a6-972c-52b4521aa05b}, !- Handle + {116152a8-6536-47ad-bf77-c4e62384745a}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {e4790fe9-1a7c-431f-983a-ebd7c6cce9f5}, !- Handle + Zone Outpatient Hall B - Story ground Zone HVAC Equipment List, !- Name + {116152a8-6536-47ad-bf77-c4e62384745a}, !- Thermal Zone + , !- Load Distribution Scheme + {bddcec81-fdcd-4dbb-859d-06d019d67be9}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {a4345ff3-cdd9-49a3-95e0-4a2d31f5bcf7}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {54466a7c-3c92-414d-a38f-0fbe7cb53ad0}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {4e68c34e-c319-4036-86a8-f3ae09e2112e}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {eee8fa4e-ae5b-4919-a079-6e3c9f6e0be2}, !- Handle + Outpatient Exam C - Story ground, !- Name + {c912bf90-f212-44be-bcc8-1e25d4bd9d5f}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + -46.68012, !- X Origin {m} + 18.3020962715457, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {4212715b-3cd0-42ee-be02-82afd77ee65a}; !- Thermal Zone Name + +OS:Surface, + {522c480d-49b5-4ffe-9cea-291a5b54c090}, !- Handle + Surface 31, !- Name + Floor, !- Surface Type + {a7070f5c-0e5f-48c1-8284-8fb2364087b5}, !- Construction Name + {eee8fa4e-ae5b-4919-a079-6e3c9f6e0be2}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.105427357601e-15, 7.105427357601e-15, 0, !- X,Y,Z Vertex 1 {m} + -7.105427357601e-15, 9.78838724710011, 0, !- X,Y,Z Vertex 2 {m} + 43.3808255077881, 9.78838724710011, 0, !- X,Y,Z Vertex 3 {m} + 43.3808255077881, 7.105427357601e-15, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {98fcea3f-71a9-450e-b4f2-c7d19055b445}, !- Handle + Surface 32, !- Name + Wall, !- Surface Type + , !- Construction Name + {eee8fa4e-ae5b-4919-a079-6e3c9f6e0be2}, !- Space Name + Surface, !- Outside Boundary Condition + {ca2c587f-58e6-4b3e-95e9-00744391f126}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.105427357601e-15, 9.78838724710011, 3.048, !- X,Y,Z Vertex 1 {m} + 7.105427357601e-15, 9.78838724710011, 0, !- X,Y,Z Vertex 2 {m} + 7.105427357601e-15, 7.105427357601e-15, 0, !- X,Y,Z Vertex 3 {m} + 7.105427357601e-15, 7.105427357601e-15, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3605baca-40a8-4982-8201-3db8c811601e}, !- Handle + Surface 33, !- Name + Wall, !- Surface Type + , !- Construction Name + {eee8fa4e-ae5b-4919-a079-6e3c9f6e0be2}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.105427357601e-15, 9.78838724710011, 3.048, !- X,Y,Z Vertex 1 {m} + 43.3808255077881, 9.78838724710011, 3.048, !- X,Y,Z Vertex 2 {m} + 43.3808255077881, 9.78838724710011, 0, !- X,Y,Z Vertex 3 {m} + -7.105427357601e-15, 9.78838724710011, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3115fe0d-5986-4787-b6a2-aaf865c53dc4}, !- Handle + Surface 34, !- Name + Wall, !- Surface Type + , !- Construction Name + {eee8fa4e-ae5b-4919-a079-6e3c9f6e0be2}, !- Space Name + Surface, !- Outside Boundary Condition + {d8589edf-e219-4f97-8751-f598b6301627}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 43.3808255077881, 7.105427357601e-15, 3.048, !- X,Y,Z Vertex 1 {m} + 43.3808255077881, 7.105427357601e-15, 0, !- X,Y,Z Vertex 2 {m} + 43.3808255077881, 5.2163872471001, 0, !- X,Y,Z Vertex 3 {m} + 43.3808255077881, 5.2163872471001, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f37c62ec-8239-48b5-8e8f-a2a3eb40dd30}, !- Handle + Surface 35, !- Name + Wall, !- Surface Type + , !- Construction Name + {eee8fa4e-ae5b-4919-a079-6e3c9f6e0be2}, !- Space Name + Surface, !- Outside Boundary Condition + {c9758c06-34cc-498c-81f5-553b420c6e42}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -7.105427357601e-15, 7.105427357601e-15, 3.048, !- X,Y,Z Vertex 1 {m} + -7.105427357601e-15, 7.105427357601e-15, 0, !- X,Y,Z Vertex 2 {m} + 43.3808255077881, 7.105427357601e-15, 0, !- X,Y,Z Vertex 3 {m} + 43.3808255077881, 7.105427357601e-15, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1f34d7c4-f34d-4988-bd47-6ca95887b018}, !- Handle + Surface 36, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {eee8fa4e-ae5b-4919-a079-6e3c9f6e0be2}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 43.3808255077881, 7.105427357601e-15, 3.048, !- X,Y,Z Vertex 1 {m} + 43.3808255077881, 9.78838724710011, 3.048, !- X,Y,Z Vertex 2 {m} + -7.105427357601e-15, 9.78838724710011, 3.048, !- X,Y,Z Vertex 3 {m} + -7.105427357601e-15, 7.105427357601e-15, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {4212715b-3cd0-42ee-be02-82afd77ee65a}, !- Handle + Zone Outpatient Exam C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {040db27d-47bd-476d-8019-9a2b9c1b383a}, !- Zone Air Inlet Port List + {a67d20bc-14ae-4799-b916-70ece9134835}, !- Zone Air Exhaust Port List + {1f54ab22-3ae0-4c5a-a01e-7aa1ed01a712}, !- Zone Air Node Name + {58d48122-b22f-4542-8346-d771e392b75b}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {0d4729e9-1075-48db-b179-8940b6e2b4bb}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {0a46e76d-0de1-4dcd-ab8b-d5cf8f8bd5fa}, !- Handle + Zone Outpatient Exam C - Story ground Zone Air Node, !- Name + {1f54ab22-3ae0-4c5a-a01e-7aa1ed01a712}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {1f54ab22-3ae0-4c5a-a01e-7aa1ed01a712}, !- Handle + {4212715b-3cd0-42ee-be02-82afd77ee65a}, !- Source Object + 11, !- Outlet Port + {0a46e76d-0de1-4dcd-ab8b-d5cf8f8bd5fa}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {040db27d-47bd-476d-8019-9a2b9c1b383a}, !- Handle + {4212715b-3cd0-42ee-be02-82afd77ee65a}, !- HVAC Component + {b3899d3b-a88f-42cf-a3ee-a21e2b52dbc3}, !- Port 1 + {16bc7598-fab8-4dc2-a73d-11cdf3829e47}; !- Port 2 + +OS:PortList, + {a67d20bc-14ae-4799-b916-70ece9134835}, !- Handle + {4212715b-3cd0-42ee-be02-82afd77ee65a}, !- HVAC Component + {1269aba1-32d8-45ea-9d02-bff1c957c799}; !- Port 1 + +OS:PortList, + {58d48122-b22f-4542-8346-d771e392b75b}, !- Handle + {4212715b-3cd0-42ee-be02-82afd77ee65a}, !- HVAC Component + {e91cb2ba-8b28-49c6-8b6f-3d2d0c846484}; !- Port 1 + +OS:Sizing:Zone, + {c8f12b55-43d8-410c-a4ac-77e8a6686109}, !- Handle + {4212715b-3cd0-42ee-be02-82afd77ee65a}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {6b627dce-f0e3-44c4-b6ed-019eec32c1ca}, !- Handle + Zone Outpatient Exam C - Story ground Zone HVAC Equipment List, !- Name + {4212715b-3cd0-42ee-be02-82afd77ee65a}, !- Thermal Zone + , !- Load Distribution Scheme + {d0431554-f3e3-4b1c-8249-3534e3eff75a}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {8146a40b-1df4-4e8c-8aab-2a050c697709}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {c1f8e336-7402-4584-8bff-3fd93728ba37}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {ed283ccc-af9d-4907-aef0-e089b8f8fff9}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {2da562aa-6f06-4968-b8e2-fe4ad52088ea}, !- Handle + Outpatient OR A - Story ground, !- Name + {5fb014fb-6043-4a5b-b056-a124c49bf50e}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + -3.29929449221187, !- X Origin {m} + -28.0904835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {5c1bc5f7-cc04-41a3-9708-a3804b68d4dc}; !- Thermal Zone Name + +OS:Surface, + {2f754c10-6406-4c2a-8fea-48ac4bdcb184}, !- Handle + Surface 37, !- Name + Floor, !- Surface Type + {63bfb146-d51e-4544-ae3d-dca9cda26f22}, !- Construction Name + {2da562aa-6f06-4968-b8e2-fe4ad52088ea}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.88178419700125e-16, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + 8.88178419700125e-16, 4.57199999999995, 0, !- X,Y,Z Vertex 2 {m} + 0.525322225225381, 4.57199999999995, 0, !- X,Y,Z Vertex 3 {m} + 0.525322225225381, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2fcf7c03-2da1-40a7-9206-f945bc7fc6aa}, !- Handle + Surface 38, !- Name + Wall, !- Surface Type + , !- Construction Name + {2da562aa-6f06-4968-b8e2-fe4ad52088ea}, !- Space Name + Surface, !- Outside Boundary Condition + {638c8e9b-9ba4-4007-87f9-49491c9d9f49}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.88178419700125e-16, 4.57199999999995, 3.048, !- X,Y,Z Vertex 1 {m} + 8.88178419700125e-16, 4.57199999999995, 0, !- X,Y,Z Vertex 2 {m} + 8.88178419700125e-16, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 8.88178419700125e-16, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {54926dac-a986-4d26-b99b-d969417b8239}, !- Handle + Surface 39, !- Name + Wall, !- Surface Type + , !- Construction Name + {2da562aa-6f06-4968-b8e2-fe4ad52088ea}, !- Space Name + Surface, !- Outside Boundary Condition + {93f7b52a-7822-49b8-a5be-8cba9812257f}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.525322225225381, 4.57199999999995, 3.048, !- X,Y,Z Vertex 1 {m} + 0.525322225225381, 4.57199999999995, 0, !- X,Y,Z Vertex 2 {m} + 8.88178419700125e-16, 4.57199999999995, 0, !- X,Y,Z Vertex 3 {m} + 8.88178419700125e-16, 4.57199999999995, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {30c56e60-296b-4ce0-aa9b-76b4fa37e35c}, !- Handle + Surface 40, !- Name + Wall, !- Surface Type + , !- Construction Name + {2da562aa-6f06-4968-b8e2-fe4ad52088ea}, !- Space Name + Surface, !- Outside Boundary Condition + {cb8f462c-7225-4df9-ad4c-a61d8dd388ba}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.525322225225381, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.525322225225381, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.525322225225381, 4.57199999999995, 0, !- X,Y,Z Vertex 3 {m} + 0.525322225225381, 4.57199999999995, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0c917e1b-b87f-4597-9671-68f299ab6b52}, !- Handle + Surface 41, !- Name + Wall, !- Surface Type + , !- Construction Name + {2da562aa-6f06-4968-b8e2-fe4ad52088ea}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.525322225225381, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 8.88178419700125e-16, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 8.88178419700125e-16, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 0.525322225225381, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ae2354d5-8f4d-4ceb-a4e9-4c42e4d65e85}, !- Handle + Surface 42, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {2da562aa-6f06-4968-b8e2-fe4ad52088ea}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.525322225225381, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.525322225225381, 4.57199999999995, 3.048, !- X,Y,Z Vertex 2 {m} + 8.88178419700125e-16, 4.57199999999995, 3.048, !- X,Y,Z Vertex 3 {m} + 8.88178419700125e-16, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {5c1bc5f7-cc04-41a3-9708-a3804b68d4dc}, !- Handle + Zone Outpatient OR A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {03a66b75-b371-4846-99bf-362fe2d2c2ec}, !- Zone Air Inlet Port List + {bc4468dc-5779-4fe8-9163-d7079a34a30e}, !- Zone Air Exhaust Port List + {dcf79800-99ba-4ad5-ac48-450ebe065640}, !- Zone Air Node Name + {f292b89e-1633-4c99-8a1c-4abc9937ec2c}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {18780b7a-ae3d-4ecc-ae0a-e40c734240e1}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {49898d67-84ca-4c9e-aef6-fdb8faeb30b6}, !- Handle + Zone Outpatient OR A - Story ground Zone Air Node, !- Name + {dcf79800-99ba-4ad5-ac48-450ebe065640}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {dcf79800-99ba-4ad5-ac48-450ebe065640}, !- Handle + {5c1bc5f7-cc04-41a3-9708-a3804b68d4dc}, !- Source Object + 11, !- Outlet Port + {49898d67-84ca-4c9e-aef6-fdb8faeb30b6}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {03a66b75-b371-4846-99bf-362fe2d2c2ec}, !- Handle + {5c1bc5f7-cc04-41a3-9708-a3804b68d4dc}, !- HVAC Component + {ca1ee619-d7d8-49a8-b14f-836f05af1265}, !- Port 1 + {745c040d-427b-4c4c-a657-7183f9de2d13}; !- Port 2 + +OS:PortList, + {bc4468dc-5779-4fe8-9163-d7079a34a30e}, !- Handle + {5c1bc5f7-cc04-41a3-9708-a3804b68d4dc}, !- HVAC Component + {9dd89249-5a8a-42d5-96ee-2fcd9feeb910}; !- Port 1 + +OS:PortList, + {f292b89e-1633-4c99-8a1c-4abc9937ec2c}, !- Handle + {5c1bc5f7-cc04-41a3-9708-a3804b68d4dc}, !- HVAC Component + {9b136746-5edc-4ab5-bc96-dff9cd7a2827}; !- Port 1 + +OS:Sizing:Zone, + {b0f7f767-8a23-4b57-add9-1d1391bfd9d0}, !- Handle + {5c1bc5f7-cc04-41a3-9708-a3804b68d4dc}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {1893aed6-73e0-446c-b87b-0e0c09c47f01}, !- Handle + Zone Outpatient OR A - Story ground Zone HVAC Equipment List, !- Name + {5c1bc5f7-cc04-41a3-9708-a3804b68d4dc}, !- Thermal Zone + , !- Load Distribution Scheme + {747bf415-f04b-4fa7-93b3-0df52fd126c3}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {b0081e23-9f7f-4aee-ad6b-8b9ed2373d68}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {87190172-a66d-4489-9806-f265c5d0738d}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {6574e0cb-620e-4988-acf7-a1e6c1367c1d}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {9ece76bb-c078-48e7-ba59-3b3a21dcd732}, !- Handle + Outpatient OR B - Story ground, !- Name + {5fb014fb-6043-4a5b-b056-a124c49bf50e}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + -3.29929449221187, !- X Origin {m} + -23.5184835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {b0ebfccc-238a-4f96-bc11-122e208b9064}; !- Thermal Zone Name + +OS:Surface, + {60f2cf68-f8df-492d-907d-02da78689ce3}, !- Handle + Surface 43, !- Name + Floor, !- Surface Type + {c3a974a0-c182-4edc-8b64-751fbcd2fa22}, !- Construction Name + {9ece76bb-c078-48e7-ba59-3b3a21dcd732}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.88178419700125e-16, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + 8.88178419700125e-16, 47.0369670372916, 0, !- X,Y,Z Vertex 2 {m} + 0.525322225225381, 47.0369670372916, 0, !- X,Y,Z Vertex 3 {m} + 0.525322225225381, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {96044196-8db2-485a-b76d-4877d90c424f}, !- Handle + Surface 44, !- Name + Wall, !- Surface Type + , !- Construction Name + {9ece76bb-c078-48e7-ba59-3b3a21dcd732}, !- Space Name + Surface, !- Outside Boundary Condition + {e7fb06e6-9368-410b-af7b-21e419266290}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.93098878501041e-14, 5.21638724710005, 3.048, !- X,Y,Z Vertex 1 {m} + -2.93098878501041e-14, 5.21638724710005, 0, !- X,Y,Z Vertex 2 {m} + 8.88178419700125e-16, -4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + 8.88178419700125e-16, -4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1926f329-e95f-44c8-8f44-2076da66d02e}, !- Handle + Surface 45, !- Name + Wall, !- Surface Type + , !- Construction Name + {9ece76bb-c078-48e7-ba59-3b3a21dcd732}, !- Space Name + Surface, !- Outside Boundary Condition + {c03b27ab-6a49-4c56-a115-3edacc9f58d3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.525322225225381, 47.0369670372916, 3.048, !- X,Y,Z Vertex 1 {m} + 0.525322225225381, 47.0369670372916, 0, !- X,Y,Z Vertex 2 {m} + 8.88178419700125e-16, 47.0369670372916, 0, !- X,Y,Z Vertex 3 {m} + 8.88178419700125e-16, 47.0369670372916, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b1e95efa-bea6-42e7-a93b-f3d917d5b55f}, !- Handle + Surface 46, !- Name + Wall, !- Surface Type + , !- Construction Name + {9ece76bb-c078-48e7-ba59-3b3a21dcd732}, !- Space Name + Surface, !- Outside Boundary Condition + {a442e0d9-4a44-4702-b795-a1ba97e13a99}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.525322225225381, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.525322225225381, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.525322225225381, 47.0369670372916, 0, !- X,Y,Z Vertex 3 {m} + 0.525322225225381, 47.0369670372916, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {93f7b52a-7822-49b8-a5be-8cba9812257f}, !- Handle + Surface 47, !- Name + Wall, !- Surface Type + , !- Construction Name + {9ece76bb-c078-48e7-ba59-3b3a21dcd732}, !- Space Name + Surface, !- Outside Boundary Condition + {54926dac-a986-4d26-b99b-d969417b8239}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.88178419700125e-16, -4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 8.88178419700125e-16, -4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.525322225225381, -4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 0.525322225225381, -4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {28cf9cf1-2bdb-444b-9533-950960d039d4}, !- Handle + Surface 48, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {9ece76bb-c078-48e7-ba59-3b3a21dcd732}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.525322225225381, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.525322225225381, 47.0369670372916, 3.048, !- X,Y,Z Vertex 2 {m} + 8.88178419700125e-16, 47.0369670372916, 3.048, !- X,Y,Z Vertex 3 {m} + 8.88178419700125e-16, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {b0ebfccc-238a-4f96-bc11-122e208b9064}, !- Handle + Zone Outpatient OR B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {30a4f823-d912-466e-9c7d-72ccdb9015e1}, !- Zone Air Inlet Port List + {9588300e-3c73-4105-b4ec-63cda8a4ad1f}, !- Zone Air Exhaust Port List + {3c7d4e3a-5cf9-4aed-bfb7-19853c53d77b}, !- Zone Air Node Name + {c23be688-bcb2-4f2e-bdbe-017b6d58e41b}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {86482bc4-08b6-4617-86af-235a2b5b6ff6}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {050ecd93-c887-4060-898a-d8f4716f888b}, !- Handle + Zone Outpatient OR B - Story ground Zone Air Node, !- Name + {3c7d4e3a-5cf9-4aed-bfb7-19853c53d77b}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {3c7d4e3a-5cf9-4aed-bfb7-19853c53d77b}, !- Handle + {b0ebfccc-238a-4f96-bc11-122e208b9064}, !- Source Object + 11, !- Outlet Port + {050ecd93-c887-4060-898a-d8f4716f888b}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {30a4f823-d912-466e-9c7d-72ccdb9015e1}, !- Handle + {b0ebfccc-238a-4f96-bc11-122e208b9064}, !- HVAC Component + {2fc1c206-b74d-4b32-be6c-0b3d900c1da8}, !- Port 1 + {c7b0026a-2934-4c22-a27e-1ced5c244a30}; !- Port 2 + +OS:PortList, + {9588300e-3c73-4105-b4ec-63cda8a4ad1f}, !- Handle + {b0ebfccc-238a-4f96-bc11-122e208b9064}, !- HVAC Component + {c87768d4-ff8a-4cff-a14c-52aa089f84f1}; !- Port 1 + +OS:PortList, + {c23be688-bcb2-4f2e-bdbe-017b6d58e41b}, !- Handle + {b0ebfccc-238a-4f96-bc11-122e208b9064}, !- HVAC Component + {a8b687ed-63cf-448b-a8f4-b6904efcae01}; !- Port 1 + +OS:Sizing:Zone, + {2ec5450c-d60c-46b9-9388-20803d3a11b0}, !- Handle + {b0ebfccc-238a-4f96-bc11-122e208b9064}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {07e02c73-cedd-410e-8ece-c81c72ac2ab0}, !- Handle + Zone Outpatient OR B - Story ground Zone HVAC Equipment List, !- Name + {b0ebfccc-238a-4f96-bc11-122e208b9064}, !- Thermal Zone + , !- Load Distribution Scheme + {39dc80e0-dcdf-4109-8860-2dacafb0582a}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {83b13555-3c10-42e1-bde1-aa8e8ce53cb8}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {907b7a61-8449-455e-86b4-bb9e8591e51f}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {80d03fe8-1bc3-4a86-8bd2-06aba262f720}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {292bad91-aae1-43a1-9f88-b368e8ab0cbf}, !- Handle + Outpatient OR C - Story ground, !- Name + {5fb014fb-6043-4a5b-b056-a124c49bf50e}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + -3.29929449221187, !- X Origin {m} + 23.5184835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {afb0b06b-5142-4b02-8b92-5a4397f3d2b6}; !- Thermal Zone Name + +OS:Surface, + {8a46fd22-938d-485c-92d8-ba32f8c24d0d}, !- Handle + Surface 49, !- Name + Floor, !- Surface Type + {63bfb146-d51e-4544-ae3d-dca9cda26f22}, !- Construction Name + {292bad91-aae1-43a1-9f88-b368e8ab0cbf}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.88178419700125e-16, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + 8.88178419700125e-16, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0.525322225225381, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0.525322225225381, 4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d03e691b-0063-45bd-89c5-3808031d6659}, !- Handle + Surface 50, !- Name + Wall, !- Surface Type + , !- Construction Name + {292bad91-aae1-43a1-9f88-b368e8ab0cbf}, !- Space Name + Surface, !- Outside Boundary Condition + {07a16c0b-8ab0-44a8-8ba7-9f6b4c18195e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.88178419700125e-16, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 8.88178419700125e-16, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 8.88178419700125e-16, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 8.88178419700125e-16, 4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f04c5678-f267-4a2d-8704-7c8023c424a9}, !- Handle + Surface 51, !- Name + Wall, !- Surface Type + , !- Construction Name + {292bad91-aae1-43a1-9f88-b368e8ab0cbf}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.88178419700125e-16, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 0.525322225225381, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 0.525322225225381, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 8.88178419700125e-16, 4.57200000000005, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {50de66fd-753f-40ff-935d-92e3d2d89738}, !- Handle + Surface 52, !- Name + Wall, !- Surface Type + , !- Construction Name + {292bad91-aae1-43a1-9f88-b368e8ab0cbf}, !- Space Name + Surface, !- Outside Boundary Condition + {2d84ae1c-8deb-4446-9e25-96e26cdd0c08}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.525322225225381, 4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.525322225225381, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.525322225225381, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0.525322225225381, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {c03b27ab-6a49-4c56-a115-3edacc9f58d3}, !- Handle + Surface 53, !- Name + Wall, !- Surface Type + , !- Construction Name + {292bad91-aae1-43a1-9f88-b368e8ab0cbf}, !- Space Name + Surface, !- Outside Boundary Condition + {1926f329-e95f-44c8-8f44-2076da66d02e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.88178419700125e-16, 4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 8.88178419700125e-16, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.525322225225381, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 0.525322225225381, 4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2efef783-9883-4010-97a3-6e3d83368ab5}, !- Handle + Surface 54, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {292bad91-aae1-43a1-9f88-b368e8ab0cbf}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.525322225225381, 4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.525322225225381, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 8.88178419700125e-16, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + 8.88178419700125e-16, 4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {afb0b06b-5142-4b02-8b92-5a4397f3d2b6}, !- Handle + Zone Outpatient OR C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {418a614e-4d68-4e72-8c71-1b6c534b9a09}, !- Zone Air Inlet Port List + {a2c17bbd-4db3-4f23-9e56-420f80b5b998}, !- Zone Air Exhaust Port List + {811ccc7b-1b90-4005-bf1f-1f658256c0ae}, !- Zone Air Node Name + {97196e63-d60f-455f-b9be-68a6e52ec018}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {86dcb3ce-4c12-4113-bafd-11715afcad67}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {b82f3ef4-d480-4077-8f84-563656a69479}, !- Handle + Zone Outpatient OR C - Story ground Zone Air Node, !- Name + {811ccc7b-1b90-4005-bf1f-1f658256c0ae}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {811ccc7b-1b90-4005-bf1f-1f658256c0ae}, !- Handle + {afb0b06b-5142-4b02-8b92-5a4397f3d2b6}, !- Source Object + 11, !- Outlet Port + {b82f3ef4-d480-4077-8f84-563656a69479}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {418a614e-4d68-4e72-8c71-1b6c534b9a09}, !- Handle + {afb0b06b-5142-4b02-8b92-5a4397f3d2b6}, !- HVAC Component + {1cb065e8-8982-47ce-9ac1-aac1c3e1f727}, !- Port 1 + {73935a12-ec90-4a52-820a-243de7a383ad}; !- Port 2 + +OS:PortList, + {a2c17bbd-4db3-4f23-9e56-420f80b5b998}, !- Handle + {afb0b06b-5142-4b02-8b92-5a4397f3d2b6}, !- HVAC Component + {4e2ef394-6cf5-4af9-97b5-4ddd8b8de978}; !- Port 1 + +OS:PortList, + {97196e63-d60f-455f-b9be-68a6e52ec018}, !- Handle + {afb0b06b-5142-4b02-8b92-5a4397f3d2b6}, !- HVAC Component + {9753c060-5fb3-415e-8384-aa771f233cb1}; !- Port 1 + +OS:Sizing:Zone, + {6efa53a8-e13b-42fd-8d88-f9b713ae7c08}, !- Handle + {afb0b06b-5142-4b02-8b92-5a4397f3d2b6}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {0012b0db-a569-42d0-a4ff-1f2940403a60}, !- Handle + Zone Outpatient OR C - Story ground Zone HVAC Equipment List, !- Name + {afb0b06b-5142-4b02-8b92-5a4397f3d2b6}, !- Thermal Zone + , !- Load Distribution Scheme + {e1c92e20-51e1-4638-86aa-45973f68707b}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {82dd19c1-2b77-4d9b-9e0f-d0b71891c817}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {4b641141-e358-4a13-a5a0-bac3aa0082de}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {232aa8f9-f266-4889-bf13-29b746d37752}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {bffb6823-ab11-4b1a-946c-0025c7c6aab7}, !- Handle + Outpatient Reception A - Story ground, !- Name + {b0858a9c-8d82-4ec2-b1e5-e4c1bbd82d0e}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + -2.77397226698649, !- X Origin {m} + -28.0904835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {c013aefc-f7b4-4e0a-b318-377694e3fcf8}; !- Thermal Zone Name + +OS:Surface, + {04933ff7-2623-4dd6-a4e7-15bafeb1e1c9}, !- Handle + Surface 55, !- Name + Floor, !- Surface Type + {daaec182-e5df-4649-ab85-7f07d96eaa90}, !- Construction Name + {bffb6823-ab11-4b1a-946c-0025c7c6aab7}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.33226762955019e-15, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + -1.33226762955019e-15, 4.57199999999995, 0, !- X,Y,Z Vertex 2 {m} + 5.92711862862942, 4.57199999999995, 0, !- X,Y,Z Vertex 3 {m} + 5.92711862862942, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {cb8f462c-7225-4df9-ad4c-a61d8dd388ba}, !- Handle + Surface 56, !- Name + Wall, !- Surface Type + , !- Construction Name + {bffb6823-ab11-4b1a-946c-0025c7c6aab7}, !- Space Name + Surface, !- Outside Boundary Condition + {30c56e60-296b-4ce0-aa9b-76b4fa37e35c}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.88178419700125e-16, 4.57199999999995, 3.048, !- X,Y,Z Vertex 1 {m} + 8.88178419700125e-16, 4.57199999999995, 0, !- X,Y,Z Vertex 2 {m} + 8.88178419700125e-16, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 8.88178419700125e-16, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {72dc5412-f71f-4a34-a911-d1db8d61f7c5}, !- Handle + Surface 57, !- Name + Wall, !- Surface Type + , !- Construction Name + {bffb6823-ab11-4b1a-946c-0025c7c6aab7}, !- Space Name + Surface, !- Outside Boundary Condition + {bdd0517d-a04e-48b6-a05d-66316465696d}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5.92711862862942, 4.57199999999995, 3.048, !- X,Y,Z Vertex 1 {m} + 5.92711862862942, 4.57199999999995, 0, !- X,Y,Z Vertex 2 {m} + -8.88178419700125e-16, 4.57199999999995, 0, !- X,Y,Z Vertex 3 {m} + -8.88178419700125e-16, 4.57199999999995, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {c96ab0aa-cbcd-400b-b30e-75b722823f50}, !- Handle + Surface 58, !- Name + Wall, !- Surface Type + , !- Construction Name + {bffb6823-ab11-4b1a-946c-0025c7c6aab7}, !- Space Name + Surface, !- Outside Boundary Condition + {b1c5030e-067a-4624-a89a-f9f7efee0262}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5.92711862862942, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 5.92711862862942, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 5.92711862862942, 4.57199999999995, 0, !- X,Y,Z Vertex 3 {m} + 5.92711862862942, 4.57199999999995, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5cffad64-00c2-48c9-a5fc-092d7aaee273}, !- Handle + Surface 59, !- Name + Wall, !- Surface Type + , !- Construction Name + {bffb6823-ab11-4b1a-946c-0025c7c6aab7}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5.92711862862942, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -1.33226762955019e-15, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 2 {m} + -1.33226762955019e-15, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 5.92711862862942, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a8f05896-2067-4e64-af4d-8754e9019e53}, !- Handle + Surface 60, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {bffb6823-ab11-4b1a-946c-0025c7c6aab7}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5.92711862862942, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 5.92711862862942, 4.57199999999995, 3.048, !- X,Y,Z Vertex 2 {m} + -1.33226762955019e-15, 4.57199999999995, 3.048, !- X,Y,Z Vertex 3 {m} + -1.33226762955019e-15, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {c013aefc-f7b4-4e0a-b318-377694e3fcf8}, !- Handle + Zone Outpatient Reception A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {0ef8831c-cdd7-47e7-9231-e5402d65e1fb}, !- Zone Air Inlet Port List + {9cfa685f-2489-4359-b8b8-fce6da709bfa}, !- Zone Air Exhaust Port List + {7230897e-78e8-4fff-9295-6629e4a33360}, !- Zone Air Node Name + {454c2c65-e23a-4f93-a211-008ddf3eb1ca}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {72361cbd-b724-4821-bb64-a28cddc15953}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {2ce5e289-b0f2-4dcf-a2c2-4e01cdeaabc7}, !- Handle + Zone Outpatient Reception A - Story ground Zone Air Node, !- Name + {7230897e-78e8-4fff-9295-6629e4a33360}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {7230897e-78e8-4fff-9295-6629e4a33360}, !- Handle + {c013aefc-f7b4-4e0a-b318-377694e3fcf8}, !- Source Object + 11, !- Outlet Port + {2ce5e289-b0f2-4dcf-a2c2-4e01cdeaabc7}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {0ef8831c-cdd7-47e7-9231-e5402d65e1fb}, !- Handle + {c013aefc-f7b4-4e0a-b318-377694e3fcf8}, !- HVAC Component + {1c43319c-f6eb-4642-a757-d0a599bd89dd}, !- Port 1 + {cb1b5dbe-21ef-4608-8c89-cea9d2208110}; !- Port 2 + +OS:PortList, + {9cfa685f-2489-4359-b8b8-fce6da709bfa}, !- Handle + {c013aefc-f7b4-4e0a-b318-377694e3fcf8}, !- HVAC Component + {56f9c0a4-bfcb-4ba7-aeb7-480f52b72524}; !- Port 1 + +OS:PortList, + {454c2c65-e23a-4f93-a211-008ddf3eb1ca}, !- Handle + {c013aefc-f7b4-4e0a-b318-377694e3fcf8}, !- HVAC Component + {18b63162-9789-4e94-98e0-d0c5432f4c76}; !- Port 1 + +OS:Sizing:Zone, + {49907348-c9dd-4e00-ba6e-11dcca548288}, !- Handle + {c013aefc-f7b4-4e0a-b318-377694e3fcf8}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {1b59afc3-24bb-42e6-b8dd-d4fdea8259cb}, !- Handle + Zone Outpatient Reception A - Story ground Zone HVAC Equipment List, !- Name + {c013aefc-f7b4-4e0a-b318-377694e3fcf8}, !- Thermal Zone + , !- Load Distribution Scheme + {3df4aa89-3628-4bca-87f5-6e50d52b0ef9}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {218edfb0-3dc7-41b8-935f-0adbaf50b662}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {c8ab08cb-469a-4402-beba-7aa81858b4ee}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {dc4ec378-f70e-4345-bd57-f6e66db0c641}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {af095cd2-dcda-4c8d-9712-8d670528e498}, !- Handle + Outpatient Reception B - Story ground, !- Name + {b0858a9c-8d82-4ec2-b1e5-e4c1bbd82d0e}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + -2.77397226698649, !- X Origin {m} + -23.5184835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {a3dd2ac2-f36f-4629-8bd3-f571b614e95f}; !- Thermal Zone Name + +OS:Surface, + {79207ee4-d1b2-4260-982b-c98e017452d4}, !- Handle + Surface 61, !- Name + Floor, !- Surface Type + {e1cad604-7333-418b-836d-28bc421deea1}, !- Construction Name + {af095cd2-dcda-4c8d-9712-8d670528e498}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.33226762955019e-15, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + -1.33226762955019e-15, 47.0369670372916, 0, !- X,Y,Z Vertex 2 {m} + 5.92711862862942, 47.0369670372916, 0, !- X,Y,Z Vertex 3 {m} + 5.92711862862942, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a442e0d9-4a44-4702-b795-a1ba97e13a99}, !- Handle + Surface 62, !- Name + Wall, !- Surface Type + , !- Construction Name + {af095cd2-dcda-4c8d-9712-8d670528e498}, !- Space Name + Surface, !- Outside Boundary Condition + {b1e95efa-bea6-42e7-a93b-f3d917d5b55f}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.88178419700125e-16, 47.0369670372916, 3.048, !- X,Y,Z Vertex 1 {m} + 8.88178419700125e-16, 47.0369670372916, 0, !- X,Y,Z Vertex 2 {m} + 8.88178419700125e-16, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 8.88178419700125e-16, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7ba5e843-f60d-4ae6-9505-a979d0cb9b5c}, !- Handle + Surface 63, !- Name + Wall, !- Surface Type + , !- Construction Name + {af095cd2-dcda-4c8d-9712-8d670528e498}, !- Space Name + Surface, !- Outside Boundary Condition + {ee24a874-7100-4744-948f-e35d53bfcda1}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5.92711862862942, 47.0369670372916, 3.048, !- X,Y,Z Vertex 1 {m} + 5.92711862862942, 47.0369670372916, 0, !- X,Y,Z Vertex 2 {m} + -1.33226762955019e-15, 47.0369670372916, 0, !- X,Y,Z Vertex 3 {m} + -1.33226762955019e-15, 47.0369670372916, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {39b0022a-04bd-450f-859a-16291a8fd7e2}, !- Handle + Surface 64, !- Name + Wall, !- Surface Type + , !- Construction Name + {af095cd2-dcda-4c8d-9712-8d670528e498}, !- Space Name + Surface, !- Outside Boundary Condition + {81902e1e-761e-42d6-8217-4073bc1235a9}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5.92711862862942, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 5.92711862862942, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 5.92711862862942, 47.0369670372916, 0, !- X,Y,Z Vertex 3 {m} + 5.92711862862942, 47.0369670372916, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {bdd0517d-a04e-48b6-a05d-66316465696d}, !- Handle + Surface 65, !- Name + Wall, !- Surface Type + , !- Construction Name + {af095cd2-dcda-4c8d-9712-8d670528e498}, !- Space Name + Surface, !- Outside Boundary Condition + {72dc5412-f71f-4a34-a911-d1db8d61f7c5}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -8.88178419700125e-16, -4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -8.88178419700125e-16, -4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 5.92711862862942, -4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 5.92711862862942, -4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7e4381d3-d7e8-4bde-8825-9d9b30109b63}, !- Handle + Surface 66, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {af095cd2-dcda-4c8d-9712-8d670528e498}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5.92711862862942, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 5.92711862862942, 47.0369670372916, 3.048, !- X,Y,Z Vertex 2 {m} + -1.33226762955019e-15, 47.0369670372916, 3.048, !- X,Y,Z Vertex 3 {m} + -1.33226762955019e-15, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {a3dd2ac2-f36f-4629-8bd3-f571b614e95f}, !- Handle + Zone Outpatient Reception B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {f34d022a-5fa3-49db-a0f2-ea1e52c6b28b}, !- Zone Air Inlet Port List + {e638255a-e85e-4ea9-a46d-de49c2e84d85}, !- Zone Air Exhaust Port List + {0fb66a53-e987-47f3-a568-657c845e1618}, !- Zone Air Node Name + {dd63aae8-3f7e-47b8-8fa5-01a426b2a062}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {f7504b44-d30a-44f3-a874-e5c5491989a0}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {e6875e96-acc5-4c57-b7ff-00c179b4f692}, !- Handle + Zone Outpatient Reception B - Story ground Zone Air Node, !- Name + {0fb66a53-e987-47f3-a568-657c845e1618}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {0fb66a53-e987-47f3-a568-657c845e1618}, !- Handle + {a3dd2ac2-f36f-4629-8bd3-f571b614e95f}, !- Source Object + 11, !- Outlet Port + {e6875e96-acc5-4c57-b7ff-00c179b4f692}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {f34d022a-5fa3-49db-a0f2-ea1e52c6b28b}, !- Handle + {a3dd2ac2-f36f-4629-8bd3-f571b614e95f}, !- HVAC Component + {9dd2fa17-30be-4efa-811c-5fbef3def5cf}, !- Port 1 + {a528411e-4578-4046-b505-fd3c2f498d5c}; !- Port 2 + +OS:PortList, + {e638255a-e85e-4ea9-a46d-de49c2e84d85}, !- Handle + {a3dd2ac2-f36f-4629-8bd3-f571b614e95f}, !- HVAC Component + {8e670dd9-0e69-4307-a5ba-cf9ca5370ee5}; !- Port 1 + +OS:PortList, + {dd63aae8-3f7e-47b8-8fa5-01a426b2a062}, !- Handle + {a3dd2ac2-f36f-4629-8bd3-f571b614e95f}, !- HVAC Component + {a308c0b5-216b-434a-b7fc-634a9c816951}; !- Port 1 + +OS:Sizing:Zone, + {296660ba-5a7d-4ff1-bfd0-9af5d8898b40}, !- Handle + {a3dd2ac2-f36f-4629-8bd3-f571b614e95f}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {b0317cb7-fb28-406d-97fc-81b13b103a9b}, !- Handle + Zone Outpatient Reception B - Story ground Zone HVAC Equipment List, !- Name + {a3dd2ac2-f36f-4629-8bd3-f571b614e95f}, !- Thermal Zone + , !- Load Distribution Scheme + {47f0a52f-6dd0-42bb-a314-cfb5d15cc409}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {74540f9d-fdc9-4e87-99aa-820dac31da8c}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {54f30768-4d0d-47ff-8797-fbc317c9d1f9}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {41b2cfd1-b4c6-4675-8e02-e53b0f7e12e1}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {ea0bae05-4dc5-4cc7-882a-1ac9115b31f4}, !- Handle + Outpatient Reception C - Story ground, !- Name + {b0858a9c-8d82-4ec2-b1e5-e4c1bbd82d0e}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + -2.77397226698649, !- X Origin {m} + 23.5184835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {3a537670-f4c9-4ed2-8708-61079e072655}; !- Thermal Zone Name + +OS:Surface, + {cc260e47-6e67-452b-b943-5b259539aab0}, !- Handle + Surface 67, !- Name + Floor, !- Surface Type + {daaec182-e5df-4649-ab85-7f07d96eaa90}, !- Construction Name + {ea0bae05-4dc5-4cc7-882a-1ac9115b31f4}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.33226762955019e-15, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + -1.33226762955019e-15, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 5.92711862862942, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 5.92711862862942, 4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2d84ae1c-8deb-4446-9e25-96e26cdd0c08}, !- Handle + Surface 68, !- Name + Wall, !- Surface Type + , !- Construction Name + {ea0bae05-4dc5-4cc7-882a-1ac9115b31f4}, !- Space Name + Surface, !- Outside Boundary Condition + {50de66fd-753f-40ff-935d-92e3d2d89738}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.88178419700125e-16, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 8.88178419700125e-16, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 8.88178419700125e-16, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 8.88178419700125e-16, 4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1afac12f-211d-422d-9495-3845d1769268}, !- Handle + Surface 69, !- Name + Wall, !- Surface Type + , !- Construction Name + {ea0bae05-4dc5-4cc7-882a-1ac9115b31f4}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.33226762955019e-15, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 5.92711862862942, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 5.92711862862942, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + -1.33226762955019e-15, 4.57200000000005, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {c74b18d3-27b7-4d42-810e-65760a71a615}, !- Handle + Surface 70, !- Name + Wall, !- Surface Type + , !- Construction Name + {ea0bae05-4dc5-4cc7-882a-1ac9115b31f4}, !- Space Name + Surface, !- Outside Boundary Condition + {045d1429-8575-45e8-85aa-ea776b40becd}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5.92711862862942, 4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 5.92711862862942, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 5.92711862862942, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 5.92711862862942, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ee24a874-7100-4744-948f-e35d53bfcda1}, !- Handle + Surface 71, !- Name + Wall, !- Surface Type + , !- Construction Name + {ea0bae05-4dc5-4cc7-882a-1ac9115b31f4}, !- Space Name + Surface, !- Outside Boundary Condition + {7ba5e843-f60d-4ae6-9505-a979d0cb9b5c}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.33226762955019e-15, 4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -1.33226762955019e-15, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 5.92711862862942, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 5.92711862862942, 4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5caec566-e299-4064-a35a-f77c43752110}, !- Handle + Surface 72, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {ea0bae05-4dc5-4cc7-882a-1ac9115b31f4}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5.92711862862942, 4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 5.92711862862942, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + -1.33226762955019e-15, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + -1.33226762955019e-15, 4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {3a537670-f4c9-4ed2-8708-61079e072655}, !- Handle + Zone Outpatient Reception C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {0cccaa20-a420-41cd-b806-5eeb753bf331}, !- Zone Air Inlet Port List + {ef2de2ab-a265-45dc-a0c7-227ba5972b81}, !- Zone Air Exhaust Port List + {7de38d9d-c343-4cef-97db-bad691977027}, !- Zone Air Node Name + {7e5299ba-b601-4fc0-b754-f4deb1f21476}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {853553be-cf3f-44e5-b932-ef458cc83d3e}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {379845c5-2ed9-4d62-bd1f-12e317474503}, !- Handle + Zone Outpatient Reception C - Story ground Zone Air Node, !- Name + {7de38d9d-c343-4cef-97db-bad691977027}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {7de38d9d-c343-4cef-97db-bad691977027}, !- Handle + {3a537670-f4c9-4ed2-8708-61079e072655}, !- Source Object + 11, !- Outlet Port + {379845c5-2ed9-4d62-bd1f-12e317474503}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {0cccaa20-a420-41cd-b806-5eeb753bf331}, !- Handle + {3a537670-f4c9-4ed2-8708-61079e072655}, !- HVAC Component + {c55f65ed-186e-4e11-b711-20690ee42eac}, !- Port 1 + {dcd1e8a0-18a2-41e3-b49d-1965b40817f7}; !- Port 2 + +OS:PortList, + {ef2de2ab-a265-45dc-a0c7-227ba5972b81}, !- Handle + {3a537670-f4c9-4ed2-8708-61079e072655}, !- HVAC Component + {6f3dc8db-f753-4cd2-a90a-e9ca2d8a6826}; !- Port 1 + +OS:PortList, + {7e5299ba-b601-4fc0-b754-f4deb1f21476}, !- Handle + {3a537670-f4c9-4ed2-8708-61079e072655}, !- HVAC Component + {f4022f01-b404-496b-902e-8f5715527e20}; !- Port 1 + +OS:Sizing:Zone, + {5bf9e07e-2f6a-4279-bcf3-fb0d5ffc5247}, !- Handle + {3a537670-f4c9-4ed2-8708-61079e072655}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {04b782fd-af9d-4645-8082-08d9922914af}, !- Handle + Zone Outpatient Reception C - Story ground Zone HVAC Equipment List, !- Name + {3a537670-f4c9-4ed2-8708-61079e072655}, !- Thermal Zone + , !- Load Distribution Scheme + {597b1b12-bcce-48f1-a360-2aee3edf425a}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {758cde1e-ec55-4727-9a3b-6ce1e55e0c78}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {0bc3f539-3760-400e-97f1-8486f9039fec}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {0ff273e3-6798-4751-aa0d-145e2672d3c0}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {a1e43370-775b-40a6-8905-fbab7ae343c1}, !- Handle + Outpatient PhysicalTherapy A - Story ground, !- Name + {2d20a7e4-e28e-45fe-b57b-4ce2154fb88e}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 3.15314636164293, !- X Origin {m} + -28.0904835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {bf4ffb45-95f6-4fff-818b-aa9d2639a6fd}; !- Thermal Zone Name + +OS:Surface, + {366575d8-9b8f-4aa6-8a15-b3b936613829}, !- Handle + Surface 73, !- Name + Floor, !- Surface Type + {aa5cb3c0-45d9-4033-8141-c1e70bade78c}, !- Construction Name + {a1e43370-775b-40a6-8905-fbab7ae343c1}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.22044604925031e-15, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + 2.22044604925031e-15, 4.57199999999995, 0, !- X,Y,Z Vertex 2 {m} + 7.50227070253917, 4.57199999999995, 0, !- X,Y,Z Vertex 3 {m} + 7.50227070253917, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b1c5030e-067a-4624-a89a-f9f7efee0262}, !- Handle + Surface 74, !- Name + Wall, !- Surface Type + , !- Construction Name + {a1e43370-775b-40a6-8905-fbab7ae343c1}, !- Space Name + Surface, !- Outside Boundary Condition + {c96ab0aa-cbcd-400b-b30e-75b722823f50}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57199999999995, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.57199999999995, 0, !- X,Y,Z Vertex 2 {m} + 0, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3c1c004e-11be-4dd9-a32e-3fa495cea668}, !- Handle + Surface 75, !- Name + Wall, !- Surface Type + , !- Construction Name + {a1e43370-775b-40a6-8905-fbab7ae343c1}, !- Space Name + Surface, !- Outside Boundary Condition + {51f0a9c2-5c4a-45e6-b46e-a9eda0025b5c}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.50227070253917, 4.57199999999995, 3.048, !- X,Y,Z Vertex 1 {m} + 7.50227070253917, 4.57199999999995, 0, !- X,Y,Z Vertex 2 {m} + 2.22044604925031e-15, 4.57199999999995, 0, !- X,Y,Z Vertex 3 {m} + 2.22044604925031e-15, 4.57199999999995, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {959bf5ad-70c4-4054-8fe4-415fd170d39e}, !- Handle + Surface 76, !- Name + Wall, !- Surface Type + , !- Construction Name + {a1e43370-775b-40a6-8905-fbab7ae343c1}, !- Space Name + Surface, !- Outside Boundary Condition + {04ad5a96-e034-49aa-9525-ef8e338b3751}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.50227070253917, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 7.50227070253917, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 7.50227070253917, 4.57199999999995, 0, !- X,Y,Z Vertex 3 {m} + 7.50227070253917, 4.57199999999995, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {6dbecbcb-9b8e-4176-b2dc-e7f6e1501da6}, !- Handle + Surface 77, !- Name + Wall, !- Surface Type + , !- Construction Name + {a1e43370-775b-40a6-8905-fbab7ae343c1}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.50227070253917, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.22044604925031e-15, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 2.22044604925031e-15, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 7.50227070253917, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {41d0cc69-9387-416f-9c34-62f19522b445}, !- Handle + Surface 78, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {a1e43370-775b-40a6-8905-fbab7ae343c1}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.50227070253917, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 7.50227070253917, 4.57199999999995, 3.048, !- X,Y,Z Vertex 2 {m} + 2.22044604925031e-15, 4.57199999999995, 3.048, !- X,Y,Z Vertex 3 {m} + 2.22044604925031e-15, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {bf4ffb45-95f6-4fff-818b-aa9d2639a6fd}, !- Handle + Zone Outpatient PhysicalTherapy A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {b8b67755-6a9e-49b8-ad2c-9839850c5d79}, !- Zone Air Inlet Port List + {c2f97006-80b9-4b83-b5e1-394f58229d95}, !- Zone Air Exhaust Port List + {2a71319b-f698-486c-915c-8a5ced633a8c}, !- Zone Air Node Name + {5c06eca5-d82b-4ba0-be42-48019de7a9ad}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {4f69094f-16b3-4cbb-ab78-50a3789994d5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {e911a890-02d5-4acf-ae12-5b9437fd3361}, !- Handle + Zone Outpatient PhysicalTherapy A - Story ground Zone Air Node, !- Name + {2a71319b-f698-486c-915c-8a5ced633a8c}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {2a71319b-f698-486c-915c-8a5ced633a8c}, !- Handle + {bf4ffb45-95f6-4fff-818b-aa9d2639a6fd}, !- Source Object + 11, !- Outlet Port + {e911a890-02d5-4acf-ae12-5b9437fd3361}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {b8b67755-6a9e-49b8-ad2c-9839850c5d79}, !- Handle + {bf4ffb45-95f6-4fff-818b-aa9d2639a6fd}, !- HVAC Component + {1eb6c7e9-7404-493f-82b4-0536201d89df}, !- Port 1 + {1017edd6-dc82-4a84-914e-cbbcc3eafe6f}; !- Port 2 + +OS:PortList, + {c2f97006-80b9-4b83-b5e1-394f58229d95}, !- Handle + {bf4ffb45-95f6-4fff-818b-aa9d2639a6fd}, !- HVAC Component + {567dd60d-3dd8-4c09-baa1-82376f0b89ed}; !- Port 1 + +OS:PortList, + {5c06eca5-d82b-4ba0-be42-48019de7a9ad}, !- Handle + {bf4ffb45-95f6-4fff-818b-aa9d2639a6fd}, !- HVAC Component + {ae102f23-17a2-466d-b606-6169d2c684d1}; !- Port 1 + +OS:Sizing:Zone, + {c52996bc-75b8-462a-aabb-f868a84c694b}, !- Handle + {bf4ffb45-95f6-4fff-818b-aa9d2639a6fd}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {d2c1dc3a-ba6b-43ac-855a-5094edba9451}, !- Handle + Zone Outpatient PhysicalTherapy A - Story ground Zone HVAC Equipment List, !- Name + {bf4ffb45-95f6-4fff-818b-aa9d2639a6fd}, !- Thermal Zone + , !- Load Distribution Scheme + {f4ac3eee-85f1-4ec2-9b14-fef89713fc26}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {95620ec2-0f3e-4da0-85bf-200ed5955b16}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {78475e1d-51e2-4287-9814-848ad9fdbc61}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {21b760a5-7ddd-4f73-892f-2f84ba9f9336}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {7aa26c07-5c82-497e-912e-f92ba7634ff2}, !- Handle + Outpatient PhysicalTherapy B - Story ground, !- Name + {2d20a7e4-e28e-45fe-b57b-4ce2154fb88e}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 3.15314636164293, !- X Origin {m} + -23.5184835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {73fe9f7c-2403-40d6-aec2-e59fc36f740b}; !- Thermal Zone Name + +OS:Surface, + {e84aaa7d-192c-48be-bca0-5c9de1525fb0}, !- Handle + Surface 79, !- Name + Floor, !- Surface Type + {f90a5634-a641-411f-abeb-b38de421beb4}, !- Construction Name + {7aa26c07-5c82-497e-912e-f92ba7634ff2}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.22044604925031e-15, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + 2.22044604925031e-15, 47.0369670372916, 0, !- X,Y,Z Vertex 2 {m} + 7.50227070253917, 47.0369670372916, 0, !- X,Y,Z Vertex 3 {m} + 7.50227070253917, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {81902e1e-761e-42d6-8217-4073bc1235a9}, !- Handle + Surface 80, !- Name + Wall, !- Surface Type + , !- Construction Name + {7aa26c07-5c82-497e-912e-f92ba7634ff2}, !- Space Name + Surface, !- Outside Boundary Condition + {39b0022a-04bd-450f-859a-16291a8fd7e2}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 47.0369670372916, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 47.0369670372916, 0, !- X,Y,Z Vertex 2 {m} + 0, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b45515af-ee80-4458-bd60-b20a6d13935b}, !- Handle + Surface 81, !- Name + Wall, !- Surface Type + , !- Construction Name + {7aa26c07-5c82-497e-912e-f92ba7634ff2}, !- Space Name + Surface, !- Outside Boundary Condition + {cb64ba41-3f66-4482-a622-16195408d168}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.50227070253917, 47.0369670372916, 3.048, !- X,Y,Z Vertex 1 {m} + 7.50227070253917, 47.0369670372916, 0, !- X,Y,Z Vertex 2 {m} + 2.22044604925031e-15, 47.0369670372916, 0, !- X,Y,Z Vertex 3 {m} + 2.22044604925031e-15, 47.0369670372916, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {aa6b978b-641c-4f6a-a04a-6e99c4c772bc}, !- Handle + Surface 82, !- Name + Wall, !- Surface Type + , !- Construction Name + {7aa26c07-5c82-497e-912e-f92ba7634ff2}, !- Space Name + Surface, !- Outside Boundary Condition + {fd83eafc-1dd6-4e13-8378-a7a5723b643c}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.50227070253917, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 7.50227070253917, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 7.50227070253917, 47.0369670372916, 0, !- X,Y,Z Vertex 3 {m} + 7.50227070253917, 47.0369670372916, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {51f0a9c2-5c4a-45e6-b46e-a9eda0025b5c}, !- Handle + Surface 83, !- Name + Wall, !- Surface Type + , !- Construction Name + {7aa26c07-5c82-497e-912e-f92ba7634ff2}, !- Space Name + Surface, !- Outside Boundary Condition + {3c1c004e-11be-4dd9-a32e-3fa495cea668}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.22044604925031e-15, -4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.22044604925031e-15, -4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 7.50227070253917, -4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 7.50227070253917, -4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {47618f62-cb8e-43c0-90a1-c2e7af0b543d}, !- Handle + Surface 84, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {7aa26c07-5c82-497e-912e-f92ba7634ff2}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.50227070253917, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 7.50227070253917, 47.0369670372916, 3.048, !- X,Y,Z Vertex 2 {m} + 2.22044604925031e-15, 47.0369670372916, 3.048, !- X,Y,Z Vertex 3 {m} + 2.22044604925031e-15, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {73fe9f7c-2403-40d6-aec2-e59fc36f740b}, !- Handle + Zone Outpatient PhysicalTherapy B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {c7f2fb80-e957-4cec-b10b-828f736ba0d5}, !- Zone Air Inlet Port List + {28cd5ec1-f60e-4dec-bcb6-4d9c37127ee6}, !- Zone Air Exhaust Port List + {e683685f-2eb4-4c6c-b365-9fa0cb4f1a24}, !- Zone Air Node Name + {b5f6fc4d-832f-44cd-912f-5f758051738c}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {3273ddc6-aca4-4995-8bfd-2d572d3cc18b}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {0132edde-5da2-4caf-8d85-7a668f7cd34c}, !- Handle + Zone Outpatient PhysicalTherapy B - Story ground Zone Air Node, !- Name + {e683685f-2eb4-4c6c-b365-9fa0cb4f1a24}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {e683685f-2eb4-4c6c-b365-9fa0cb4f1a24}, !- Handle + {73fe9f7c-2403-40d6-aec2-e59fc36f740b}, !- Source Object + 11, !- Outlet Port + {0132edde-5da2-4caf-8d85-7a668f7cd34c}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {c7f2fb80-e957-4cec-b10b-828f736ba0d5}, !- Handle + {73fe9f7c-2403-40d6-aec2-e59fc36f740b}, !- HVAC Component + {407e08a0-9893-4f49-9424-93435f39478c}, !- Port 1 + {dbf40658-4c8d-4be7-bf6d-e8afe2db2490}; !- Port 2 + +OS:PortList, + {28cd5ec1-f60e-4dec-bcb6-4d9c37127ee6}, !- Handle + {73fe9f7c-2403-40d6-aec2-e59fc36f740b}, !- HVAC Component + {967aa332-6756-4f09-9d4b-de03d7390805}; !- Port 1 + +OS:PortList, + {b5f6fc4d-832f-44cd-912f-5f758051738c}, !- Handle + {73fe9f7c-2403-40d6-aec2-e59fc36f740b}, !- HVAC Component + {d35d9e37-8c21-4f02-9644-86e396731f22}; !- Port 1 + +OS:Sizing:Zone, + {da89a90c-7cdf-4d8a-a829-2328f52bc8db}, !- Handle + {73fe9f7c-2403-40d6-aec2-e59fc36f740b}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {7f81a5a9-fcff-473c-96f4-505000a621ef}, !- Handle + Zone Outpatient PhysicalTherapy B - Story ground Zone HVAC Equipment List, !- Name + {73fe9f7c-2403-40d6-aec2-e59fc36f740b}, !- Thermal Zone + , !- Load Distribution Scheme + {6dee3b0c-dcd2-4b6e-b268-47d04567ef91}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {e54d9400-6e23-43f1-a61b-1accb240ca0a}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {2e188561-9a87-4ed8-a53b-6114a44cee5b}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {097e2571-18d0-4cea-8fe4-904450aeb273}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {a796833a-310e-44c7-8335-ceb1ff393f7c}, !- Handle + Outpatient PhysicalTherapy C - Story ground, !- Name + {2d20a7e4-e28e-45fe-b57b-4ce2154fb88e}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 3.15314636164293, !- X Origin {m} + 23.5184835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {9177a642-5fd8-4a20-92ae-95df910b52c7}; !- Thermal Zone Name + +OS:Surface, + {eb9ed6fc-c95d-4055-b734-e6d54e3839b5}, !- Handle + Surface 85, !- Name + Floor, !- Surface Type + {aa5cb3c0-45d9-4033-8141-c1e70bade78c}, !- Construction Name + {a796833a-310e-44c7-8335-ceb1ff393f7c}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.22044604925031e-15, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + 2.22044604925031e-15, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 7.50227070253917, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 7.50227070253917, 4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {045d1429-8575-45e8-85aa-ea776b40becd}, !- Handle + Surface 86, !- Name + Wall, !- Surface Type + , !- Construction Name + {a796833a-310e-44c7-8335-ceb1ff393f7c}, !- Space Name + Surface, !- Outside Boundary Condition + {c74b18d3-27b7-4d42-810e-65760a71a615}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ca17d978-6798-4754-9f28-f3e4964037b2}, !- Handle + Surface 87, !- Name + Wall, !- Surface Type + , !- Construction Name + {a796833a-310e-44c7-8335-ceb1ff393f7c}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.22044604925031e-15, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 7.50227070253917, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 7.50227070253917, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 2.22044604925031e-15, 4.57200000000005, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {97f11e35-887c-466d-aa0d-32bb53883669}, !- Handle + Surface 88, !- Name + Wall, !- Surface Type + , !- Construction Name + {a796833a-310e-44c7-8335-ceb1ff393f7c}, !- Space Name + Surface, !- Outside Boundary Condition + {68024a61-2d26-45c1-aa7a-9d8246cd2e10}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.50227070253917, 4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 7.50227070253917, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 7.50227070253917, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 7.50227070253917, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {cb64ba41-3f66-4482-a622-16195408d168}, !- Handle + Surface 89, !- Name + Wall, !- Surface Type + , !- Construction Name + {a796833a-310e-44c7-8335-ceb1ff393f7c}, !- Space Name + Surface, !- Outside Boundary Condition + {b45515af-ee80-4458-bd60-b20a6d13935b}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.22044604925031e-15, 4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.22044604925031e-15, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 7.50227070253917, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 7.50227070253917, 4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f6db3e4a-b749-4ef7-aa0f-0ac8f76ae8b6}, !- Handle + Surface 90, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {a796833a-310e-44c7-8335-ceb1ff393f7c}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 7.50227070253917, 4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 7.50227070253917, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 2.22044604925031e-15, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + 2.22044604925031e-15, 4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {9177a642-5fd8-4a20-92ae-95df910b52c7}, !- Handle + Zone Outpatient PhysicalTherapy C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {a54d3a77-8d6f-496f-9e3a-5c896caf6cfe}, !- Zone Air Inlet Port List + {a7847903-7b9d-4974-a1a5-f8efad2c4b11}, !- Zone Air Exhaust Port List + {1bee0aae-af0b-42b3-ad5c-f98621230c6d}, !- Zone Air Node Name + {616fad65-11bc-4412-aba3-e8e5d072a2bc}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {e2affc91-c642-4f99-b528-bf39e9c39591}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {a4ea3e11-5f5b-42a9-a3ce-f43c774846e9}, !- Handle + Zone Outpatient PhysicalTherapy C - Story ground Zone Air Node, !- Name + {1bee0aae-af0b-42b3-ad5c-f98621230c6d}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {1bee0aae-af0b-42b3-ad5c-f98621230c6d}, !- Handle + {9177a642-5fd8-4a20-92ae-95df910b52c7}, !- Source Object + 11, !- Outlet Port + {a4ea3e11-5f5b-42a9-a3ce-f43c774846e9}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {a54d3a77-8d6f-496f-9e3a-5c896caf6cfe}, !- Handle + {9177a642-5fd8-4a20-92ae-95df910b52c7}, !- HVAC Component + {8aa59322-2e0b-49cd-99b9-c5721129f461}, !- Port 1 + {6686ad30-3e5c-4602-a0b5-62bbadb1c2b2}; !- Port 2 + +OS:PortList, + {a7847903-7b9d-4974-a1a5-f8efad2c4b11}, !- Handle + {9177a642-5fd8-4a20-92ae-95df910b52c7}, !- HVAC Component + {eb5abadf-90a4-492d-ba37-51e24f3acad5}; !- Port 1 + +OS:PortList, + {616fad65-11bc-4412-aba3-e8e5d072a2bc}, !- Handle + {9177a642-5fd8-4a20-92ae-95df910b52c7}, !- HVAC Component + {579e0ffc-635c-4745-b802-aa0fb330be5f}; !- Port 1 + +OS:Sizing:Zone, + {6b29c0c9-a65d-4a23-9493-97c0dfdc0dee}, !- Handle + {9177a642-5fd8-4a20-92ae-95df910b52c7}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {c79ff293-32d7-42f9-a6a6-b10520f35855}, !- Handle + Zone Outpatient PhysicalTherapy C - Story ground Zone HVAC Equipment List, !- Name + {9177a642-5fd8-4a20-92ae-95df910b52c7}, !- Thermal Zone + , !- Load Distribution Scheme + {70d7d5f7-8bb8-43d9-87c2-9dc42e3a9971}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {b21813e6-6d12-426f-b733-c0e0287814d6}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {5c8d90d7-28e8-485f-b4d7-0afda0d60e8c}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {19ca35f0-7a78-4da4-b5ec-591cb3451933}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {bbe6cbc9-9f07-4c3e-9936-16e4ad1e39f7}, !- Handle + Outpatient Janitor A - Story ground, !- Name + {29b4ce0c-01c2-4306-a68e-383950b76114}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 10.6554170641821, !- X Origin {m} + -28.0904835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {7f64e0d2-6e50-487b-be00-043ec58df6ce}; !- Thermal Zone Name + +OS:Surface, + {38b9b7c9-2abe-4f31-b8f6-81b3bd4f4bfe}, !- Handle + Surface 91, !- Name + Floor, !- Surface Type + {ed69c328-c2c6-44d3-83fc-19b834227148}, !- Construction Name + {bbe6cbc9-9f07-4c3e-9936-16e4ad1e39f7}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.95399252334028e-14, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + 1.95399252334028e-14, 4.57199999999995, 0, !- X,Y,Z Vertex 2 {m} + 10.9123937491478, 4.57199999999995, 0, !- X,Y,Z Vertex 3 {m} + 10.9123937491478, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {04ad5a96-e034-49aa-9525-ef8e338b3751}, !- Handle + Surface 92, !- Name + Wall, !- Surface Type + , !- Construction Name + {bbe6cbc9-9f07-4c3e-9936-16e4ad1e39f7}, !- Space Name + Surface, !- Outside Boundary Condition + {959bf5ad-70c4-4054-8fe4-415fd170d39e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57199999999995, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.57199999999995, 0, !- X,Y,Z Vertex 2 {m} + 0, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {65143ad4-a245-421e-a663-9f58d72994d1}, !- Handle + Surface 93, !- Name + Wall, !- Surface Type + , !- Construction Name + {bbe6cbc9-9f07-4c3e-9936-16e4ad1e39f7}, !- Space Name + Surface, !- Outside Boundary Condition + {921364d3-2e5f-4555-a6e5-f7df30bd41cf}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 10.9123937491478, 4.57199999999995, 3.048, !- X,Y,Z Vertex 1 {m} + 10.9123937491478, 4.57199999999995, 0, !- X,Y,Z Vertex 2 {m} + 1.95399252334028e-14, 4.57199999999995, 0, !- X,Y,Z Vertex 3 {m} + 1.95399252334028e-14, 4.57199999999995, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a91a410b-1f92-49f2-9853-4bc57425ce0b}, !- Handle + Surface 94, !- Name + Wall, !- Surface Type + , !- Construction Name + {bbe6cbc9-9f07-4c3e-9936-16e4ad1e39f7}, !- Space Name + Surface, !- Outside Boundary Condition + {28d9c646-48fe-42f4-9774-f742aad11110}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 10.9123937491478, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 10.9123937491478, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 10.9123937491478, 4.57199999999995, 0, !- X,Y,Z Vertex 3 {m} + 10.9123937491478, 4.57199999999995, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4d986e31-f0c2-4f82-9b63-fa459aaacfad}, !- Handle + Surface 95, !- Name + Wall, !- Surface Type + , !- Construction Name + {bbe6cbc9-9f07-4c3e-9936-16e4ad1e39f7}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 10.9123937491478, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.95399252334028e-14, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 1.95399252334028e-14, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 10.9123937491478, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4f9aab12-35be-4303-bd5b-56192fe78518}, !- Handle + Surface 96, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {bbe6cbc9-9f07-4c3e-9936-16e4ad1e39f7}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 10.9123937491478, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 10.9123937491478, 4.57199999999995, 3.048, !- X,Y,Z Vertex 2 {m} + 1.95399252334028e-14, 4.57199999999995, 3.048, !- X,Y,Z Vertex 3 {m} + 1.95399252334028e-14, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {7f64e0d2-6e50-487b-be00-043ec58df6ce}, !- Handle + Zone Outpatient Janitor A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {6242fee2-5d68-433f-83e1-05853da6bc48}, !- Zone Air Inlet Port List + {26a2abbd-9a83-43ee-8fbc-f21fd4e9e401}, !- Zone Air Exhaust Port List + {f46e93be-1417-4f66-a4da-9565fe34f394}, !- Zone Air Node Name + {879a018a-f333-41fb-b0eb-4e2608115696}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {1ea00768-2d08-4b49-95ca-d13e45f9a7d5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {60b0da66-e8da-42e6-b5c8-9d944e855b52}, !- Handle + Zone Outpatient Janitor A - Story ground Zone Air Node, !- Name + {f46e93be-1417-4f66-a4da-9565fe34f394}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {f46e93be-1417-4f66-a4da-9565fe34f394}, !- Handle + {7f64e0d2-6e50-487b-be00-043ec58df6ce}, !- Source Object + 11, !- Outlet Port + {60b0da66-e8da-42e6-b5c8-9d944e855b52}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {6242fee2-5d68-433f-83e1-05853da6bc48}, !- Handle + {7f64e0d2-6e50-487b-be00-043ec58df6ce}, !- HVAC Component + {9dd24a58-2243-4133-a031-059045862710}; !- Port 1 + +OS:PortList, + {26a2abbd-9a83-43ee-8fbc-f21fd4e9e401}, !- Handle + {7f64e0d2-6e50-487b-be00-043ec58df6ce}, !- HVAC Component + {04db8e7d-182c-4ff3-9cd8-45d7f0337d81}; !- Port 1 + +OS:PortList, + {879a018a-f333-41fb-b0eb-4e2608115696}, !- Handle + {7f64e0d2-6e50-487b-be00-043ec58df6ce}; !- HVAC Component + +OS:Sizing:Zone, + {c1a44b08-4e59-4f24-87c8-de286ec2d1c4}, !- Handle + {7f64e0d2-6e50-487b-be00-043ec58df6ce}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {1fcce759-5482-4ce9-8b2c-7ad06596e48e}, !- Handle + Zone Outpatient Janitor A - Story ground Zone HVAC Equipment List, !- Name + {7f64e0d2-6e50-487b-be00-043ec58df6ce}, !- Thermal Zone + , !- Load Distribution Scheme + {f597979b-d238-4dab-bd27-462e8322d000}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + +OS:Space, + {e908186f-5c13-4392-ac0c-90cfbe440a78}, !- Handle + Outpatient Janitor B - Story ground, !- Name + {29b4ce0c-01c2-4306-a68e-383950b76114}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 10.6554170641821, !- X Origin {m} + -23.5184835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {ef6bd1d4-1472-4e46-8e6b-f750be363bed}; !- Thermal Zone Name + +OS:Surface, + {49d87037-a1df-4b72-bc02-372e1cee85a4}, !- Handle + Surface 97, !- Name + Floor, !- Surface Type + {a9b5d8a0-9289-4682-b62e-6da9334d5e6b}, !- Construction Name + {e908186f-5c13-4392-ac0c-90cfbe440a78}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.95399252334028e-14, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + 1.95399252334028e-14, 47.0369670372916, 0, !- X,Y,Z Vertex 2 {m} + 10.9123937491478, 47.0369670372916, 0, !- X,Y,Z Vertex 3 {m} + 10.9123937491478, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fd83eafc-1dd6-4e13-8378-a7a5723b643c}, !- Handle + Surface 98, !- Name + Wall, !- Surface Type + , !- Construction Name + {e908186f-5c13-4392-ac0c-90cfbe440a78}, !- Space Name + Surface, !- Outside Boundary Condition + {aa6b978b-641c-4f6a-a04a-6e99c4c772bc}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 47.0369670372916, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 47.0369670372916, 0, !- X,Y,Z Vertex 2 {m} + 0, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {c2daf85b-b2b9-4b6e-ab65-b8d0fbd6271d}, !- Handle + Surface 99, !- Name + Wall, !- Surface Type + , !- Construction Name + {e908186f-5c13-4392-ac0c-90cfbe440a78}, !- Space Name + Surface, !- Outside Boundary Condition + {9018e325-5c30-401b-b3f6-770c00860f17}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 10.9123937491478, 47.0369670372916, 3.048, !- X,Y,Z Vertex 1 {m} + 10.9123937491478, 47.0369670372916, 0, !- X,Y,Z Vertex 2 {m} + 1.95399252334028e-14, 47.0369670372916, 0, !- X,Y,Z Vertex 3 {m} + 1.95399252334028e-14, 47.0369670372916, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {978c48ae-7eea-4b97-8cb1-2d963bfc581f}, !- Handle + Surface 100, !- Name + Wall, !- Surface Type + , !- Construction Name + {e908186f-5c13-4392-ac0c-90cfbe440a78}, !- Space Name + Surface, !- Outside Boundary Condition + {ae3d97ea-2fc5-4a89-a72c-f828bfca9269}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 10.9123937491478, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 10.9123937491478, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 10.9123937491478, 47.0369670372916, 0, !- X,Y,Z Vertex 3 {m} + 10.9123937491478, 47.0369670372916, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {921364d3-2e5f-4555-a6e5-f7df30bd41cf}, !- Handle + Surface 101, !- Name + Wall, !- Surface Type + , !- Construction Name + {e908186f-5c13-4392-ac0c-90cfbe440a78}, !- Space Name + Surface, !- Outside Boundary Condition + {65143ad4-a245-421e-a663-9f58d72994d1}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.95399252334028e-14, -4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.95399252334028e-14, -4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 10.9123937491478, -4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 10.9123937491478, -4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5782afba-6c4f-4764-a900-51c8fb320d02}, !- Handle + Surface 102, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {e908186f-5c13-4392-ac0c-90cfbe440a78}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 10.9123937491478, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 10.9123937491478, 47.0369670372916, 3.048, !- X,Y,Z Vertex 2 {m} + 1.95399252334028e-14, 47.0369670372916, 3.048, !- X,Y,Z Vertex 3 {m} + 1.95399252334028e-14, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {ef6bd1d4-1472-4e46-8e6b-f750be363bed}, !- Handle + Zone Outpatient Janitor B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {4d847b15-9e52-4fdf-9cb0-5b36c4486115}, !- Zone Air Inlet Port List + {6fd73158-61db-4808-bd9c-759a6d80a3f0}, !- Zone Air Exhaust Port List + {5187d1cf-6824-42ea-867d-365268886fd0}, !- Zone Air Node Name + {380c223f-5414-4c8a-bc14-4c0825c1e00c}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {ee962f33-5f10-4389-8559-004a6e349c16}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {b1b626f7-4916-4e8e-9b79-29a92d40d32a}, !- Handle + Zone Outpatient Janitor B - Story ground Zone Air Node, !- Name + {5187d1cf-6824-42ea-867d-365268886fd0}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {5187d1cf-6824-42ea-867d-365268886fd0}, !- Handle + {ef6bd1d4-1472-4e46-8e6b-f750be363bed}, !- Source Object + 11, !- Outlet Port + {b1b626f7-4916-4e8e-9b79-29a92d40d32a}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {4d847b15-9e52-4fdf-9cb0-5b36c4486115}, !- Handle + {ef6bd1d4-1472-4e46-8e6b-f750be363bed}, !- HVAC Component + {10b3e482-89d3-4bec-a315-0fcd65bc7348}; !- Port 1 + +OS:PortList, + {6fd73158-61db-4808-bd9c-759a6d80a3f0}, !- Handle + {ef6bd1d4-1472-4e46-8e6b-f750be363bed}, !- HVAC Component + {7b4f2d99-9746-45b6-8db7-ea9612b00daa}; !- Port 1 + +OS:PortList, + {380c223f-5414-4c8a-bc14-4c0825c1e00c}, !- Handle + {ef6bd1d4-1472-4e46-8e6b-f750be363bed}; !- HVAC Component + +OS:Sizing:Zone, + {563a1a61-c81d-4ad8-9dd4-1f36f2353175}, !- Handle + {ef6bd1d4-1472-4e46-8e6b-f750be363bed}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {4d54ffe2-2af2-4532-82eb-dc6d9a8022bc}, !- Handle + Zone Outpatient Janitor B - Story ground Zone HVAC Equipment List, !- Name + {ef6bd1d4-1472-4e46-8e6b-f750be363bed}, !- Thermal Zone + , !- Load Distribution Scheme + {07b088ca-b162-4092-bbe4-e435394f34de}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + +OS:Space, + {bfeeb8f8-e1f4-4a9d-a185-5767302ed53b}, !- Handle + Outpatient Janitor C - Story ground, !- Name + {29b4ce0c-01c2-4306-a68e-383950b76114}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 10.6554170641821, !- X Origin {m} + 23.5184835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {6428960e-b254-4cab-abe0-a504188f1adb}; !- Thermal Zone Name + +OS:Surface, + {28b906b3-6a01-4353-8afc-7a57df343cba}, !- Handle + Surface 103, !- Name + Floor, !- Surface Type + {ed69c328-c2c6-44d3-83fc-19b834227148}, !- Construction Name + {bfeeb8f8-e1f4-4a9d-a185-5767302ed53b}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.95399252334028e-14, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + 1.95399252334028e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 10.9123937491478, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 10.9123937491478, 4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {68024a61-2d26-45c1-aa7a-9d8246cd2e10}, !- Handle + Surface 104, !- Name + Wall, !- Surface Type + , !- Construction Name + {bfeeb8f8-e1f4-4a9d-a185-5767302ed53b}, !- Space Name + Surface, !- Outside Boundary Condition + {97f11e35-887c-466d-aa0d-32bb53883669}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0c85cb1c-df82-4457-8b9a-c3ab74544422}, !- Handle + Surface 105, !- Name + Wall, !- Surface Type + , !- Construction Name + {bfeeb8f8-e1f4-4a9d-a185-5767302ed53b}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.95399252334028e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 10.9123937491478, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 10.9123937491478, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 1.95399252334028e-14, 4.57200000000005, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d1d8e821-d0f5-4db7-8ad1-e28236f4f1fa}, !- Handle + Surface 106, !- Name + Wall, !- Surface Type + , !- Construction Name + {bfeeb8f8-e1f4-4a9d-a185-5767302ed53b}, !- Space Name + Surface, !- Outside Boundary Condition + {60275ce0-2585-4119-8040-66bd42efc83a}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 10.9123937491478, 4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 10.9123937491478, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 10.9123937491478, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 10.9123937491478, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9018e325-5c30-401b-b3f6-770c00860f17}, !- Handle + Surface 107, !- Name + Wall, !- Surface Type + , !- Construction Name + {bfeeb8f8-e1f4-4a9d-a185-5767302ed53b}, !- Space Name + Surface, !- Outside Boundary Condition + {c2daf85b-b2b9-4b6e-ab65-b8d0fbd6271d}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.95399252334028e-14, 4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.95399252334028e-14, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 10.9123937491478, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 10.9123937491478, 4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {71e6eb21-5527-432f-a780-479f6d5593ef}, !- Handle + Surface 108, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {bfeeb8f8-e1f4-4a9d-a185-5767302ed53b}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 10.9123937491478, 4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 10.9123937491478, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 1.95399252334028e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + 1.95399252334028e-14, 4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {6428960e-b254-4cab-abe0-a504188f1adb}, !- Handle + Zone Outpatient Janitor C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {a9203c58-4318-4f4f-9041-773060bfe7d5}, !- Zone Air Inlet Port List + {8486af39-77ba-4c13-8cb6-a1a3d702143e}, !- Zone Air Exhaust Port List + {7a7721b0-4e9f-46d3-83f7-fdac53d03d6e}, !- Zone Air Node Name + {539ddc2e-cd5b-4f48-911a-3e1e5cd0a880}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {9a9c9df1-24f3-47ac-8a5d-2a141c074a3b}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {5c77bda4-8891-4fa6-9d28-7ae1267a4e17}, !- Handle + Zone Outpatient Janitor C - Story ground Zone Air Node, !- Name + {7a7721b0-4e9f-46d3-83f7-fdac53d03d6e}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {7a7721b0-4e9f-46d3-83f7-fdac53d03d6e}, !- Handle + {6428960e-b254-4cab-abe0-a504188f1adb}, !- Source Object + 11, !- Outlet Port + {5c77bda4-8891-4fa6-9d28-7ae1267a4e17}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {a9203c58-4318-4f4f-9041-773060bfe7d5}, !- Handle + {6428960e-b254-4cab-abe0-a504188f1adb}, !- HVAC Component + {c6edd939-9cc9-4022-b2e2-adff4a32e215}; !- Port 1 + +OS:PortList, + {8486af39-77ba-4c13-8cb6-a1a3d702143e}, !- Handle + {6428960e-b254-4cab-abe0-a504188f1adb}, !- HVAC Component + {8ae66bc0-c848-4ef8-a2d0-a1dbb41d9bda}; !- Port 1 + +OS:PortList, + {539ddc2e-cd5b-4f48-911a-3e1e5cd0a880}, !- Handle + {6428960e-b254-4cab-abe0-a504188f1adb}; !- HVAC Component + +OS:Sizing:Zone, + {1ee42a88-3fc7-46d0-8b84-00ba8c165af1}, !- Handle + {6428960e-b254-4cab-abe0-a504188f1adb}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {9a7d1b86-e201-41c4-9bee-def54dbf3185}, !- Handle + Zone Outpatient Janitor C - Story ground Zone HVAC Equipment List, !- Name + {6428960e-b254-4cab-abe0-a504188f1adb}, !- Thermal Zone + , !- Load Distribution Scheme + {b1b0f052-29f0-4ee7-80d8-9c7681626bd9}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + +OS:Space, + {0bd88152-87f9-4c16-b73d-8fcf0b786637}, !- Handle + Outpatient Office A - Story ground, !- Name + {c886771f-d399-4984-b712-aefe78a14e4c}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 21.5678108133299, !- X Origin {m} + -28.0904835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {2fbf6e5a-0d26-4f87-a8c3-6578c47e3f71}; !- Thermal Zone Name + +OS:Surface, + {a4840094-1ade-46ee-9f1f-c91426031ce7}, !- Handle + Surface 109, !- Name + Floor, !- Surface Type + {567675aa-35fa-4e67-b1fa-062d836d96a2}, !- Construction Name + {0bd88152-87f9-4c16-b73d-8fcf0b786637}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -3.90798504668055e-14, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + -3.90798504668055e-14, 4.57199999999995, 0, !- X,Y,Z Vertex 2 {m} + 25.1123091866701, 4.57199999999995, 0, !- X,Y,Z Vertex 3 {m} + 25.1123091866701, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {28d9c646-48fe-42f4-9774-f742aad11110}, !- Handle + Surface 110, !- Name + Wall, !- Surface Type + , !- Construction Name + {0bd88152-87f9-4c16-b73d-8fcf0b786637}, !- Space Name + Surface, !- Outside Boundary Condition + {a91a410b-1f92-49f2-9853-4bc57425ce0b}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57199999999995, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.57199999999995, 0, !- X,Y,Z Vertex 2 {m} + 0, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {95e170b3-d38b-40f2-8bb7-3594b831e1f8}, !- Handle + Surface 111, !- Name + Wall, !- Surface Type + , !- Construction Name + {0bd88152-87f9-4c16-b73d-8fcf0b786637}, !- Space Name + Surface, !- Outside Boundary Condition + {d8bdaf41-1395-4994-bea5-8d9f8f84ca78}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 25.1123091866701, 4.57199999999995, 3.048, !- X,Y,Z Vertex 1 {m} + 25.1123091866701, 4.57199999999995, 0, !- X,Y,Z Vertex 2 {m} + -3.90798504668055e-14, 4.57199999999995, 0, !- X,Y,Z Vertex 3 {m} + -3.90798504668055e-14, 4.57199999999995, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {57b4175b-5978-40ac-b174-a4b9826fb1ab}, !- Handle + Surface 112, !- Name + Wall, !- Surface Type + , !- Construction Name + {0bd88152-87f9-4c16-b73d-8fcf0b786637}, !- Space Name + Surface, !- Outside Boundary Condition + {5646b17d-efcc-48a9-ae42-c91cd7a6edf9}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 25.1123091866701, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 25.1123091866701, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 25.1123091866701, 4.57199999999995, 0, !- X,Y,Z Vertex 3 {m} + 25.1123091866701, 4.57199999999995, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2d842088-5ecd-47e8-bbe5-599ca1d2df32}, !- Handle + Surface 113, !- Name + Wall, !- Surface Type + , !- Construction Name + {0bd88152-87f9-4c16-b73d-8fcf0b786637}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 25.1123091866701, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -3.90798504668055e-14, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 2 {m} + -3.90798504668055e-14, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 25.1123091866701, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {166cbe07-0771-402f-8772-81e646b331bd}, !- Handle + Surface 114, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {0bd88152-87f9-4c16-b73d-8fcf0b786637}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 25.1123091866701, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 25.1123091866701, 4.57199999999995, 3.048, !- X,Y,Z Vertex 2 {m} + -3.90798504668055e-14, 4.57199999999995, 3.048, !- X,Y,Z Vertex 3 {m} + -3.90798504668055e-14, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {2fbf6e5a-0d26-4f87-a8c3-6578c47e3f71}, !- Handle + Zone Outpatient Office A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {76bdbd14-f997-4e4b-b838-26e2754e84df}, !- Zone Air Inlet Port List + {c0001b55-2c3f-4513-af13-d20b28744404}, !- Zone Air Exhaust Port List + {1a1af3db-9840-4e50-9609-8d1530461ab1}, !- Zone Air Node Name + {7b98ced2-d40a-4798-bd83-7f4f47857a24}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {3fa5ff83-c11d-4f32-8793-738c947ee340}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {0b70e4d7-4a6c-4a98-bb38-309ced5e8ab4}, !- Handle + Zone Outpatient Office A - Story ground Zone Air Node, !- Name + {1a1af3db-9840-4e50-9609-8d1530461ab1}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {1a1af3db-9840-4e50-9609-8d1530461ab1}, !- Handle + {2fbf6e5a-0d26-4f87-a8c3-6578c47e3f71}, !- Source Object + 11, !- Outlet Port + {0b70e4d7-4a6c-4a98-bb38-309ced5e8ab4}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {76bdbd14-f997-4e4b-b838-26e2754e84df}, !- Handle + {2fbf6e5a-0d26-4f87-a8c3-6578c47e3f71}, !- HVAC Component + {bfbdeb6f-0739-4d94-8738-6f6c118c53f9}, !- Port 1 + {5b025d41-8d9b-48c7-9c5a-6af5e1221d77}; !- Port 2 + +OS:PortList, + {c0001b55-2c3f-4513-af13-d20b28744404}, !- Handle + {2fbf6e5a-0d26-4f87-a8c3-6578c47e3f71}, !- HVAC Component + {a7a0ce68-e1ac-4b7d-a314-e1b9daa83d4f}; !- Port 1 + +OS:PortList, + {7b98ced2-d40a-4798-bd83-7f4f47857a24}, !- Handle + {2fbf6e5a-0d26-4f87-a8c3-6578c47e3f71}, !- HVAC Component + {efc9499a-9ceb-4ddf-9efa-fcc3f7e1ce05}; !- Port 1 + +OS:Sizing:Zone, + {c17465fa-cc0e-490a-9417-a93da2fbaa95}, !- Handle + {2fbf6e5a-0d26-4f87-a8c3-6578c47e3f71}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {d3c28a66-b0b9-43c7-ab30-b99531d00eb0}, !- Handle + Zone Outpatient Office A - Story ground Zone HVAC Equipment List, !- Name + {2fbf6e5a-0d26-4f87-a8c3-6578c47e3f71}, !- Thermal Zone + , !- Load Distribution Scheme + {032599c3-e9ec-46a2-9260-23d731bc5514}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {ab4e6319-39d0-4ace-97fb-50c6eb3be11a}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {f42f7dbd-d607-49d9-a1da-b773e5657f22}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {3862a609-4e74-4e98-9061-25768b7f8102}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {5025d250-982e-46c8-bf73-96bc06bac6fe}, !- Handle + Outpatient Office B - Story ground, !- Name + {c886771f-d399-4984-b712-aefe78a14e4c}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 21.5678108133299, !- X Origin {m} + -23.5184835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {a33335f8-c685-4da2-9742-17ed0fce6aae}; !- Thermal Zone Name + +OS:Surface, + {132f4b0e-ac6e-49f0-91c6-ef01980695a1}, !- Handle + Surface 115, !- Name + Floor, !- Surface Type + {c8f37362-a1c9-4765-a5e0-b3715ef2b8b4}, !- Construction Name + {5025d250-982e-46c8-bf73-96bc06bac6fe}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -3.90798504668055e-14, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + -3.90798504668055e-14, 47.0369670372916, 0, !- X,Y,Z Vertex 2 {m} + 25.1123091866701, 47.0369670372916, 0, !- X,Y,Z Vertex 3 {m} + 25.1123091866701, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ae3d97ea-2fc5-4a89-a72c-f828bfca9269}, !- Handle + Surface 116, !- Name + Wall, !- Surface Type + , !- Construction Name + {5025d250-982e-46c8-bf73-96bc06bac6fe}, !- Space Name + Surface, !- Outside Boundary Condition + {978c48ae-7eea-4b97-8cb1-2d963bfc581f}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 47.0369670372916, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 47.0369670372916, 0, !- X,Y,Z Vertex 2 {m} + 0, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2da56492-244e-4093-b362-4e18fd033419}, !- Handle + Surface 117, !- Name + Wall, !- Surface Type + , !- Construction Name + {5025d250-982e-46c8-bf73-96bc06bac6fe}, !- Space Name + Surface, !- Outside Boundary Condition + {ab1ae457-865d-405c-bbc4-fcf2fc6fee76}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 25.1123091866701, 47.0369670372916, 3.048, !- X,Y,Z Vertex 1 {m} + 25.1123091866701, 47.0369670372916, 0, !- X,Y,Z Vertex 2 {m} + -3.90798504668055e-14, 47.0369670372916, 0, !- X,Y,Z Vertex 3 {m} + -3.90798504668055e-14, 47.0369670372916, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {466a3e82-f760-4cb0-bc94-16313d3d58ff}, !- Handle + Surface 118, !- Name + Wall, !- Surface Type + , !- Construction Name + {5025d250-982e-46c8-bf73-96bc06bac6fe}, !- Space Name + Surface, !- Outside Boundary Condition + {24714a54-2711-4353-8668-11e8f5de07a3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 25.1123091866701, -4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 25.1123091866701, -4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 25.1123091866701, 47.0369670372916, 0, !- X,Y,Z Vertex 3 {m} + 25.1123091866701, 47.0369670372916, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d8bdaf41-1395-4994-bea5-8d9f8f84ca78}, !- Handle + Surface 119, !- Name + Wall, !- Surface Type + , !- Construction Name + {5025d250-982e-46c8-bf73-96bc06bac6fe}, !- Space Name + Surface, !- Outside Boundary Condition + {95e170b3-d38b-40f2-8bb7-3594b831e1f8}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -3.90798504668055e-14, -4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -3.90798504668055e-14, -4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 25.1123091866701, -4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 25.1123091866701, -4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ea6fe288-6a71-4c3d-b323-41651a92b271}, !- Handle + Surface 120, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {5025d250-982e-46c8-bf73-96bc06bac6fe}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 25.1123091866701, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 25.1123091866701, 47.0369670372916, 3.048, !- X,Y,Z Vertex 2 {m} + -3.90798504668055e-14, 47.0369670372916, 3.048, !- X,Y,Z Vertex 3 {m} + -3.90798504668055e-14, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {a33335f8-c685-4da2-9742-17ed0fce6aae}, !- Handle + Zone Outpatient Office B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {208d0c52-7ad9-4d73-92f1-002756d087ab}, !- Zone Air Inlet Port List + {d77f68d4-03b6-4d4e-8047-3679c346a265}, !- Zone Air Exhaust Port List + {5f5c63c0-3693-4300-b537-6199f18ba123}, !- Zone Air Node Name + {4bbc6698-7570-4b96-a6ce-7c583692078c}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {dd37fc26-9974-4980-a267-092e446e5fe9}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {11e4d63c-875e-406c-896c-2382d7a14567}, !- Handle + Zone Outpatient Office B - Story ground Zone Air Node, !- Name + {5f5c63c0-3693-4300-b537-6199f18ba123}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {5f5c63c0-3693-4300-b537-6199f18ba123}, !- Handle + {a33335f8-c685-4da2-9742-17ed0fce6aae}, !- Source Object + 11, !- Outlet Port + {11e4d63c-875e-406c-896c-2382d7a14567}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {208d0c52-7ad9-4d73-92f1-002756d087ab}, !- Handle + {a33335f8-c685-4da2-9742-17ed0fce6aae}, !- HVAC Component + {0a8afd0e-7c38-42c6-b581-01f6bcba9550}, !- Port 1 + {b44b7006-5faa-4afa-a623-38960afe9006}; !- Port 2 + +OS:PortList, + {d77f68d4-03b6-4d4e-8047-3679c346a265}, !- Handle + {a33335f8-c685-4da2-9742-17ed0fce6aae}, !- HVAC Component + {83c8242c-7eac-4c6b-b038-e76a55649982}; !- Port 1 + +OS:PortList, + {4bbc6698-7570-4b96-a6ce-7c583692078c}, !- Handle + {a33335f8-c685-4da2-9742-17ed0fce6aae}, !- HVAC Component + {3c4f45e2-dfe0-4c11-bc4c-085618aebbcf}; !- Port 1 + +OS:Sizing:Zone, + {cf6d6067-5eee-446c-b4e6-5b1da7f52740}, !- Handle + {a33335f8-c685-4da2-9742-17ed0fce6aae}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {dcd4e3ff-dcaa-40e3-a57a-916cdf63e424}, !- Handle + Zone Outpatient Office B - Story ground Zone HVAC Equipment List, !- Name + {a33335f8-c685-4da2-9742-17ed0fce6aae}, !- Thermal Zone + , !- Load Distribution Scheme + {0c517aae-b41f-4730-9a47-186446942cd9}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {f1865321-c648-4348-85f0-f65eef5f3298}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {172caa3d-7f02-4735-8eee-f5019be54418}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {5c763ad7-3e3b-4d3f-8799-34d573876ac6}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {9b54d120-a67e-4b54-80fb-adbb35e790c9}, !- Handle + Outpatient Office C - Story ground, !- Name + {c886771f-d399-4984-b712-aefe78a14e4c}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 21.5678108133299, !- X Origin {m} + 23.5184835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {5ba8b84c-c321-48ba-b548-781af37c523f}; !- Thermal Zone Name + +OS:Surface, + {e52f0c61-edf5-4b63-9bf3-5e56dd3f98b1}, !- Handle + Surface 121, !- Name + Floor, !- Surface Type + {567675aa-35fa-4e67-b1fa-062d836d96a2}, !- Construction Name + {9b54d120-a67e-4b54-80fb-adbb35e790c9}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -3.90798504668055e-14, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + -3.90798504668055e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 25.1123091866701, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 25.1123091866701, 4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {60275ce0-2585-4119-8040-66bd42efc83a}, !- Handle + Surface 122, !- Name + Wall, !- Surface Type + , !- Construction Name + {9b54d120-a67e-4b54-80fb-adbb35e790c9}, !- Space Name + Surface, !- Outside Boundary Condition + {d1d8e821-d0f5-4db7-8ad1-e28236f4f1fa}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {584d356b-6834-4c9a-9722-d2c1c45b5080}, !- Handle + Surface 123, !- Name + Wall, !- Surface Type + , !- Construction Name + {9b54d120-a67e-4b54-80fb-adbb35e790c9}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -3.90798504668055e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 25.1123091866701, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 25.1123091866701, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + -3.90798504668055e-14, 4.57200000000005, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a5f817b8-8b40-4bb5-a4df-2689b73c529a}, !- Handle + Surface 124, !- Name + Wall, !- Surface Type + , !- Construction Name + {9b54d120-a67e-4b54-80fb-adbb35e790c9}, !- Space Name + Surface, !- Outside Boundary Condition + {814e1997-a4fb-40b5-bb92-8db40bebfc1e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 25.1123091866701, 4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 25.1123091866701, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 25.1123091866701, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 25.1123091866701, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ab1ae457-865d-405c-bbc4-fcf2fc6fee76}, !- Handle + Surface 125, !- Name + Wall, !- Surface Type + , !- Construction Name + {9b54d120-a67e-4b54-80fb-adbb35e790c9}, !- Space Name + Surface, !- Outside Boundary Condition + {2da56492-244e-4093-b362-4e18fd033419}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -3.90798504668055e-14, 4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -3.90798504668055e-14, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 25.1123091866701, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 25.1123091866701, 4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0918dffc-218a-4406-91cf-5de07aed8d8f}, !- Handle + Surface 126, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {9b54d120-a67e-4b54-80fb-adbb35e790c9}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 25.1123091866701, 4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 25.1123091866701, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + -3.90798504668055e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + -3.90798504668055e-14, 4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {5ba8b84c-c321-48ba-b548-781af37c523f}, !- Handle + Zone Outpatient Office C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {a7d906cb-af3a-46b7-8747-2b5a94f9749d}, !- Zone Air Inlet Port List + {189fa751-100d-42c2-a03c-fa54dea9bd37}, !- Zone Air Exhaust Port List + {8078c5b2-78ee-4613-855f-da066a63c9d6}, !- Zone Air Node Name + {aec48e9b-d086-46c6-b4eb-8232cb61cf40}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {8b6f2d4c-6305-4496-8aab-c50276e060b6}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {1f886abb-0826-4ebc-8a76-920e486ec7c2}, !- Handle + Zone Outpatient Office C - Story ground Zone Air Node, !- Name + {8078c5b2-78ee-4613-855f-da066a63c9d6}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {8078c5b2-78ee-4613-855f-da066a63c9d6}, !- Handle + {5ba8b84c-c321-48ba-b548-781af37c523f}, !- Source Object + 11, !- Outlet Port + {1f886abb-0826-4ebc-8a76-920e486ec7c2}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {a7d906cb-af3a-46b7-8747-2b5a94f9749d}, !- Handle + {5ba8b84c-c321-48ba-b548-781af37c523f}, !- HVAC Component + {f1804dad-4757-4307-af31-5c027ad3ffba}, !- Port 1 + {f7180b4c-1d8b-40bc-88e8-f6d42153adad}; !- Port 2 + +OS:PortList, + {189fa751-100d-42c2-a03c-fa54dea9bd37}, !- Handle + {5ba8b84c-c321-48ba-b548-781af37c523f}, !- HVAC Component + {9e80aa65-5038-479d-84a8-69ace6666d17}; !- Port 1 + +OS:PortList, + {aec48e9b-d086-46c6-b4eb-8232cb61cf40}, !- Handle + {5ba8b84c-c321-48ba-b548-781af37c523f}, !- HVAC Component + {e51800c4-a358-47ab-84fa-e5a6f30e4a4e}; !- Port 1 + +OS:Sizing:Zone, + {7e542ddf-61ef-4502-b5d9-6e8f3f78ce32}, !- Handle + {5ba8b84c-c321-48ba-b548-781af37c523f}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {31a4599f-0e05-4cce-8da7-83c04b5ab1a9}, !- Handle + Zone Outpatient Office C - Story ground Zone HVAC Equipment List, !- Name + {5ba8b84c-c321-48ba-b548-781af37c523f}, !- Thermal Zone + , !- Load Distribution Scheme + {7f402a58-8478-4cb0-9591-0dc322db9706}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {a8b99cf4-565f-4bd2-90eb-017bae67a0d8}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {fc421e31-f2ac-4a51-88c2-28338fb221d9}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {b58ed1fa-a364-4072-b19d-f818177674b6}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {af46d1c0-0c7e-4549-a3ee-c23fe621f94a}, !- Handle + Outpatient Office A end_b - Story ground, !- Name + {c886771f-d399-4984-b712-aefe78a14e4c}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 46.68012, !- X Origin {m} + -28.0904835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {2c177008-a549-4a71-bbcf-7a3101a3576d}; !- Thermal Zone Name + +OS:Surface, + {87367fb0-bebf-4e68-9c28-dedfb0369b7e}, !- Handle + Surface 127, !- Name + Floor, !- Surface Type + {2fb09dd5-3610-4701-9a0a-f28271127aea}, !- Construction Name + {af46d1c0-0c7e-4549-a3ee-c23fe621f94a}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + 0, 4.57199999999995, 0, !- X,Y,Z Vertex 2 {m} + 4.572, 4.57199999999995, 0, !- X,Y,Z Vertex 3 {m} + 4.572, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5646b17d-efcc-48a9-ae42-c91cd7a6edf9}, !- Handle + Surface 128, !- Name + Wall, !- Surface Type + , !- Construction Name + {af46d1c0-0c7e-4549-a3ee-c23fe621f94a}, !- Space Name + Surface, !- Outside Boundary Condition + {57b4175b-5978-40ac-b174-a4b9826fb1ab}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57199999999995, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.57199999999995, 0, !- X,Y,Z Vertex 2 {m} + 0, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {43569e74-2c2e-434e-823c-0a8a09fffa29}, !- Handle + Surface 129, !- Name + Wall, !- Surface Type + , !- Construction Name + {af46d1c0-0c7e-4549-a3ee-c23fe621f94a}, !- Space Name + Surface, !- Outside Boundary Condition + {f375839a-a5b1-4312-ab09-b504f37c53e2}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.572, 4.57199999999995, 3.048, !- X,Y,Z Vertex 1 {m} + 4.572, 4.57199999999995, 0, !- X,Y,Z Vertex 2 {m} + 0, 4.57199999999995, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.57199999999995, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {e6f6c906-5cea-4351-b898-eba478d8fe36}, !- Handle + Surface 130, !- Name + Wall, !- Surface Type + , !- Construction Name + {af46d1c0-0c7e-4549-a3ee-c23fe621f94a}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.572, 4.57199999999995, 3.048, !- X,Y,Z Vertex 1 {m} + 4.572, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 4.572, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 4.572, 4.57199999999995, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {899291ac-22d2-40d5-98d8-6fbd1db95a28}, !- Handle + Surface 131, !- Name + Wall, !- Surface Type + , !- Construction Name + {af46d1c0-0c7e-4549-a3ee-c23fe621f94a}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.572, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 0, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 4.572, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {34d758f3-8a3f-4a58-93b7-5d4918372f06}, !- Handle + Surface 132, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {af46d1c0-0c7e-4549-a3ee-c23fe621f94a}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.572, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 4.572, 4.57199999999995, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 4.57199999999995, 3.048, !- X,Y,Z Vertex 3 {m} + 0, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {2c177008-a549-4a71-bbcf-7a3101a3576d}, !- Handle + Zone Outpatient Office A end_b - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {353d1314-348a-4017-8364-5394665d5de2}, !- Zone Air Inlet Port List + {e189199b-0f63-42ac-aa57-12a486cebf85}, !- Zone Air Exhaust Port List + {7a1e59be-3851-4b82-bb4d-c0d4776891cd}, !- Zone Air Node Name + {fbad3230-5825-4d11-afa3-165d2ab6006b}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {777ce897-4abd-4f8d-8466-7d215dad31fc}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {59eb180c-e6e2-4f27-a0e5-4309507d3ea2}, !- Handle + Zone Outpatient Office A end_b - Story ground Zone Air Node, !- Name + {7a1e59be-3851-4b82-bb4d-c0d4776891cd}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {7a1e59be-3851-4b82-bb4d-c0d4776891cd}, !- Handle + {2c177008-a549-4a71-bbcf-7a3101a3576d}, !- Source Object + 11, !- Outlet Port + {59eb180c-e6e2-4f27-a0e5-4309507d3ea2}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {353d1314-348a-4017-8364-5394665d5de2}, !- Handle + {2c177008-a549-4a71-bbcf-7a3101a3576d}, !- HVAC Component + {1fc93a93-86ec-4dc0-b9be-b1d2ca3656c2}, !- Port 1 + {d1fda61f-ea6f-453d-a07c-5cc645d4cd1a}; !- Port 2 + +OS:PortList, + {e189199b-0f63-42ac-aa57-12a486cebf85}, !- Handle + {2c177008-a549-4a71-bbcf-7a3101a3576d}, !- HVAC Component + {cdc5c814-b7e6-4859-965c-399df6ff0fd6}; !- Port 1 + +OS:PortList, + {fbad3230-5825-4d11-afa3-165d2ab6006b}, !- Handle + {2c177008-a549-4a71-bbcf-7a3101a3576d}, !- HVAC Component + {28e997c7-a5d1-492b-81af-bd1b785a5343}; !- Port 1 + +OS:Sizing:Zone, + {b479af52-6ecd-4bf3-9600-67a2805b6fef}, !- Handle + {2c177008-a549-4a71-bbcf-7a3101a3576d}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {e714a6f6-d983-4886-90f4-cec93f829836}, !- Handle + Zone Outpatient Office A end_b - Story ground Zone HVAC Equipment List, !- Name + {2c177008-a549-4a71-bbcf-7a3101a3576d}, !- Thermal Zone + , !- Load Distribution Scheme + {43f89312-2811-4778-8e87-b94d065e67bb}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {8fa03876-889c-4826-9820-39f343196ff8}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {3e4cd851-3419-42e1-9cc2-7e969cf64e88}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {3a46f3d8-daa4-456a-9498-24087e51a117}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {46e7b4a8-20f3-4bc8-ab65-3899bd8d2932}, !- Handle + Outpatient Office B end_b - Story ground, !- Name + {c886771f-d399-4984-b712-aefe78a14e4c}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 46.68012, !- X Origin {m} + -23.5184835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {ed316356-0f8e-4167-a5a3-42c5e8316d81}; !- Thermal Zone Name + +OS:Surface, + {9f221299-42d7-4f8c-a430-06c6ff43e712}, !- Handle + Surface 133, !- Name + Floor, !- Surface Type + {ad8da5ff-f21d-416d-b067-5c06daf51a75}, !- Construction Name + {46e7b4a8-20f3-4bc8-ab65-3899bd8d2932}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + 0, 47.0369670372916, 0, !- X,Y,Z Vertex 2 {m} + 4.572, 47.0369670372916, 0, !- X,Y,Z Vertex 3 {m} + 4.572, -4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {24714a54-2711-4353-8668-11e8f5de07a3}, !- Handle + Surface 134, !- Name + Wall, !- Surface Type + , !- Construction Name + {46e7b4a8-20f3-4bc8-ab65-3899bd8d2932}, !- Space Name + Surface, !- Outside Boundary Condition + {466a3e82-f760-4cb0-bc94-16313d3d58ff}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 47.0369670372916, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 47.0369670372916, 0, !- X,Y,Z Vertex 2 {m} + 0, -4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, -4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {eb8e8aad-1aa3-47c2-b83c-0a8e66e70029}, !- Handle + Surface 135, !- Name + Wall, !- Surface Type + , !- Construction Name + {46e7b4a8-20f3-4bc8-ab65-3899bd8d2932}, !- Space Name + Surface, !- Outside Boundary Condition + {79c37fae-19ce-4161-92c7-37dbed10fe88}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.572, 47.0369670372916, 3.048, !- X,Y,Z Vertex 1 {m} + 4.572, 47.0369670372916, 0, !- X,Y,Z Vertex 2 {m} + 0, 47.0369670372916, 0, !- X,Y,Z Vertex 3 {m} + 0, 47.0369670372916, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {bad83715-9aa2-493d-8c69-30a2e5452e09}, !- Handle + Surface 136, !- Name + Wall, !- Surface Type + , !- Construction Name + {46e7b4a8-20f3-4bc8-ab65-3899bd8d2932}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.572, 47.0369670372916, 3.048, !- X,Y,Z Vertex 1 {m} + 4.572, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 4.572, -4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 4.572, 47.0369670372916, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f375839a-a5b1-4312-ab09-b504f37c53e2}, !- Handle + Surface 137, !- Name + Wall, !- Surface Type + , !- Construction Name + {46e7b4a8-20f3-4bc8-ab65-3899bd8d2932}, !- Space Name + Surface, !- Outside Boundary Condition + {43569e74-2c2e-434e-823c-0a8a09fffa29}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0, -4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 4.572, -4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 4.572, -4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8509735e-1ea7-460a-b441-bbd01b978570}, !- Handle + Surface 138, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {46e7b4a8-20f3-4bc8-ab65-3899bd8d2932}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.572, -4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 4.572, 47.0369670372916, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 47.0369670372916, 3.048, !- X,Y,Z Vertex 3 {m} + 0, -4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {ed316356-0f8e-4167-a5a3-42c5e8316d81}, !- Handle + Zone Outpatient Office B end_b - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {230d9f26-6344-469b-800b-474370638aeb}, !- Zone Air Inlet Port List + {73359809-2452-45f0-ad74-1daef634dd9c}, !- Zone Air Exhaust Port List + {13e7bce1-4f75-4758-ad1d-a15c75600834}, !- Zone Air Node Name + {48905429-b17d-4982-8fc9-b93838106231}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {95a8fa01-78a2-4800-8f63-9080c2eaeafd}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {66d1cb57-1c81-4d93-8d53-26c51d2f6e60}, !- Handle + Zone Outpatient Office B end_b - Story ground Zone Air Node, !- Name + {13e7bce1-4f75-4758-ad1d-a15c75600834}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {13e7bce1-4f75-4758-ad1d-a15c75600834}, !- Handle + {ed316356-0f8e-4167-a5a3-42c5e8316d81}, !- Source Object + 11, !- Outlet Port + {66d1cb57-1c81-4d93-8d53-26c51d2f6e60}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {230d9f26-6344-469b-800b-474370638aeb}, !- Handle + {ed316356-0f8e-4167-a5a3-42c5e8316d81}, !- HVAC Component + {8c48d3d8-2733-40de-a04e-a3038c2b30b8}, !- Port 1 + {ca68a3f8-f514-417d-ac4d-f312e81882f6}; !- Port 2 + +OS:PortList, + {73359809-2452-45f0-ad74-1daef634dd9c}, !- Handle + {ed316356-0f8e-4167-a5a3-42c5e8316d81}, !- HVAC Component + {2a67dc06-b333-4156-8d57-fb71545a73b6}; !- Port 1 + +OS:PortList, + {48905429-b17d-4982-8fc9-b93838106231}, !- Handle + {ed316356-0f8e-4167-a5a3-42c5e8316d81}, !- HVAC Component + {2f8b8c14-5670-4eeb-999a-242c13fd654d}; !- Port 1 + +OS:Sizing:Zone, + {258b0a19-d495-4c5c-b101-82c1d0a9af42}, !- Handle + {ed316356-0f8e-4167-a5a3-42c5e8316d81}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {017b4c0a-01b6-48dd-aa6f-595bba522343}, !- Handle + Zone Outpatient Office B end_b - Story ground Zone HVAC Equipment List, !- Name + {ed316356-0f8e-4167-a5a3-42c5e8316d81}, !- Thermal Zone + , !- Load Distribution Scheme + {bfce7d9b-39c4-4cb0-ad18-c757493bf456}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {06e05dae-df41-4217-bde0-d21082ace214}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {7e10cb62-384f-44d8-a8d0-04793c187845}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {964d5000-55b4-465d-b5ac-568e754c09f4}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {08a083ce-be5a-4f63-8b9d-21b46ba56f99}, !- Handle + Outpatient Office C end_b - Story ground, !- Name + {c886771f-d399-4984-b712-aefe78a14e4c}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 46.68012, !- X Origin {m} + 23.5184835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {b4fbd303-c23e-4dcb-96dc-c58be9995146}; !- Thermal Zone Name + +OS:Surface, + {fa670231-c323-42c8-911e-1bc74e6f2618}, !- Handle + Surface 139, !- Name + Floor, !- Surface Type + {2fb09dd5-3610-4701-9a0a-f28271127aea}, !- Construction Name + {08a083ce-be5a-4f63-8b9d-21b46ba56f99}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 1 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 4.572, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 4.572, 4.61852778244065e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {814e1997-a4fb-40b5-bb92-8db40bebfc1e}, !- Handle + Surface 140, !- Name + Wall, !- Surface Type + , !- Construction Name + {08a083ce-be5a-4f63-8b9d-21b46ba56f99}, !- Space Name + Surface, !- Outside Boundary Condition + {a5f817b8-8b40-4bb5-a4df-2689b73c529a}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2c2356b2-4f02-4444-b1a8-09ca06dae1c9}, !- Handle + Surface 141, !- Name + Wall, !- Surface Type + , !- Construction Name + {08a083ce-be5a-4f63-8b9d-21b46ba56f99}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 4.572, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 4.572, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.57200000000005, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1b036915-6d79-4b9e-a72c-581b15554ec7}, !- Handle + Surface 142, !- Name + Wall, !- Surface Type + , !- Construction Name + {08a083ce-be5a-4f63-8b9d-21b46ba56f99}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.572, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 4.572, 4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 4.572, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 4.572, 4.57200000000005, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {79c37fae-19ce-4161-92c7-37dbed10fe88}, !- Handle + Surface 143, !- Name + Wall, !- Surface Type + , !- Construction Name + {08a083ce-be5a-4f63-8b9d-21b46ba56f99}, !- Space Name + Surface, !- Outside Boundary Condition + {eb8e8aad-1aa3-47c2-b83c-0a8e66e70029}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 2 {m} + 4.572, 4.61852778244065e-14, 0, !- X,Y,Z Vertex 3 {m} + 4.572, 4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3bf38246-274e-477d-9bd6-f7fdf09992a0}, !- Handle + Surface 144, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {08a083ce-be5a-4f63-8b9d-21b46ba56f99}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.572, 4.61852778244065e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 4.572, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + 0, 4.61852778244065e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {b4fbd303-c23e-4dcb-96dc-c58be9995146}, !- Handle + Zone Outpatient Office C end_b - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {4425461f-dffd-4cc3-9c17-64d4916d0878}, !- Zone Air Inlet Port List + {a75d4eea-55f9-46dc-8c1b-0ac0cf2e0f84}, !- Zone Air Exhaust Port List + {4d061c96-248c-4cc2-bc16-426df55d7bfa}, !- Zone Air Node Name + {503330b5-799e-4e18-aa24-5166a8d3c156}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {677deb36-2974-4f70-99b0-ac6b81b10894}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {f2c1819f-0b80-4d19-b22a-ee5b55b94395}, !- Handle + Zone Outpatient Office C end_b - Story ground Zone Air Node, !- Name + {4d061c96-248c-4cc2-bc16-426df55d7bfa}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {4d061c96-248c-4cc2-bc16-426df55d7bfa}, !- Handle + {b4fbd303-c23e-4dcb-96dc-c58be9995146}, !- Source Object + 11, !- Outlet Port + {f2c1819f-0b80-4d19-b22a-ee5b55b94395}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {4425461f-dffd-4cc3-9c17-64d4916d0878}, !- Handle + {b4fbd303-c23e-4dcb-96dc-c58be9995146}, !- HVAC Component + {3a3876d0-4088-4f43-8bbc-471d2a11dd6f}, !- Port 1 + {f4d23c90-7c31-4ac4-b203-77eab7afaaea}; !- Port 2 + +OS:PortList, + {a75d4eea-55f9-46dc-8c1b-0ac0cf2e0f84}, !- Handle + {b4fbd303-c23e-4dcb-96dc-c58be9995146}, !- HVAC Component + {1fea87b9-231b-4690-b798-3f341bbe0c94}; !- Port 1 + +OS:PortList, + {503330b5-799e-4e18-aa24-5166a8d3c156}, !- Handle + {b4fbd303-c23e-4dcb-96dc-c58be9995146}, !- HVAC Component + {d1f1c582-018a-46fb-86eb-86a92c085640}; !- Port 1 + +OS:Sizing:Zone, + {02fe7061-2026-41ec-9f39-353e64e66bb1}, !- Handle + {b4fbd303-c23e-4dcb-96dc-c58be9995146}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {e51a8ca2-7298-48cc-8ff1-9a9dc0fd25f2}, !- Handle + Zone Outpatient Office C end_b - Story ground Zone HVAC Equipment List, !- Name + {b4fbd303-c23e-4dcb-96dc-c58be9995146}, !- Thermal Zone + , !- Load Distribution Scheme + {ddb21165-0ea8-477d-bbc1-93077bf17f4d}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {8144e85a-4df7-4d3f-8976-ae6c1bf31a67}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {8e54ed8f-04cf-4110-8e4d-f3a01b77b305}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {c1a8ddfc-5f58-48f2-8234-cfdce6c41f5c}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Surface, + {e7fb06e6-9368-410b-af7b-21e419266290}, !- Handle + Surface 145, !- Name + Wall, !- Surface Type + , !- Construction Name + {f5af384c-a5a4-4c87-b078-a5bf21405c54}, !- Space Name + Surface, !- Outside Boundary Condition + {96044196-8db2-485a-b76d-4877d90c424f}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 43.3808255077881, 4.57199999999996, 3.048, !- X,Y,Z Vertex 1 {m} + 43.3808255077881, 4.57199999999996, 0, !- X,Y,Z Vertex 2 {m} + 43.3808255077881, 9.78838724710005, 0, !- X,Y,Z Vertex 3 {m} + 43.3808255077881, 9.78838724710005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d8589edf-e219-4f97-8751-f598b6301627}, !- Handle + Surface 146, !- Name + Wall, !- Surface Type + , !- Construction Name + {9ece76bb-c078-48e7-ba59-3b3a21dcd732}, !- Space Name + Surface, !- Outside Boundary Condition + {3115fe0d-5986-4787-b6a2-aaf865c53dc4}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.88178419700125e-16, 47.0369670372916, 3.048, !- X,Y,Z Vertex 1 {m} + 8.88178419700125e-16, 47.0369670372916, 0, !- X,Y,Z Vertex 2 {m} + -2.93098878501041e-14, 41.8205797901915, 0, !- X,Y,Z Vertex 3 {m} + -2.93098878501041e-14, 41.8205797901915, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {bc49fb42-7ef5-463f-8ceb-5c88348071af}, !- Handle + Surface 147, !- Name + Wall, !- Surface Type + , !- Construction Name + {9ece76bb-c078-48e7-ba59-3b3a21dcd732}, !- Space Name + Surface, !- Outside Boundary Condition + {2948e926-a57d-45cc-a0da-9b32d9ca912c}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.93098878501041e-14, 41.8205797901915, 3.048, !- X,Y,Z Vertex 1 {m} + -2.93098878501041e-14, 41.8205797901915, 0, !- X,Y,Z Vertex 2 {m} + -2.93098878501041e-14, 5.21638724710005, 0, !- X,Y,Z Vertex 3 {m} + -2.93098878501041e-14, 5.21638724710005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {07a16c0b-8ab0-44a8-8ba7-9f6b4c18195e}, !- Handle + Surface 148, !- Name + Wall, !- Surface Type + , !- Construction Name + {eee8fa4e-ae5b-4919-a079-6e3c9f6e0be2}, !- Space Name + Surface, !- Outside Boundary Condition + {d03e691b-0063-45bd-89c5-3808031d6659}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 43.3808255077881, 5.21638724710015, 3.048, !- X,Y,Z Vertex 1 {m} + 43.3808255077881, 5.21638724710015, 0, !- X,Y,Z Vertex 2 {m} + 43.3808255077881, 9.78838724710015, 0, !- X,Y,Z Vertex 3 {m} + 43.3808255077881, 9.78838724710015, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {eb2b9818-68d9-4afc-899b-eaf2c702938b}, !- Handle + Sub Surface 1, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {ca17d978-6798-4754-9f28-f3e4964037b2}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 7.47687070253917, 4.57200000000005, 3.0226, !- X,Y,Z Vertex 1 {m} + 7.47687070253917, 4.57200000000005, 0.322073973329645, !- X,Y,Z Vertex 2 {m} + 0.0254000000000012, 4.57200000000005, 0.322073973329645, !- X,Y,Z Vertex 3 {m} + 0.0254000000000012, 4.57200000000005, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {d6ca2ac3-8d37-4b45-9849-140a0cee22b3}, !- Handle + Sub Surface 2, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {7028465b-288e-49d3-8de7-50f9ec4e9de7}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0, 9.76298724710011, 3.0226, !- X,Y,Z Vertex 1 {m} + 0, 9.76298724710011, 0.326367027352635, !- X,Y,Z Vertex 2 {m} + 0, 0.0254000000000083, 0.326367027352635, !- X,Y,Z Vertex 3 {m} + 0, 0.0254000000000083, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {e3e66fad-f4ec-42b1-8fda-315e7e6dcec8}, !- Handle + Sub Surface 3, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {dee627fa-4674-46c2-a4b0-638f0fbb15a8}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 4.5466, 9.78838724710011, 3.0226, !- X,Y,Z Vertex 1 {m} + 4.5466, 9.78838724710011, 0.310222471910113, !- X,Y,Z Vertex 2 {m} + 0.0253999999999994, 9.78838724710011, 0.310222471910113, !- X,Y,Z Vertex 3 {m} + 0.0253999999999994, 9.78838724710011, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {0eb9b24f-9bd8-4a14-85bd-da900dcd5d90}, !- Handle + Sub Surface 4, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {c72fc607-ac47-4fbb-8255-290cb30f91ed}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0.0253999999999929, -4.61852778244065e-14, 3.0226, !- X,Y,Z Vertex 1 {m} + 0.0253999999999929, -4.61852778244065e-14, 0.337215349370253, !- X,Y,Z Vertex 2 {m} + 43.3554255077881, -4.61852778244065e-14, 0.337215349370253, !- X,Y,Z Vertex 3 {m} + 43.3554255077881, -4.61852778244065e-14, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {4bb319c1-74eb-4b22-b9c0-d0ee00526080}, !- Handle + Sub Surface 5, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {e1449c97-c4eb-42bc-afbb-efec7e714eb7}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0, 9.76298724710005, 3.0226, !- X,Y,Z Vertex 1 {m} + 0, 9.76298724710005, 0.326367027352636, !- X,Y,Z Vertex 2 {m} + 0, 0.025399999999955, 0.326367027352636, !- X,Y,Z Vertex 3 {m} + 0, 0.025399999999955, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {628d7433-7ab4-439d-a37e-6fd727786b03}, !- Handle + Sub Surface 6, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {4a005623-61a7-4ad8-833e-c937651421df}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0.0254, -4.61852778244065e-14, 3.0226, !- X,Y,Z Vertex 1 {m} + 0.0254, -4.61852778244065e-14, 0.310222471910113, !- X,Y,Z Vertex 2 {m} + 4.5466, -4.61852778244065e-14, 0.310222471910113, !- X,Y,Z Vertex 3 {m} + 4.5466, -4.61852778244065e-14, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {5fc499d6-ae4a-4c7c-bb3d-58ea103daa0c}, !- Handle + Sub Surface 7, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {c372aad6-95f3-437b-a595-4c3d03cbcc36}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0, 36.5787925430914, 3.0226, !- X,Y,Z Vertex 1 {m} + 0, 36.5787925430914, 0.336632362631201, !- X,Y,Z Vertex 2 {m} + 0, 0.0253999999999976, 0.336632362631201, !- X,Y,Z Vertex 3 {m} + 0, 0.0253999999999976, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {652d1aee-18b1-434c-80cd-d06be90f18f7}, !- Handle + Sub Surface 8, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {4d986e31-f0c2-4f82-9b63-fa459aaacfad}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0.0254000000000195, -4.61852778244065e-14, 3.0226, !- X,Y,Z Vertex 1 {m} + 0.0254000000000195, -4.61852778244065e-14, 0.327815083006517, !- X,Y,Z Vertex 2 {m} + 10.8869937491478, -4.61852778244065e-14, 0.327815083006517, !- X,Y,Z Vertex 3 {m} + 10.8869937491478, -4.61852778244065e-14, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {346a0ff5-6c13-410e-a3da-00a314fc816a}, !- Handle + Sub Surface 9, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {1afac12f-211d-422d-9495-3845d1769268}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 5.90171862862942, 4.57200000000005, 3.0226, !- X,Y,Z Vertex 1 {m} + 5.90171862862942, 4.57200000000005, 0.317172388740095, !- X,Y,Z Vertex 2 {m} + 0.0253999999999976, 4.57200000000005, 0.317172388740095, !- X,Y,Z Vertex 3 {m} + 0.0253999999999976, 4.57200000000005, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {e6cce8a6-3894-4c7a-897b-2ea432397ef7}, !- Handle + Sub Surface 10, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {584d356b-6834-4c9a-9722-d2c1c45b5080}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 25.0869091866701, 4.57200000000005, 3.0226, !- X,Y,Z Vertex 1 {m} + 25.0869091866701, 4.57200000000005, 0.334923065177556, !- X,Y,Z Vertex 2 {m} + 0.0253999999999586, 4.57200000000005, 0.334923065177556, !- X,Y,Z Vertex 3 {m} + 0.0253999999999586, 4.57200000000005, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {4a4bb0fd-3df8-4581-975d-67e3646121a1}, !- Handle + Sub Surface 11, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {899291ac-22d2-40d5-98d8-6fbd1db95a28}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0.0254, -4.61852778244065e-14, 3.0226, !- X,Y,Z Vertex 1 {m} + 0.0254, -4.61852778244065e-14, 0.310222471910113, !- X,Y,Z Vertex 2 {m} + 4.5466, -4.61852778244065e-14, 0.310222471910113, !- X,Y,Z Vertex 3 {m} + 4.5466, -4.61852778244065e-14, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {36ee04de-4610-4acc-9824-9f79943a49ba}, !- Handle + Sub Surface 12, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {e6f6c906-5cea-4351-b898-eba478d8fe36}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 4.572, 0.0253999999999538, 3.0226, !- X,Y,Z Vertex 1 {m} + 4.572, 0.0253999999999538, 0.310222471910112, !- X,Y,Z Vertex 2 {m} + 4.572, 4.54659999999995, 0.310222471910112, !- X,Y,Z Vertex 3 {m} + 4.572, 4.54659999999995, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {ab9eec59-72b5-4d50-a031-2584019dede3}, !- Handle + Sub Surface 13, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {3605baca-40a8-4982-8201-3db8c811601e}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 43.3554255077881, 9.78838724710011, 3.0226, !- X,Y,Z Vertex 1 {m} + 43.3554255077881, 9.78838724710011, 0.337215349370253, !- X,Y,Z Vertex 2 {m} + 0.0253999999999976, 9.78838724710011, 0.337215349370253, !- X,Y,Z Vertex 3 {m} + 0.0253999999999976, 9.78838724710011, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {f26b42aa-56ca-487f-8f30-983737f99154}, !- Handle + Sub Surface 14, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {6dbecbcb-9b8e-4176-b2dc-e7f6e1501da6}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0.0254000000000022, -4.61852778244065e-14, 3.0226, !- X,Y,Z Vertex 1 {m} + 0.0254000000000022, -4.61852778244065e-14, 0.322073973329645, !- X,Y,Z Vertex 2 {m} + 7.47687070253917, -4.61852778244065e-14, 0.322073973329645, !- X,Y,Z Vertex 3 {m} + 7.47687070253917, -4.61852778244065e-14, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {47077352-6a23-4bdb-9aa7-40a98053a4c4}, !- Handle + Sub Surface 15, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {0c917e1b-b87f-4597-9671-68f299ab6b52}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0.0254000000000009, -4.61852778244065e-14, 3.0226, !- X,Y,Z Vertex 1 {m} + 0.0254000000000009, -4.61852778244065e-14, 0.0532126657833936, !- X,Y,Z Vertex 2 {m} + 0.499922225225381, -4.61852778244065e-14, 0.0532126657833936, !- X,Y,Z Vertex 3 {m} + 0.499922225225381, -4.61852778244065e-14, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {b4cf39b9-1044-40ec-bb86-21edbf86d1a4}, !- Handle + Sub Surface 16, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {f04c5678-f267-4a2d-8704-7c8023c424a9}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0.499922225225381, 4.57200000000005, 3.0226, !- X,Y,Z Vertex 1 {m} + 0.499922225225381, 4.57200000000005, 0.0532126657833936, !- X,Y,Z Vertex 2 {m} + 0.0254000000000009, 4.57200000000005, 0.0532126657833936, !- X,Y,Z Vertex 3 {m} + 0.0254000000000009, 4.57200000000005, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {ff429dde-07ce-4302-addb-449e13d2c35d}, !- Handle + Sub Surface 17, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {5cffad64-00c2-48c9-a5fc-092d7aaee273}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0.0253999999999987, -4.61852778244065e-14, 3.0226, !- X,Y,Z Vertex 1 {m} + 0.0253999999999987, -4.61852778244065e-14, 0.317172388740095, !- X,Y,Z Vertex 2 {m} + 5.90171862862942, -4.61852778244065e-14, 0.317172388740095, !- X,Y,Z Vertex 3 {m} + 5.90171862862942, -4.61852778244065e-14, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {0589f07c-649b-4f67-81bd-8eb4c071ff8e}, !- Handle + Sub Surface 18, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {0c85cb1c-df82-4457-8b9a-c3ab74544422}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 10.8869937491478, 4.57200000000005, 3.0226, !- X,Y,Z Vertex 1 {m} + 10.8869937491478, 4.57200000000005, 0.327815083006517, !- X,Y,Z Vertex 2 {m} + 0.0254000000000207, 4.57200000000005, 0.327815083006517, !- X,Y,Z Vertex 3 {m} + 0.0254000000000207, 4.57200000000005, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {672a30ff-c444-463e-b864-33fd3f3cd7a0}, !- Handle + Sub Surface 19, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {2d842088-5ecd-47e8-bbe5-599ca1d2df32}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0.0253999999999609, -4.61852778244065e-14, 3.0226, !- X,Y,Z Vertex 1 {m} + 0.0253999999999609, -4.61852778244065e-14, 0.334923065177556, !- X,Y,Z Vertex 2 {m} + 25.0869091866701, -4.61852778244065e-14, 0.334923065177556, !- X,Y,Z Vertex 3 {m} + 25.0869091866701, -4.61852778244065e-14, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {a658744a-4adb-4fe2-bd18-2ec4dae17193}, !- Handle + Sub Surface 20, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {bad83715-9aa2-493d-8c69-30a2e5452e09}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 4.572, 0.0253999999999538, 3.0226, !- X,Y,Z Vertex 1 {m} + 4.572, 0.0253999999999538, 0.337460044532429, !- X,Y,Z Vertex 2 {m} + 4.572, 47.0115670372916, 0.337460044532429, !- X,Y,Z Vertex 3 {m} + 4.572, 47.0115670372916, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {d3d669d8-036f-4c94-b039-d75fad187afb}, !- Handle + Sub Surface 21, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {2c2356b2-4f02-4444-b1a8-09ca06dae1c9}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 4.5466, 4.57200000000005, 3.0226, !- X,Y,Z Vertex 1 {m} + 4.5466, 4.57200000000005, 0.310222471910113, !- X,Y,Z Vertex 2 {m} + 0.0253999999999994, 4.57200000000005, 0.310222471910113, !- X,Y,Z Vertex 3 {m} + 0.0253999999999994, 4.57200000000005, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {669f43ce-29f0-444a-89e1-b9f5c80f7078}, !- Handle + Sub Surface 22, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {1b036915-6d79-4b9e-a72c-581b15554ec7}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 4.572, 0.0254000000000462, 3.0226, !- X,Y,Z Vertex 1 {m} + 4.572, 0.0254000000000462, 0.310222471910113, !- X,Y,Z Vertex 2 {m} + 4.572, 4.54660000000005, 0.310222471910113, !- X,Y,Z Vertex 3 {m} + 4.572, 4.54660000000005, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:Space, + {4287fa7e-a0de-424e-9ab4-95ecfb37d31f}, !- Handle + Outpatient OR A - Story ground 1, !- Name + {5fb014fb-6043-4a5b-b056-a124c49bf50e}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 81.73212, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {f41f4144-b926-4529-95d6-ac5b59741fcc}; !- Thermal Zone Name + +OS:Surface, + {aee5729b-2533-4e3e-a352-043df0066a94}, !- Handle + Surface 149, !- Name + Floor, !- Surface Type + {7c00c73a-ff0f-459b-b257-40f8a6b50be7}, !- Construction Name + {4287fa7e-a0de-424e-9ab4-95ecfb37d31f}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 6.17711866966441, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 6.17711866966441, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8f50827e-9070-4f9c-a9c2-464e4270b541}, !- Handle + Surface 150, !- Name + Wall, !- Surface Type + , !- Construction Name + {4287fa7e-a0de-424e-9ab4-95ecfb37d31f}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {99e874b8-7c12-4dfa-8c7b-e3caa42598c9}, !- Handle + Surface 151, !- Name + Wall, !- Surface Type + , !- Construction Name + {4287fa7e-a0de-424e-9ab4-95ecfb37d31f}, !- Space Name + Surface, !- Outside Boundary Condition + {fd3205a9-c7b4-4e02-8755-52b0dc373256}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 6.17711866966441, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 6.17711866966441, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {540343d1-0f50-4f29-b3f9-729ab04abbf1}, !- Handle + Surface 152, !- Name + Wall, !- Surface Type + , !- Construction Name + {4287fa7e-a0de-424e-9ab4-95ecfb37d31f}, !- Space Name + Surface, !- Outside Boundary Condition + {92eba9fa-2bdf-4032-9649-58f8ba978f7b}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 6.17711866966444, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 6.17711866966444, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 6.17711866966444, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 6.17711866966444, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {868bc9d5-9f68-4623-ad47-fbbcf7347386}, !- Handle + Surface 153, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {4287fa7e-a0de-424e-9ab4-95ecfb37d31f}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 6.17711866966441, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 6.17711866966441, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9ce479fe-61cc-4fc3-9185-8fba947876ff}, !- Handle + Surface 154, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {4287fa7e-a0de-424e-9ab4-95ecfb37d31f}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 6.17711866966441, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 6.17711866966441, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + 0, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {f41f4144-b926-4529-95d6-ac5b59741fcc}, !- Handle + Zone Outpatient OR A - Story ground 1, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {8c6fd4a7-00ea-4db7-b537-887a86b7823e}, !- Zone Air Inlet Port List + {16b260da-1d2e-4c58-bd2e-46ad036ca396}, !- Zone Air Exhaust Port List + {82df7414-e187-430f-890f-294c7c09f3a9}, !- Zone Air Node Name + {ba083559-0877-4fc0-8882-6285bce38802}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {464b6d62-3a84-4010-80c6-ea3a219ef085}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {9e74d7b7-8ac6-4b75-89a1-39d4746740f7}, !- Handle + Zone Outpatient OR A - Story ground 1 Zone Air Node, !- Name + {82df7414-e187-430f-890f-294c7c09f3a9}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {82df7414-e187-430f-890f-294c7c09f3a9}, !- Handle + {f41f4144-b926-4529-95d6-ac5b59741fcc}, !- Source Object + 11, !- Outlet Port + {9e74d7b7-8ac6-4b75-89a1-39d4746740f7}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {8c6fd4a7-00ea-4db7-b537-887a86b7823e}, !- Handle + {f41f4144-b926-4529-95d6-ac5b59741fcc}, !- HVAC Component + {43c5221a-9196-4845-a4b5-28cee495b8dd}, !- Port 1 + {228b6277-2052-4ab4-a461-dbfb6ba50291}; !- Port 2 + +OS:PortList, + {16b260da-1d2e-4c58-bd2e-46ad036ca396}, !- Handle + {f41f4144-b926-4529-95d6-ac5b59741fcc}, !- HVAC Component + {e48ad63e-02df-4a80-a62b-fac7dc33f1a2}; !- Port 1 + +OS:PortList, + {ba083559-0877-4fc0-8882-6285bce38802}, !- Handle + {f41f4144-b926-4529-95d6-ac5b59741fcc}, !- HVAC Component + {48dd3e20-9697-4ff9-8e48-ace4e9e6ba00}; !- Port 1 + +OS:Sizing:Zone, + {ff35c71f-ed02-4c22-9918-dfc056230269}, !- Handle + {f41f4144-b926-4529-95d6-ac5b59741fcc}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {2ed6b501-880c-4daf-96de-4664dd998b35}, !- Handle + Zone Outpatient OR A - Story ground 1 Zone HVAC Equipment List, !- Name + {f41f4144-b926-4529-95d6-ac5b59741fcc}, !- Thermal Zone + , !- Load Distribution Scheme + {142c915f-17b4-4d5f-8b91-05e9256c44ac}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {05fde661-109d-43f5-9d39-8b994172b517}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {7c399f8e-61b5-486f-b570-5a804ab99bdf}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {1938d927-cd01-47a1-b00b-f47208f78402}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {0caa2afb-6f8b-4d59-9e0a-8b254f9f3f37}, !- Handle + Outpatient OR B - Story ground 1, !- Name + {5fb014fb-6043-4a5b-b056-a124c49bf50e}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 81.73212, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {3f5be40b-b9bf-4f14-804e-789e868d591c}; !- Thermal Zone Name + +OS:Surface, + {f83603a7-184b-4ea3-80c8-4fea1f8c6582}, !- Handle + Surface 155, !- Name + Floor, !- Surface Type + {c5bf4578-eebf-4ae7-b9a8-fdad29c52e9b}, !- Construction Name + {0caa2afb-6f8b-4d59-9e0a-8b254f9f3f37}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + 0, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 6.17711866966441, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 6.17711866966441, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8561fd74-ebbf-4d0e-bc51-96c45b7cac4a}, !- Handle + Surface 156, !- Name + Wall, !- Surface Type + , !- Construction Name + {0caa2afb-6f8b-4d59-9e0a-8b254f9f3f37}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a1590aa4-db96-4db1-ad24-20055c8221a4}, !- Handle + Surface 157, !- Name + Wall, !- Surface Type + , !- Construction Name + {0caa2afb-6f8b-4d59-9e0a-8b254f9f3f37}, !- Space Name + Surface, !- Outside Boundary Condition + {5f6d4b17-6aec-4bbb-9c50-e5f9f0cc8da3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 6.17711866966441, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 6.17711866966441, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + 0, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + 0, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ba340b83-8298-4f9a-8ab3-86d6e73c65f0}, !- Handle + Surface 158, !- Name + Wall, !- Surface Type + , !- Construction Name + {0caa2afb-6f8b-4d59-9e0a-8b254f9f3f37}, !- Space Name + Surface, !- Outside Boundary Condition + {87061778-5fd2-4f0d-9378-40ee972892ae}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 6.17711866966444, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 6.17711866966444, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 6.17711866966444, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 6.17711866966444, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fd3205a9-c7b4-4e02-8755-52b0dc373256}, !- Handle + Surface 159, !- Name + Wall, !- Surface Type + , !- Construction Name + {0caa2afb-6f8b-4d59-9e0a-8b254f9f3f37}, !- Space Name + Surface, !- Outside Boundary Condition + {99e874b8-7c12-4dfa-8c7b-e3caa42598c9}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 6.17711866966441, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 6.17711866966441, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2c6e8d15-cdfd-47f2-9deb-7f3e80b2bd5a}, !- Handle + Surface 160, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {0caa2afb-6f8b-4d59-9e0a-8b254f9f3f37}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 6.17711866966441, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 6.17711866966441, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + 0, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {3f5be40b-b9bf-4f14-804e-789e868d591c}, !- Handle + Zone Outpatient OR B - Story ground 1, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {f95071d7-05cf-4f22-bc3e-81351f5709fd}, !- Zone Air Inlet Port List + {aced4f06-306e-498e-b211-35007ecbee02}, !- Zone Air Exhaust Port List + {8fc7e7c4-d03d-4f19-b951-045ec0415a10}, !- Zone Air Node Name + {8507a95a-e81c-42bd-b731-a7e0d90cc6d2}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {a12f0df2-9a98-4bf2-bbaa-cd5838007df7}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {a6dee426-2285-4c28-b188-93565379dbb0}, !- Handle + Zone Outpatient OR B - Story ground 1 Zone Air Node, !- Name + {8fc7e7c4-d03d-4f19-b951-045ec0415a10}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {8fc7e7c4-d03d-4f19-b951-045ec0415a10}, !- Handle + {3f5be40b-b9bf-4f14-804e-789e868d591c}, !- Source Object + 11, !- Outlet Port + {a6dee426-2285-4c28-b188-93565379dbb0}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {f95071d7-05cf-4f22-bc3e-81351f5709fd}, !- Handle + {3f5be40b-b9bf-4f14-804e-789e868d591c}, !- HVAC Component + {58e371b5-9a92-403d-8f89-a241cd0be941}, !- Port 1 + {7d768ecd-f18b-400a-af63-db6e13c46338}; !- Port 2 + +OS:PortList, + {aced4f06-306e-498e-b211-35007ecbee02}, !- Handle + {3f5be40b-b9bf-4f14-804e-789e868d591c}, !- HVAC Component + {0e8f1dfd-f5c4-4f1b-9008-896f13261ce0}; !- Port 1 + +OS:PortList, + {8507a95a-e81c-42bd-b731-a7e0d90cc6d2}, !- Handle + {3f5be40b-b9bf-4f14-804e-789e868d591c}, !- HVAC Component + {76f7e8c3-7005-46a3-ac67-3b388a1822d8}; !- Port 1 + +OS:Sizing:Zone, + {5362771d-1d7d-4db2-a680-16ce57c888b5}, !- Handle + {3f5be40b-b9bf-4f14-804e-789e868d591c}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {25186af4-2d64-4963-b4fd-7356aa802978}, !- Handle + Zone Outpatient OR B - Story ground 1 Zone HVAC Equipment List, !- Name + {3f5be40b-b9bf-4f14-804e-789e868d591c}, !- Thermal Zone + , !- Load Distribution Scheme + {73c3c2d9-34b0-4d83-91a3-f2619c3fe93c}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {b24d9749-eac4-423d-8458-5bc67c40aeb1}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {4b4a199c-2e40-4653-a5a8-2b846d825cd2}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {1f181dcb-c8a1-49e5-883a-1b2013ffade4}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {f4424d26-f266-48dc-9493-a886e9476552}, !- Handle + Outpatient OR C - Story ground 1, !- Name + {5fb014fb-6043-4a5b-b056-a124c49bf50e}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 81.73212, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {e004763c-561a-46c1-8f8a-2ed3563f4083}; !- Thermal Zone Name + +OS:Surface, + {b0976fee-d651-4160-9ca7-0c6d0d6e8c78}, !- Handle + Surface 161, !- Name + Floor, !- Surface Type + {7c00c73a-ff0f-459b-b257-40f8a6b50be7}, !- Construction Name + {f4424d26-f266-48dc-9493-a886e9476552}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + 0, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 6.17711866966441, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 6.17711866966441, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {25d48384-d54a-4685-b5c1-2ee1d7169912}, !- Handle + Surface 162, !- Name + Wall, !- Surface Type + , !- Construction Name + {f4424d26-f266-48dc-9493-a886e9476552}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {09d7f414-3bdf-4f30-981e-32ab3626064c}, !- Handle + Surface 163, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {f4424d26-f266-48dc-9493-a886e9476552}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 6.17711866966441, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 6.17711866966441, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1bd66049-0255-4c33-8e2a-fe5a4600bc00}, !- Handle + Surface 164, !- Name + Wall, !- Surface Type + , !- Construction Name + {f4424d26-f266-48dc-9493-a886e9476552}, !- Space Name + Surface, !- Outside Boundary Condition + {1b146df7-e5e3-4faf-a4dd-b2d321727bf5}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 6.17711866966444, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 6.17711866966444, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 6.17711866966444, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 6.17711866966444, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5f6d4b17-6aec-4bbb-9c50-e5f9f0cc8da3}, !- Handle + Surface 165, !- Name + Wall, !- Surface Type + , !- Construction Name + {f4424d26-f266-48dc-9493-a886e9476552}, !- Space Name + Surface, !- Outside Boundary Condition + {a1590aa4-db96-4db1-ad24-20055c8221a4}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 6.17711866966441, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 6.17711866966441, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {31ecdd9c-c97c-4b8b-9c84-4b8b1bd2fdec}, !- Handle + Surface 166, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {f4424d26-f266-48dc-9493-a886e9476552}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 6.17711866966441, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 6.17711866966441, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + 0, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {e004763c-561a-46c1-8f8a-2ed3563f4083}, !- Handle + Zone Outpatient OR C - Story ground 1, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {5fa30f46-41ec-4886-87bc-8c22a731dd00}, !- Zone Air Inlet Port List + {25317570-96cf-4151-bb58-f87d343e7f81}, !- Zone Air Exhaust Port List + {26c4ae63-4d45-4c90-bc4a-a550202a1f0a}, !- Zone Air Node Name + {af7f3ef0-4efc-40fe-8920-e83f50f30f05}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {bb0d4e13-b414-4f34-93cb-830a06a9d84a}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {9b718336-1643-49d1-9d43-65ad1b3eb440}, !- Handle + Zone Outpatient OR C - Story ground 1 Zone Air Node, !- Name + {26c4ae63-4d45-4c90-bc4a-a550202a1f0a}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {26c4ae63-4d45-4c90-bc4a-a550202a1f0a}, !- Handle + {e004763c-561a-46c1-8f8a-2ed3563f4083}, !- Source Object + 11, !- Outlet Port + {9b718336-1643-49d1-9d43-65ad1b3eb440}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {5fa30f46-41ec-4886-87bc-8c22a731dd00}, !- Handle + {e004763c-561a-46c1-8f8a-2ed3563f4083}, !- HVAC Component + {3cab66dc-1630-4a5d-a6f2-40188834bc08}, !- Port 1 + {afaae745-f63f-4b3e-a8f0-100f64cc0464}; !- Port 2 + +OS:PortList, + {25317570-96cf-4151-bb58-f87d343e7f81}, !- Handle + {e004763c-561a-46c1-8f8a-2ed3563f4083}, !- HVAC Component + {b54b2b83-9753-4173-a163-ddd468d9656a}; !- Port 1 + +OS:PortList, + {af7f3ef0-4efc-40fe-8920-e83f50f30f05}, !- Handle + {e004763c-561a-46c1-8f8a-2ed3563f4083}, !- HVAC Component + {f53dc9db-9f46-452c-a974-b12ab86cdfa2}; !- Port 1 + +OS:Sizing:Zone, + {b3e2aa78-34d5-47b9-a037-646f26d3af83}, !- Handle + {e004763c-561a-46c1-8f8a-2ed3563f4083}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {d3544275-773f-4116-b594-df95d64e8926}, !- Handle + Zone Outpatient OR C - Story ground 1 Zone HVAC Equipment List, !- Name + {e004763c-561a-46c1-8f8a-2ed3563f4083}, !- Thermal Zone + , !- Load Distribution Scheme + {96a3203f-47f1-4f80-a5b7-90660cce5673}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {c7bbf987-6252-47ca-8897-27af7827bf85}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {d0be177a-35b7-49c4-93bd-60cd27b12d91}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {811b1edd-f06d-4bd9-b5b8-c594be86b226}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {07bcebe4-49e7-4b79-a705-f1df5dacfb82}, !- Handle + Outpatient BioHazard A - Story ground, !- Name + {7b20985f-3aeb-492d-93f8-a179c637cd44}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 87.9092386696644, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {c7dba764-e2c4-41e3-aaa8-eece8957ea41}; !- Thermal Zone Name + +OS:Surface, + {6856653e-135b-4435-bf23-2eb7459aef1e}, !- Handle + Surface 167, !- Name + Floor, !- Surface Type + {046906e6-e364-4672-8af0-88bf482192b8}, !- Construction Name + {07bcebe4-49e7-4b79-a705-f1df5dacfb82}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0.275720313960917, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0.275720313960917, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {92eba9fa-2bdf-4032-9649-58f8ba978f7b}, !- Handle + Surface 168, !- Name + Wall, !- Surface Type + , !- Construction Name + {07bcebe4-49e7-4b79-a705-f1df5dacfb82}, !- Space Name + Surface, !- Outside Boundary Condition + {540343d1-0f50-4f29-b3f9-729ab04abbf1}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a6ba7d14-654c-46fa-9175-234fa1328447}, !- Handle + Surface 169, !- Name + Wall, !- Surface Type + , !- Construction Name + {07bcebe4-49e7-4b79-a705-f1df5dacfb82}, !- Space Name + Surface, !- Outside Boundary Condition + {81bbb264-0953-4758-8295-b6f2e1bff772}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.275720313960917, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 0.275720313960917, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-14, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {86abc534-da01-4998-8bd8-946007a59baf}, !- Handle + Surface 170, !- Name + Wall, !- Surface Type + , !- Construction Name + {07bcebe4-49e7-4b79-a705-f1df5dacfb82}, !- Space Name + Surface, !- Outside Boundary Condition + {9f1621c1-8196-4ede-b0f3-0adec13c2e44}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.275720313960917, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.275720313960917, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.275720313960917, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0.275720313960917, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0f68ea13-357d-401d-97ad-da664c366d09}, !- Handle + Surface 171, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {07bcebe4-49e7-4b79-a705-f1df5dacfb82}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.275720313960917, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-14, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 0.275720313960917, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b8521a40-44a4-406c-b9f3-9cccd06b22ef}, !- Handle + Surface 172, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {07bcebe4-49e7-4b79-a705-f1df5dacfb82}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.275720313960917, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.275720313960917, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {c7dba764-e2c4-41e3-aaa8-eece8957ea41}, !- Handle + Zone Outpatient BioHazard A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {25d74a51-df4c-4df1-b554-aed5ad29bc7a}, !- Zone Air Inlet Port List + {83cb2c5b-b7d2-4f9c-b34a-e241911b1a38}, !- Zone Air Exhaust Port List + {14d3ad5c-f6f7-4a68-9c5e-48a566941db1}, !- Zone Air Node Name + {d77c4ac7-eabf-431d-b860-6c6a9b77e5ff}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {24566118-ab3f-435c-b5b1-3d102fdea6b4}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {52f2e3e1-33e4-4605-9b29-28758be0a6c5}, !- Handle + Zone Outpatient BioHazard A - Story ground Zone Air Node, !- Name + {14d3ad5c-f6f7-4a68-9c5e-48a566941db1}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {14d3ad5c-f6f7-4a68-9c5e-48a566941db1}, !- Handle + {c7dba764-e2c4-41e3-aaa8-eece8957ea41}, !- Source Object + 11, !- Outlet Port + {52f2e3e1-33e4-4605-9b29-28758be0a6c5}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {25d74a51-df4c-4df1-b554-aed5ad29bc7a}, !- Handle + {c7dba764-e2c4-41e3-aaa8-eece8957ea41}, !- HVAC Component + {01a534b4-34c9-4f8a-bc08-aa7e24dd90c6}, !- Port 1 + {eeeb4e69-f930-4f8f-8f37-f3b144e41ceb}; !- Port 2 + +OS:PortList, + {83cb2c5b-b7d2-4f9c-b34a-e241911b1a38}, !- Handle + {c7dba764-e2c4-41e3-aaa8-eece8957ea41}, !- HVAC Component + {fb290fbe-ae96-4906-8aba-22c60a747636}; !- Port 1 + +OS:PortList, + {d77c4ac7-eabf-431d-b860-6c6a9b77e5ff}, !- Handle + {c7dba764-e2c4-41e3-aaa8-eece8957ea41}, !- HVAC Component + {20826aff-2e70-4864-b21b-784936863623}; !- Port 1 + +OS:Sizing:Zone, + {4a97093d-755c-4f0a-a211-30132f2dd153}, !- Handle + {c7dba764-e2c4-41e3-aaa8-eece8957ea41}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {97be12d2-59e1-4d62-bfba-5ed5b07a4209}, !- Handle + Zone Outpatient BioHazard A - Story ground Zone HVAC Equipment List, !- Name + {c7dba764-e2c4-41e3-aaa8-eece8957ea41}, !- Thermal Zone + , !- Load Distribution Scheme + {1743d4ee-2fa5-4544-be60-f22dbec284ff}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {0ba0da35-0556-4368-a1b2-82b5f204287f}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {692ec71b-eedc-43af-9d59-f68076a45e69}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {461f29c6-2b36-459d-9862-6792230a2ac4}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {3ed315cf-5223-42c3-a62b-1bcf89a9f58c}, !- Handle + Outpatient BioHazard B - Story ground, !- Name + {7b20985f-3aeb-492d-93f8-a179c637cd44}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 87.9092386696644, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {a4916a1a-fc7e-48e3-9bba-34381cdbcc04}; !- Thermal Zone Name + +OS:Surface, + {1faace5c-daaf-4030-ace8-e0222dc76353}, !- Handle + Surface 173, !- Name + Floor, !- Surface Type + {d869f62d-7c8d-4c7b-907b-ae210e2dc98f}, !- Construction Name + {3ed315cf-5223-42c3-a62b-1bcf89a9f58c}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 0.275720313960917, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 0.275720313960917, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {87061778-5fd2-4f0d-9378-40ee972892ae}, !- Handle + Surface 174, !- Name + Wall, !- Surface Type + , !- Construction Name + {3ed315cf-5223-42c3-a62b-1bcf89a9f58c}, !- Space Name + Surface, !- Outside Boundary Condition + {ba340b83-8298-4f9a-8ab3-86d6e73c65f0}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5442c507-7de5-4be9-81be-6fd7bfd045aa}, !- Handle + Surface 175, !- Name + Wall, !- Surface Type + , !- Construction Name + {3ed315cf-5223-42c3-a62b-1bcf89a9f58c}, !- Space Name + Surface, !- Outside Boundary Condition + {0db5f0c9-1a50-431a-a298-76d084b54bdf}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.275720313960917, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 0.275720313960917, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-14, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-14, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1c81cb45-53f2-4ca2-ba37-d4f9d9520d74}, !- Handle + Surface 176, !- Name + Wall, !- Surface Type + , !- Construction Name + {3ed315cf-5223-42c3-a62b-1bcf89a9f58c}, !- Space Name + Surface, !- Outside Boundary Condition + {623782c9-14d9-4f9b-98ec-f55a4fca6050}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.275720313960917, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.275720313960917, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.275720313960917, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 0.275720313960917, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {81bbb264-0953-4758-8295-b6f2e1bff772}, !- Handle + Surface 177, !- Name + Wall, !- Surface Type + , !- Construction Name + {3ed315cf-5223-42c3-a62b-1bcf89a9f58c}, !- Space Name + Surface, !- Outside Boundary Condition + {a6ba7d14-654c-46fa-9175-234fa1328447}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-14, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-14, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.275720313960917, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 0.275720313960917, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4a553639-fd7f-4b05-8086-780604d0bcaa}, !- Handle + Surface 178, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {3ed315cf-5223-42c3-a62b-1bcf89a9f58c}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.275720313960917, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.275720313960917, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {a4916a1a-fc7e-48e3-9bba-34381cdbcc04}, !- Handle + Zone Outpatient BioHazard B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {a73cdb59-88a4-4efb-898a-a936b9d4532c}, !- Zone Air Inlet Port List + {83747aa1-cec8-4012-a406-6f19eeca3db3}, !- Zone Air Exhaust Port List + {fe971e3b-a4dc-4b22-9b16-911daf957e0b}, !- Zone Air Node Name + {c5465e0e-e68b-44ed-8f75-32929bac7232}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {97bafe07-1aa3-4fb6-b1bf-ff079ffacc04}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {06d20404-ce32-4910-a3e0-20808fc69fbe}, !- Handle + Zone Outpatient BioHazard B - Story ground Zone Air Node, !- Name + {fe971e3b-a4dc-4b22-9b16-911daf957e0b}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {fe971e3b-a4dc-4b22-9b16-911daf957e0b}, !- Handle + {a4916a1a-fc7e-48e3-9bba-34381cdbcc04}, !- Source Object + 11, !- Outlet Port + {06d20404-ce32-4910-a3e0-20808fc69fbe}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {a73cdb59-88a4-4efb-898a-a936b9d4532c}, !- Handle + {a4916a1a-fc7e-48e3-9bba-34381cdbcc04}, !- HVAC Component + {ae4cd534-9771-45ed-a4db-23979f9664f7}, !- Port 1 + {fc4dcbca-10be-4d1e-87d9-cab73437e3f3}; !- Port 2 + +OS:PortList, + {83747aa1-cec8-4012-a406-6f19eeca3db3}, !- Handle + {a4916a1a-fc7e-48e3-9bba-34381cdbcc04}, !- HVAC Component + {9fcd8eb0-8647-4db7-87e3-a98e64d3061c}; !- Port 1 + +OS:PortList, + {c5465e0e-e68b-44ed-8f75-32929bac7232}, !- Handle + {a4916a1a-fc7e-48e3-9bba-34381cdbcc04}, !- HVAC Component + {44ab28d0-f61b-46b9-bb3a-baae5a922619}; !- Port 1 + +OS:Sizing:Zone, + {41a46707-4733-4c4d-97a4-e9f0b89dce4f}, !- Handle + {a4916a1a-fc7e-48e3-9bba-34381cdbcc04}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {5930d076-2604-48bb-a7c3-363f65aee11f}, !- Handle + Zone Outpatient BioHazard B - Story ground Zone HVAC Equipment List, !- Name + {a4916a1a-fc7e-48e3-9bba-34381cdbcc04}, !- Thermal Zone + , !- Load Distribution Scheme + {c4570aee-4fc6-4dc4-af28-7cb3459cedab}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {3b5929a6-05bd-4ee8-a2a9-75d7cdb3e10e}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {5f23f375-b201-411d-b37b-1eba3b1dd258}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {420dcf6a-a856-4c89-8d87-9f20fa532409}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {8a8a5126-a31e-4178-ac83-c0cab3d30a56}, !- Handle + Outpatient BioHazard C - Story ground, !- Name + {7b20985f-3aeb-492d-93f8-a179c637cd44}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 87.9092386696644, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {310c86a5-8e3f-45ee-9f12-2c6003c46c8b}; !- Thermal Zone Name + +OS:Surface, + {8ec92261-ef08-4073-bd4f-8283efe93751}, !- Handle + Surface 179, !- Name + Floor, !- Surface Type + {046906e6-e364-4672-8af0-88bf482192b8}, !- Construction Name + {8a8a5126-a31e-4178-ac83-c0cab3d30a56}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 0.275720313960917, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0.275720313960917, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1b146df7-e5e3-4faf-a4dd-b2d321727bf5}, !- Handle + Surface 180, !- Name + Wall, !- Surface Type + , !- Construction Name + {8a8a5126-a31e-4178-ac83-c0cab3d30a56}, !- Space Name + Surface, !- Outside Boundary Condition + {1bd66049-0255-4c33-8e2a-fe5a4600bc00}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5e83d320-35b6-4ddb-b3c1-0428e252fcf7}, !- Handle + Surface 181, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {8a8a5126-a31e-4178-ac83-c0cab3d30a56}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 0.275720313960917, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 0.275720313960917, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-14, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {927ae9c5-c756-473b-800d-b1cab01cf57d}, !- Handle + Surface 182, !- Name + Wall, !- Surface Type + , !- Construction Name + {8a8a5126-a31e-4178-ac83-c0cab3d30a56}, !- Space Name + Surface, !- Outside Boundary Condition + {a16a2fc6-2d19-47da-bd3e-2b0a65b28553}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.275720313960917, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0.275720313960917, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 0.275720313960917, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0.275720313960917, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0db5f0c9-1a50-431a-a298-76d084b54bdf}, !- Handle + Surface 183, !- Name + Wall, !- Surface Type + , !- Construction Name + {8a8a5126-a31e-4178-ac83-c0cab3d30a56}, !- Space Name + Surface, !- Outside Boundary Condition + {5442c507-7de5-4be9-81be-6fd7bfd045aa}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-14, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 0.275720313960917, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 0.275720313960917, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {596175b5-7537-4df0-a60b-3c3a1c1d23e4}, !- Handle + Surface 184, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {8a8a5126-a31e-4178-ac83-c0cab3d30a56}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.275720313960917, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0.275720313960917, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {310c86a5-8e3f-45ee-9f12-2c6003c46c8b}, !- Handle + Zone Outpatient BioHazard C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {518cf85b-e755-4a02-9a70-9b71a7295f27}, !- Zone Air Inlet Port List + {a063b08f-99b2-4bc4-8b1f-afc215c1bc33}, !- Zone Air Exhaust Port List + {2f53abd3-5c31-406f-bcbf-3b084a7b1d76}, !- Zone Air Node Name + {db541477-03ed-420d-b7a3-ca5cc76476c4}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {976e7970-c2e9-405e-82c6-c5be093c3845}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {2b6c0931-56f1-499c-b4d5-5a8c326ac225}, !- Handle + Zone Outpatient BioHazard C - Story ground Zone Air Node, !- Name + {2f53abd3-5c31-406f-bcbf-3b084a7b1d76}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {2f53abd3-5c31-406f-bcbf-3b084a7b1d76}, !- Handle + {310c86a5-8e3f-45ee-9f12-2c6003c46c8b}, !- Source Object + 11, !- Outlet Port + {2b6c0931-56f1-499c-b4d5-5a8c326ac225}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {518cf85b-e755-4a02-9a70-9b71a7295f27}, !- Handle + {310c86a5-8e3f-45ee-9f12-2c6003c46c8b}, !- HVAC Component + {9ca78d38-d49b-4e89-8ca7-4ea2eb6af863}, !- Port 1 + {958d4f44-1c4b-44ea-a996-b0dcc318211e}; !- Port 2 + +OS:PortList, + {a063b08f-99b2-4bc4-8b1f-afc215c1bc33}, !- Handle + {310c86a5-8e3f-45ee-9f12-2c6003c46c8b}, !- HVAC Component + {dcf5b2d3-7c2d-4fff-ae9a-6062955016eb}; !- Port 1 + +OS:PortList, + {db541477-03ed-420d-b7a3-ca5cc76476c4}, !- Handle + {310c86a5-8e3f-45ee-9f12-2c6003c46c8b}, !- HVAC Component + {504437de-ca86-4d49-9284-ac052563d714}; !- Port 1 + +OS:Sizing:Zone, + {2603bb29-65c0-44d0-abca-b39592b677e2}, !- Handle + {310c86a5-8e3f-45ee-9f12-2c6003c46c8b}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {9ff14fa2-149c-4d1e-93b0-dcdca3e6296c}, !- Handle + Zone Outpatient BioHazard C - Story ground Zone HVAC Equipment List, !- Name + {310c86a5-8e3f-45ee-9f12-2c6003c46c8b}, !- Thermal Zone + , !- Load Distribution Scheme + {b25ba963-0149-4c4b-b46e-e4f4a8539691}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {70a7b9c0-1dfa-4995-9465-9bffa2433618}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {90d4cf3e-ce89-403d-8ced-868623722333}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {628a97ac-94da-47a7-b55a-7639a3423514}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {19a5f2dc-793b-41a7-a245-2a4dcd425dd6}, !- Handle + Outpatient MedGas A - Story ground, !- Name + {117f4d87-7bb7-4e81-9561-b5cd18d45f9d}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 88.1849589836253, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {a520aa47-f965-4bac-b8ce-32abbd040823}; !- Thermal Zone Name + +OS:Surface, + {787e547b-88df-4871-91d3-61ba48b0d032}, !- Handle + Surface 185, !- Name + Floor, !- Surface Type + {046906e6-e364-4672-8af0-88bf482192b8}, !- Construction Name + {19a5f2dc-793b-41a7-a245-2a4dcd425dd6}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0.275720313960903, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0.275720313960903, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9f1621c1-8196-4ede-b0f3-0adec13c2e44}, !- Handle + Surface 186, !- Name + Wall, !- Surface Type + , !- Construction Name + {19a5f2dc-793b-41a7-a245-2a4dcd425dd6}, !- Space Name + Surface, !- Outside Boundary Condition + {86abc534-da01-4998-8bd8-946007a59baf}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f7585450-a9ec-4baa-a11d-5d3dc6664b07}, !- Handle + Surface 187, !- Name + Wall, !- Surface Type + , !- Construction Name + {19a5f2dc-793b-41a7-a245-2a4dcd425dd6}, !- Space Name + Surface, !- Outside Boundary Condition + {65ff3e5d-2523-461b-8975-9d2cda6fe3b9}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.275720313960903, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 0.275720313960903, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {172273e7-c7d1-444d-98c7-ed2784efedd4}, !- Handle + Surface 188, !- Name + Wall, !- Surface Type + , !- Construction Name + {19a5f2dc-793b-41a7-a245-2a4dcd425dd6}, !- Space Name + Surface, !- Outside Boundary Condition + {ede07823-098d-4658-a10d-e323dbf10d44}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.275720313960903, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.275720313960903, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.275720313960903, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0.275720313960903, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {599a7631-8176-4aaa-9bad-28ea49633579}, !- Handle + Surface 189, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {19a5f2dc-793b-41a7-a245-2a4dcd425dd6}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.275720313960903, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 0.275720313960903, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {960501c3-ad7b-43b0-b6c3-255578bf11fc}, !- Handle + Surface 190, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {19a5f2dc-793b-41a7-a245-2a4dcd425dd6}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.275720313960903, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.275720313960903, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + 0, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {a520aa47-f965-4bac-b8ce-32abbd040823}, !- Handle + Zone Outpatient MedGas A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {8325e3d6-0b61-4bbf-92c8-e3f0c9a8a27c}, !- Zone Air Inlet Port List + {5420eea7-0e8e-4c1f-b759-8c7193e286a8}, !- Zone Air Exhaust Port List + {af7af712-9fe8-4dd9-b3d0-e8ddb388756d}, !- Zone Air Node Name + {c5427524-cf2a-4ea2-817b-f57ce13d43e7}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {0f549b35-641b-4765-b6c8-03aa1dbdda2b}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {3c3d5e9e-7e88-46aa-aa27-cfb502e37a9d}, !- Handle + Zone Outpatient MedGas A - Story ground Zone Air Node, !- Name + {af7af712-9fe8-4dd9-b3d0-e8ddb388756d}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {af7af712-9fe8-4dd9-b3d0-e8ddb388756d}, !- Handle + {a520aa47-f965-4bac-b8ce-32abbd040823}, !- Source Object + 11, !- Outlet Port + {3c3d5e9e-7e88-46aa-aa27-cfb502e37a9d}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {8325e3d6-0b61-4bbf-92c8-e3f0c9a8a27c}, !- Handle + {a520aa47-f965-4bac-b8ce-32abbd040823}, !- HVAC Component + {de9a8bb1-db8c-4dc0-9520-2dc0664a6689}, !- Port 1 + {07d40655-bbf2-4e6b-a5c0-75b3a2b83e35}; !- Port 2 + +OS:PortList, + {5420eea7-0e8e-4c1f-b759-8c7193e286a8}, !- Handle + {a520aa47-f965-4bac-b8ce-32abbd040823}, !- HVAC Component + {63e37293-6d4d-43ca-81c1-29ad418c2644}; !- Port 1 + +OS:PortList, + {c5427524-cf2a-4ea2-817b-f57ce13d43e7}, !- Handle + {a520aa47-f965-4bac-b8ce-32abbd040823}, !- HVAC Component + {caa3f561-8d76-4c7d-8d55-c34e8b1e2853}; !- Port 1 + +OS:Sizing:Zone, + {8e0ca911-c43b-48a4-920a-b8b7082c418f}, !- Handle + {a520aa47-f965-4bac-b8ce-32abbd040823}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {aacf60a4-e3a1-49f5-aaba-e478dec3fdb2}, !- Handle + Zone Outpatient MedGas A - Story ground Zone HVAC Equipment List, !- Name + {a520aa47-f965-4bac-b8ce-32abbd040823}, !- Thermal Zone + , !- Load Distribution Scheme + {4208dfe9-9b53-4e5a-9c04-1f328c16606f}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {fbfaf460-5dfb-495a-898d-b09f3d5ce2c9}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {5b92c22e-cabf-4dff-8d79-80d6f7aa356d}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {2563eb8c-cec3-4f41-b150-64b82ec2e8f7}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {323ff0c3-47e6-415f-a852-647dd6823779}, !- Handle + Outpatient MedGas B - Story ground, !- Name + {117f4d87-7bb7-4e81-9561-b5cd18d45f9d}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 88.1849589836253, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {3176bef0-7ce5-4b9b-8b37-e23e13a777da}; !- Thermal Zone Name + +OS:Surface, + {93e5a6a5-a84b-496d-95ac-33b310ee8132}, !- Handle + Surface 191, !- Name + Floor, !- Surface Type + {d869f62d-7c8d-4c7b-907b-ae210e2dc98f}, !- Construction Name + {323ff0c3-47e6-415f-a852-647dd6823779}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + 0, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 0.275720313960903, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 0.275720313960903, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {623782c9-14d9-4f9b-98ec-f55a4fca6050}, !- Handle + Surface 192, !- Name + Wall, !- Surface Type + , !- Construction Name + {323ff0c3-47e6-415f-a852-647dd6823779}, !- Space Name + Surface, !- Outside Boundary Condition + {1c81cb45-53f2-4ca2-ba37-d4f9d9520d74}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {92da0521-323a-46d7-a492-6963c5531393}, !- Handle + Surface 193, !- Name + Wall, !- Surface Type + , !- Construction Name + {323ff0c3-47e6-415f-a852-647dd6823779}, !- Space Name + Surface, !- Outside Boundary Condition + {91d694a3-3341-47f3-ab1b-8f16e4577475}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.275720313960903, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 0.275720313960903, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + 0, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + 0, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ee7a3756-e8d6-4144-bb5f-963097f92447}, !- Handle + Surface 194, !- Name + Wall, !- Surface Type + , !- Construction Name + {323ff0c3-47e6-415f-a852-647dd6823779}, !- Space Name + Surface, !- Outside Boundary Condition + {5498c9e2-453e-4aab-b12c-4cb9478941df}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.275720313960903, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.275720313960903, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.275720313960903, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 0.275720313960903, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {65ff3e5d-2523-461b-8975-9d2cda6fe3b9}, !- Handle + Surface 195, !- Name + Wall, !- Surface Type + , !- Construction Name + {323ff0c3-47e6-415f-a852-647dd6823779}, !- Space Name + Surface, !- Outside Boundary Condition + {f7585450-a9ec-4baa-a11d-5d3dc6664b07}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.275720313960903, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 0.275720313960903, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {96aec9a5-7562-4f6c-b5b7-781e997d1f72}, !- Handle + Surface 196, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {323ff0c3-47e6-415f-a852-647dd6823779}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.275720313960903, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.275720313960903, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + 0, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {3176bef0-7ce5-4b9b-8b37-e23e13a777da}, !- Handle + Zone Outpatient MedGas B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {42d35d96-0473-4ced-bdea-f693a3a5fe02}, !- Zone Air Inlet Port List + {23b5d3b5-aa8a-47fa-af3d-f10eff953b98}, !- Zone Air Exhaust Port List + {677b434b-4bfc-44aa-9873-b6c6fc432add}, !- Zone Air Node Name + {42ae2ca9-908d-41b6-b743-740c9355575d}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {080bfab2-e227-4bf3-9477-c4d00444572f}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {961b7c21-6997-4ce2-bc63-45ddec83976e}, !- Handle + Zone Outpatient MedGas B - Story ground Zone Air Node, !- Name + {677b434b-4bfc-44aa-9873-b6c6fc432add}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {677b434b-4bfc-44aa-9873-b6c6fc432add}, !- Handle + {3176bef0-7ce5-4b9b-8b37-e23e13a777da}, !- Source Object + 11, !- Outlet Port + {961b7c21-6997-4ce2-bc63-45ddec83976e}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {42d35d96-0473-4ced-bdea-f693a3a5fe02}, !- Handle + {3176bef0-7ce5-4b9b-8b37-e23e13a777da}, !- HVAC Component + {334ac026-18db-4760-8483-d51be52f6109}, !- Port 1 + {43299087-8fcc-411a-a67e-efbf945df7de}; !- Port 2 + +OS:PortList, + {23b5d3b5-aa8a-47fa-af3d-f10eff953b98}, !- Handle + {3176bef0-7ce5-4b9b-8b37-e23e13a777da}, !- HVAC Component + {eafdbdbe-4516-4519-ad13-013c24794ce2}; !- Port 1 + +OS:PortList, + {42ae2ca9-908d-41b6-b743-740c9355575d}, !- Handle + {3176bef0-7ce5-4b9b-8b37-e23e13a777da}, !- HVAC Component + {218e8ddb-9b00-4db7-be05-65f3f852da9a}; !- Port 1 + +OS:Sizing:Zone, + {3fd3e74c-567c-4e55-b126-6286815dfc8b}, !- Handle + {3176bef0-7ce5-4b9b-8b37-e23e13a777da}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {de5306f9-3193-438f-b2a1-6acc3a1c2f5c}, !- Handle + Zone Outpatient MedGas B - Story ground Zone HVAC Equipment List, !- Name + {3176bef0-7ce5-4b9b-8b37-e23e13a777da}, !- Thermal Zone + , !- Load Distribution Scheme + {0b7a1f78-c244-447a-a39b-00dc35024a85}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {104c79b5-8408-48d8-b1c6-2604f8a5fc61}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {90a13dbd-4bc0-48b1-88b3-f76e6cdaf6ad}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {67013009-5cca-4372-b820-956518afe039}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {d594fa46-1c78-462f-9652-b3025d136c84}, !- Handle + Outpatient MedGas C - Story ground, !- Name + {117f4d87-7bb7-4e81-9561-b5cd18d45f9d}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 88.1849589836253, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {bce9cd82-d856-409b-b2b8-195836b94ab4}; !- Thermal Zone Name + +OS:Surface, + {1b836074-4d88-451a-8c95-6bd7bf961cfa}, !- Handle + Surface 197, !- Name + Floor, !- Surface Type + {046906e6-e364-4672-8af0-88bf482192b8}, !- Construction Name + {d594fa46-1c78-462f-9652-b3025d136c84}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + 0, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 0.275720313960903, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0.275720313960903, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a16a2fc6-2d19-47da-bd3e-2b0a65b28553}, !- Handle + Surface 198, !- Name + Wall, !- Surface Type + , !- Construction Name + {d594fa46-1c78-462f-9652-b3025d136c84}, !- Space Name + Surface, !- Outside Boundary Condition + {927ae9c5-c756-473b-800d-b1cab01cf57d}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {e851663b-c06a-470d-930e-f280bb1683b3}, !- Handle + Surface 199, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {d594fa46-1c78-462f-9652-b3025d136c84}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 0.275720313960903, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 0.275720313960903, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {e9169217-cf40-4218-a7bb-e8703018e2fc}, !- Handle + Surface 200, !- Name + Wall, !- Surface Type + , !- Construction Name + {d594fa46-1c78-462f-9652-b3025d136c84}, !- Space Name + Surface, !- Outside Boundary Condition + {b750e9bb-d88f-4cbf-8884-87a2df46276c}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.275720313960903, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0.275720313960903, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 0.275720313960903, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0.275720313960903, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {91d694a3-3341-47f3-ab1b-8f16e4577475}, !- Handle + Surface 201, !- Name + Wall, !- Surface Type + , !- Construction Name + {d594fa46-1c78-462f-9652-b3025d136c84}, !- Space Name + Surface, !- Outside Boundary Condition + {92da0521-323a-46d7-a492-6963c5531393}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 0.275720313960903, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 0.275720313960903, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0861896d-5bc1-4686-9818-21566dd3dd48}, !- Handle + Surface 202, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {d594fa46-1c78-462f-9652-b3025d136c84}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.275720313960903, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0.275720313960903, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + 0, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {bce9cd82-d856-409b-b2b8-195836b94ab4}, !- Handle + Zone Outpatient MedGas C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {a07dac7f-5e2e-4ad6-ad8f-81c6ca849f8e}, !- Zone Air Inlet Port List + {c9175bc4-ec9f-4c17-ad9e-7b377c09c267}, !- Zone Air Exhaust Port List + {46bfb62f-8258-4a4e-80e6-fc3961c442bf}, !- Zone Air Node Name + {9df07b3f-5b41-4aa9-8c1d-8259168d0503}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {bbe6579c-d442-4b8c-86a8-d4de664b9686}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {bb39d073-4d22-4f39-8bf9-363d14f0af7c}, !- Handle + Zone Outpatient MedGas C - Story ground Zone Air Node, !- Name + {46bfb62f-8258-4a4e-80e6-fc3961c442bf}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {46bfb62f-8258-4a4e-80e6-fc3961c442bf}, !- Handle + {bce9cd82-d856-409b-b2b8-195836b94ab4}, !- Source Object + 11, !- Outlet Port + {bb39d073-4d22-4f39-8bf9-363d14f0af7c}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {a07dac7f-5e2e-4ad6-ad8f-81c6ca849f8e}, !- Handle + {bce9cd82-d856-409b-b2b8-195836b94ab4}, !- HVAC Component + {4ca5f29e-be96-4676-b949-96cb6d85d805}, !- Port 1 + {69651de9-e894-42b0-b130-09b23f7f3256}; !- Port 2 + +OS:PortList, + {c9175bc4-ec9f-4c17-ad9e-7b377c09c267}, !- Handle + {bce9cd82-d856-409b-b2b8-195836b94ab4}, !- HVAC Component + {ddaf326a-8bc5-4561-b4e3-13dcc2ba779c}; !- Port 1 + +OS:PortList, + {9df07b3f-5b41-4aa9-8c1d-8259168d0503}, !- Handle + {bce9cd82-d856-409b-b2b8-195836b94ab4}, !- HVAC Component + {035b7437-ac08-48a3-8a81-0c06783fcdec}; !- Port 1 + +OS:Sizing:Zone, + {13de03f9-1525-44b4-bc16-1321b5ebe8c1}, !- Handle + {bce9cd82-d856-409b-b2b8-195836b94ab4}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {b80a8dcf-489f-4791-bec4-33c02191f809}, !- Handle + Zone Outpatient MedGas C - Story ground Zone HVAC Equipment List, !- Name + {bce9cd82-d856-409b-b2b8-195836b94ab4}, !- Thermal Zone + , !- Load Distribution Scheme + {5f33437a-7212-4f85-a662-6eb77760de2e}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {5db5eecf-0f18-4e86-b31c-2c29531aa574}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {a83fbbec-8a0e-426d-97fb-011e59c20323}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {130abc13-851e-48c4-bbb7-81661d53301a}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {905eb233-f56e-4e1a-a950-e05213a51981}, !- Handle + Outpatient DressingRoom A - Story ground, !- Name + {186554b7-5d4c-463b-8382-6d118c7366be}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 88.4606792975862, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {c2e153d4-dfe3-4ec9-9d10-a4fd57f4880c}; !- Thermal Zone Name + +OS:Surface, + {2883e895-5b93-46e5-b421-39e9fe58c902}, !- Handle + Surface 203, !- Name + Floor, !- Surface Type + {b60070a3-29cb-400f-9f6d-d01fea9151f7}, !- Construction Name + {905eb233-f56e-4e1a-a950-e05213a51981}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0.413580470941383, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0.413580470941383, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ede07823-098d-4658-a10d-e323dbf10d44}, !- Handle + Surface 204, !- Name + Wall, !- Surface Type + , !- Construction Name + {905eb233-f56e-4e1a-a950-e05213a51981}, !- Space Name + Surface, !- Outside Boundary Condition + {172273e7-c7d1-444d-98c7-ed2784efedd4}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ee88c9e6-654d-4deb-91ad-03acac737644}, !- Handle + Surface 205, !- Name + Wall, !- Surface Type + , !- Construction Name + {905eb233-f56e-4e1a-a950-e05213a51981}, !- Space Name + Surface, !- Outside Boundary Condition + {195a7e21-39e7-46dc-b5ef-eb2711322e57}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.413580470941383, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 0.413580470941383, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {e4cfbf90-9825-46e1-adfb-9e149c72f9be}, !- Handle + Surface 206, !- Name + Wall, !- Surface Type + , !- Construction Name + {905eb233-f56e-4e1a-a950-e05213a51981}, !- Space Name + Surface, !- Outside Boundary Condition + {21feb308-92df-43d9-86ca-7532b1747cbf}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.413580470941383, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.413580470941383, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.413580470941383, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0.413580470941383, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fb4155d2-40c9-441e-966c-dab9807437ff}, !- Handle + Surface 207, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {905eb233-f56e-4e1a-a950-e05213a51981}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.413580470941383, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 0.413580470941383, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {64a6ebd7-b61f-4afb-9674-4fc1846cf5d2}, !- Handle + Surface 208, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {905eb233-f56e-4e1a-a950-e05213a51981}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.413580470941383, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.413580470941383, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {c2e153d4-dfe3-4ec9-9d10-a4fd57f4880c}, !- Handle + Zone Outpatient DressingRoom A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {1888e77d-428c-42d1-a754-d3eb3ea20582}, !- Zone Air Inlet Port List + {e6faf9c1-b5f7-4183-a1c2-91f74aa18485}, !- Zone Air Exhaust Port List + {9dfae5e1-6643-4930-adb7-0d1d93d01c34}, !- Zone Air Node Name + {43bc981a-d05a-4fc0-a6a0-dc7a5e95e4dc}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {e34d465b-322c-4418-91c8-f683fd33234a}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {b51b719e-24c9-42d9-b9e6-8100c3f7a5c5}, !- Handle + Zone Outpatient DressingRoom A - Story ground Zone Air Node, !- Name + {9dfae5e1-6643-4930-adb7-0d1d93d01c34}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {9dfae5e1-6643-4930-adb7-0d1d93d01c34}, !- Handle + {c2e153d4-dfe3-4ec9-9d10-a4fd57f4880c}, !- Source Object + 11, !- Outlet Port + {b51b719e-24c9-42d9-b9e6-8100c3f7a5c5}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {1888e77d-428c-42d1-a754-d3eb3ea20582}, !- Handle + {c2e153d4-dfe3-4ec9-9d10-a4fd57f4880c}, !- HVAC Component + {0b87205f-96cc-461a-b646-4119516863b8}, !- Port 1 + {52cf622c-2f76-44ca-a289-2f2abc942ebc}; !- Port 2 + +OS:PortList, + {e6faf9c1-b5f7-4183-a1c2-91f74aa18485}, !- Handle + {c2e153d4-dfe3-4ec9-9d10-a4fd57f4880c}, !- HVAC Component + {3188afb2-6d40-4430-a5ed-60f88aed9303}; !- Port 1 + +OS:PortList, + {43bc981a-d05a-4fc0-a6a0-dc7a5e95e4dc}, !- Handle + {c2e153d4-dfe3-4ec9-9d10-a4fd57f4880c}, !- HVAC Component + {093962d8-a4bd-4b38-a369-27ed67d517f5}; !- Port 1 + +OS:Sizing:Zone, + {b0d41bee-f085-4201-a813-0a78821c1b32}, !- Handle + {c2e153d4-dfe3-4ec9-9d10-a4fd57f4880c}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {22830256-c458-4c28-855b-5c3a16b6babb}, !- Handle + Zone Outpatient DressingRoom A - Story ground Zone HVAC Equipment List, !- Name + {c2e153d4-dfe3-4ec9-9d10-a4fd57f4880c}, !- Thermal Zone + , !- Load Distribution Scheme + {5804bcf6-6d01-4893-b12e-630481a251cc}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {19ba6123-5437-4abb-8b15-ad417c1847d4}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {707945dc-1480-47d5-9e4a-e1b885222181}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {745b3d59-c161-4e76-be5f-6ae567af0dec}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {15fff177-458d-4cfe-9df1-90f883a5655b}, !- Handle + Outpatient DressingRoom B - Story ground, !- Name + {186554b7-5d4c-463b-8382-6d118c7366be}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 88.4606792975862, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {3f94c610-eaf0-4e0d-9f7e-122f3138585c}; !- Thermal Zone Name + +OS:Surface, + {d650a972-e96f-4e65-89c6-5dd039067742}, !- Handle + Surface 209, !- Name + Floor, !- Surface Type + {62d3bad0-0b04-44f8-8d6a-b6ec6f0eac8b}, !- Construction Name + {15fff177-458d-4cfe-9df1-90f883a5655b}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 0.413580470941383, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 0.413580470941383, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5498c9e2-453e-4aab-b12c-4cb9478941df}, !- Handle + Surface 210, !- Name + Wall, !- Surface Type + , !- Construction Name + {15fff177-458d-4cfe-9df1-90f883a5655b}, !- Space Name + Surface, !- Outside Boundary Condition + {ee7a3756-e8d6-4144-bb5f-963097f92447}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 0, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {63f1382a-d6f1-4ac0-9cea-05c9070d23f8}, !- Handle + Surface 211, !- Name + Wall, !- Surface Type + , !- Construction Name + {15fff177-458d-4cfe-9df1-90f883a5655b}, !- Space Name + Surface, !- Outside Boundary Condition + {b26a8cd7-07de-41d2-9ec6-bf8d3e6375b1}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.413580470941383, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 0.413580470941383, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {03776f4b-f133-47cc-a672-457c50cf4c77}, !- Handle + Surface 212, !- Name + Wall, !- Surface Type + , !- Construction Name + {15fff177-458d-4cfe-9df1-90f883a5655b}, !- Space Name + Surface, !- Outside Boundary Condition + {81467deb-3887-4c49-8bd5-bd1901cfe4ee}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.413580470941383, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.413580470941383, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.413580470941383, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 0.413580470941383, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {195a7e21-39e7-46dc-b5ef-eb2711322e57}, !- Handle + Surface 213, !- Name + Wall, !- Surface Type + , !- Construction Name + {15fff177-458d-4cfe-9df1-90f883a5655b}, !- Space Name + Surface, !- Outside Boundary Condition + {ee88c9e6-654d-4deb-91ad-03acac737644}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.413580470941383, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 0.413580470941383, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fa09b1b1-5a5c-4aa4-bba1-53490a66ab4a}, !- Handle + Surface 214, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {15fff177-458d-4cfe-9df1-90f883a5655b}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.413580470941383, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.413580470941383, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {3f94c610-eaf0-4e0d-9f7e-122f3138585c}, !- Handle + Zone Outpatient DressingRoom B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {4ed58ed7-fb25-4149-9d2e-3ec685b14c84}, !- Zone Air Inlet Port List + {532e0dee-b083-4064-a83b-b67179ff5c2a}, !- Zone Air Exhaust Port List + {16e17ce6-aee8-4e9a-b802-8b0959544edd}, !- Zone Air Node Name + {4b9bf036-57ba-46b6-93da-ce289e8f76ae}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {0d041364-dc3a-4b57-ab5f-2a9a943c06ba}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {807dc36d-6726-49fb-aead-8214dba91412}, !- Handle + Zone Outpatient DressingRoom B - Story ground Zone Air Node, !- Name + {16e17ce6-aee8-4e9a-b802-8b0959544edd}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {16e17ce6-aee8-4e9a-b802-8b0959544edd}, !- Handle + {3f94c610-eaf0-4e0d-9f7e-122f3138585c}, !- Source Object + 11, !- Outlet Port + {807dc36d-6726-49fb-aead-8214dba91412}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {4ed58ed7-fb25-4149-9d2e-3ec685b14c84}, !- Handle + {3f94c610-eaf0-4e0d-9f7e-122f3138585c}, !- HVAC Component + {c4ec75dc-6cc3-4bee-9611-f239b65ba280}, !- Port 1 + {d12652b6-5a17-4b28-9ba9-8e7b17e11423}; !- Port 2 + +OS:PortList, + {532e0dee-b083-4064-a83b-b67179ff5c2a}, !- Handle + {3f94c610-eaf0-4e0d-9f7e-122f3138585c}, !- HVAC Component + {27ef7b83-13b4-4e76-ae0f-d523d23f1b7a}; !- Port 1 + +OS:PortList, + {4b9bf036-57ba-46b6-93da-ce289e8f76ae}, !- Handle + {3f94c610-eaf0-4e0d-9f7e-122f3138585c}, !- HVAC Component + {60109d37-9ddb-455a-911c-7d0e55dd06e9}; !- Port 1 + +OS:Sizing:Zone, + {b6c46787-4045-462e-af5b-1c2b31c63939}, !- Handle + {3f94c610-eaf0-4e0d-9f7e-122f3138585c}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {e7068f30-cd9a-4dc1-9536-da9b6868684e}, !- Handle + Zone Outpatient DressingRoom B - Story ground Zone HVAC Equipment List, !- Name + {3f94c610-eaf0-4e0d-9f7e-122f3138585c}, !- Thermal Zone + , !- Load Distribution Scheme + {328b5890-de42-4aed-8e17-c77d9c906fd9}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {f1b01866-0f9c-46d6-babf-b2bce40ffa1f}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {05951e5b-74d6-43d4-b3f5-5bb74de00265}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {cd2fc895-2edc-47bd-89e7-e540caf1f042}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {54e62949-4f1e-480b-be17-794fe9a7a448}, !- Handle + Outpatient DressingRoom C - Story ground, !- Name + {186554b7-5d4c-463b-8382-6d118c7366be}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 88.4606792975862, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {4c308793-2050-4686-8d05-5af91db8f3fe}; !- Thermal Zone Name + +OS:Surface, + {7e1d1631-77b3-4a95-924d-254a5a0223ba}, !- Handle + Surface 215, !- Name + Floor, !- Surface Type + {b60070a3-29cb-400f-9f6d-d01fea9151f7}, !- Construction Name + {54e62949-4f1e-480b-be17-794fe9a7a448}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 0.413580470941383, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0.413580470941383, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b750e9bb-d88f-4cbf-8884-87a2df46276c}, !- Handle + Surface 216, !- Name + Wall, !- Surface Type + , !- Construction Name + {54e62949-4f1e-480b-be17-794fe9a7a448}, !- Space Name + Surface, !- Outside Boundary Condition + {e9169217-cf40-4218-a7bb-e8703018e2fc}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 0, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 0, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {aeaccd4d-1f6b-4706-9448-37c677b84466}, !- Handle + Surface 217, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {54e62949-4f1e-480b-be17-794fe9a7a448}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 0.413580470941383, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 0.413580470941383, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d4a4d6ae-085f-4f18-b5d7-0b68b5c1cfff}, !- Handle + Surface 218, !- Name + Wall, !- Surface Type + , !- Construction Name + {54e62949-4f1e-480b-be17-794fe9a7a448}, !- Space Name + Surface, !- Outside Boundary Condition + {d19453e2-2acb-4b8e-b976-14589420f6d3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.413580470941383, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0.413580470941383, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 0.413580470941383, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0.413580470941383, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b26a8cd7-07de-41d2-9ec6-bf8d3e6375b1}, !- Handle + Surface 219, !- Name + Wall, !- Surface Type + , !- Construction Name + {54e62949-4f1e-480b-be17-794fe9a7a448}, !- Space Name + Surface, !- Outside Boundary Condition + {63f1382a-d6f1-4ac0-9cea-05c9070d23f8}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 0.413580470941383, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 0.413580470941383, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {61176ca0-aa18-4467-b958-aabe04a778da}, !- Handle + Surface 220, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {54e62949-4f1e-480b-be17-794fe9a7a448}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.413580470941383, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0.413580470941383, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {4c308793-2050-4686-8d05-5af91db8f3fe}, !- Handle + Zone Outpatient DressingRoom C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {597c798b-1791-4fd7-a153-75782f8330ac}, !- Zone Air Inlet Port List + {2ee084ab-3c57-4ec8-90f4-a3d0ff72af81}, !- Zone Air Exhaust Port List + {bd03f8a2-e535-450b-ba2b-31572c2e909f}, !- Zone Air Node Name + {19c8d59a-9adb-4938-b915-34827f35796f}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {35a42b72-3b0e-4c52-939e-87420d8d45a1}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {df26da15-76a4-4f45-8cb2-690e9605ecda}, !- Handle + Zone Outpatient DressingRoom C - Story ground Zone Air Node, !- Name + {bd03f8a2-e535-450b-ba2b-31572c2e909f}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {bd03f8a2-e535-450b-ba2b-31572c2e909f}, !- Handle + {4c308793-2050-4686-8d05-5af91db8f3fe}, !- Source Object + 11, !- Outlet Port + {df26da15-76a4-4f45-8cb2-690e9605ecda}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {597c798b-1791-4fd7-a153-75782f8330ac}, !- Handle + {4c308793-2050-4686-8d05-5af91db8f3fe}, !- HVAC Component + {1e2225e0-4603-4803-b762-b2a2dc40b8eb}, !- Port 1 + {9fc25b2a-9907-4a22-8f7a-7c7b1c9f182b}; !- Port 2 + +OS:PortList, + {2ee084ab-3c57-4ec8-90f4-a3d0ff72af81}, !- Handle + {4c308793-2050-4686-8d05-5af91db8f3fe}, !- HVAC Component + {b54f458b-1d61-4e5f-ba07-28ca8bcd8715}; !- Port 1 + +OS:PortList, + {19c8d59a-9adb-4938-b915-34827f35796f}, !- Handle + {4c308793-2050-4686-8d05-5af91db8f3fe}, !- HVAC Component + {70f1861f-f351-4746-a5df-4daa3965ec04}; !- Port 1 + +OS:Sizing:Zone, + {a67b24b2-f936-44c6-b346-4af10633d3e7}, !- Handle + {4c308793-2050-4686-8d05-5af91db8f3fe}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {a1d5dfdf-8002-45f4-8bd7-2e0353e70a28}, !- Handle + Zone Outpatient DressingRoom C - Story ground Zone HVAC Equipment List, !- Name + {4c308793-2050-4686-8d05-5af91db8f3fe}, !- Thermal Zone + , !- Load Distribution Scheme + {d73915f1-4181-4e69-b9ed-00b1978011f6}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {c3c15543-b276-498c-9615-d98937ae3553}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {72f0f75f-d196-419b-86c6-ffca576b9465}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {134ab194-1381-40e8-94dd-f19b2160eb76}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {9ba9e63c-0f59-4690-a22a-fbb127fc72e9}, !- Handle + Outpatient ElevatorPumpRoom A - Story ground, !- Name + {c0c1e222-fa00-4a79-91b3-309953f143b4}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 88.8742597685276, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {77693b57-97b7-49be-ad13-b3cce950b997}; !- Thermal Zone Name + +OS:Surface, + {3bdef0ff-ee2a-4a97-bde5-f80f593b8708}, !- Handle + Surface 221, !- Name + Floor, !- Surface Type + {ad14fe1f-84f6-4526-89e2-54bc64d05bed}, !- Construction Name + {9ba9e63c-0f59-4690-a22a-fbb127fc72e9}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0.433274779081401, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0.433274779081401, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {21feb308-92df-43d9-86ca-7532b1747cbf}, !- Handle + Surface 222, !- Name + Wall, !- Surface Type + , !- Construction Name + {9ba9e63c-0f59-4690-a22a-fbb127fc72e9}, !- Space Name + Surface, !- Outside Boundary Condition + {e4cfbf90-9825-46e1-adfb-9e149c72f9be}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a345198f-7352-4adf-9f0c-bfe11ca6cbab}, !- Handle + Surface 223, !- Name + Wall, !- Surface Type + , !- Construction Name + {9ba9e63c-0f59-4690-a22a-fbb127fc72e9}, !- Space Name + Surface, !- Outside Boundary Condition + {b100604f-a3e5-411d-91af-dd6ca3a4090f}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.433274779081401, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 0.433274779081401, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {28ea00d8-642d-4106-aa5d-79bc3345c5fa}, !- Handle + Surface 224, !- Name + Wall, !- Surface Type + , !- Construction Name + {9ba9e63c-0f59-4690-a22a-fbb127fc72e9}, !- Space Name + Surface, !- Outside Boundary Condition + {72813e69-9ae3-4d04-82f7-d7e30aad3c90}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.433274779081401, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.433274779081401, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.433274779081401, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0.433274779081401, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9910aecb-6df3-4a08-b974-fe62406df3d2}, !- Handle + Surface 225, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {9ba9e63c-0f59-4690-a22a-fbb127fc72e9}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.433274779081401, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 0.433274779081401, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {e1e1a550-46e2-4953-a0c2-26a6c3f82071}, !- Handle + Surface 226, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {9ba9e63c-0f59-4690-a22a-fbb127fc72e9}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.433274779081401, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.433274779081401, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + 0, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {77693b57-97b7-49be-ad13-b3cce950b997}, !- Handle + Zone Outpatient ElevatorPumpRoom A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {b7a791a2-22c5-42e1-8437-706e115e60ab}, !- Zone Air Inlet Port List + {ef500ae1-ae33-435c-9a25-2aa5b9e750e6}, !- Zone Air Exhaust Port List + {69b775fd-bd56-4f77-9292-c181a6f395a4}, !- Zone Air Node Name + {4087fe82-16e6-4f8d-be40-8784a1ce0f97}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {16227a59-2ea4-4245-8375-fb1812d09555}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {beb70069-caf6-4fc4-81a2-e6e52b328896}, !- Handle + Zone Outpatient ElevatorPumpRoom A - Story ground Zone Air Node, !- Name + {69b775fd-bd56-4f77-9292-c181a6f395a4}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {69b775fd-bd56-4f77-9292-c181a6f395a4}, !- Handle + {77693b57-97b7-49be-ad13-b3cce950b997}, !- Source Object + 11, !- Outlet Port + {beb70069-caf6-4fc4-81a2-e6e52b328896}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {b7a791a2-22c5-42e1-8437-706e115e60ab}, !- Handle + {77693b57-97b7-49be-ad13-b3cce950b997}, !- HVAC Component + {ac2ef52c-7afe-48ba-a4b2-247231a7da3d}; !- Port 1 + +OS:PortList, + {ef500ae1-ae33-435c-9a25-2aa5b9e750e6}, !- Handle + {77693b57-97b7-49be-ad13-b3cce950b997}, !- HVAC Component + {6fe8fa27-d4b8-4da9-b4b8-28f8f394d425}; !- Port 1 + +OS:PortList, + {4087fe82-16e6-4f8d-be40-8784a1ce0f97}, !- Handle + {77693b57-97b7-49be-ad13-b3cce950b997}; !- HVAC Component + +OS:Sizing:Zone, + {68e0e061-c7b3-437a-a26a-d58577a89598}, !- Handle + {77693b57-97b7-49be-ad13-b3cce950b997}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {76f0279a-7795-418a-a847-760a639f4d03}, !- Handle + Zone Outpatient ElevatorPumpRoom A - Story ground Zone HVAC Equipment List, !- Name + {77693b57-97b7-49be-ad13-b3cce950b997}, !- Thermal Zone + , !- Load Distribution Scheme + {a0779969-a04c-4a31-addf-8392f6b995e8}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + +OS:Space, + {1e128f03-dd60-4501-9b62-3b6ab682587a}, !- Handle + Outpatient ElevatorPumpRoom B - Story ground, !- Name + {c0c1e222-fa00-4a79-91b3-309953f143b4}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 88.8742597685276, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {dfc3098f-1d62-466e-88b9-96d983c36887}; !- Thermal Zone Name + +OS:Surface, + {f239d9fe-455e-455d-ad26-70fc23c5859e}, !- Handle + Surface 227, !- Name + Floor, !- Surface Type + {e707f477-a7b9-43e0-9c7d-f88514368890}, !- Construction Name + {1e128f03-dd60-4501-9b62-3b6ab682587a}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + 0, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 0.433274779081401, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 0.433274779081401, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {81467deb-3887-4c49-8bd5-bd1901cfe4ee}, !- Handle + Surface 228, !- Name + Wall, !- Surface Type + , !- Construction Name + {1e128f03-dd60-4501-9b62-3b6ab682587a}, !- Space Name + Surface, !- Outside Boundary Condition + {03776f4b-f133-47cc-a672-457c50cf4c77}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9f5c0c00-46a1-4d77-958d-f2a1217e7270}, !- Handle + Surface 229, !- Name + Wall, !- Surface Type + , !- Construction Name + {1e128f03-dd60-4501-9b62-3b6ab682587a}, !- Space Name + Surface, !- Outside Boundary Condition + {953fcc55-fd67-4afd-9cb8-bf870d225c46}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.433274779081401, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 0.433274779081401, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + 0, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + 0, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {348a5b6d-ac54-4a79-a0c7-d223f7d92418}, !- Handle + Surface 230, !- Name + Wall, !- Surface Type + , !- Construction Name + {1e128f03-dd60-4501-9b62-3b6ab682587a}, !- Space Name + Surface, !- Outside Boundary Condition + {9816c505-75d3-4354-a603-d993b05f2a9d}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.433274779081401, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.433274779081401, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.433274779081401, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 0.433274779081401, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b100604f-a3e5-411d-91af-dd6ca3a4090f}, !- Handle + Surface 231, !- Name + Wall, !- Surface Type + , !- Construction Name + {1e128f03-dd60-4501-9b62-3b6ab682587a}, !- Space Name + Surface, !- Outside Boundary Condition + {a345198f-7352-4adf-9f0c-bfe11ca6cbab}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.433274779081401, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 0.433274779081401, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {78aaa227-aad0-4926-8716-f7e0ce727ed8}, !- Handle + Surface 232, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {1e128f03-dd60-4501-9b62-3b6ab682587a}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.433274779081401, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.433274779081401, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + 0, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {dfc3098f-1d62-466e-88b9-96d983c36887}, !- Handle + Zone Outpatient ElevatorPumpRoom B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {9ca080a4-0f4e-494f-bd71-08ca7e0312d2}, !- Zone Air Inlet Port List + {f98e1fcd-6c39-4ac6-80bf-c4f4bb3cb08d}, !- Zone Air Exhaust Port List + {a9bf0250-32a1-47f1-aa4e-5bc22e4a69f8}, !- Zone Air Node Name + {46f5443d-5127-4235-82f3-5b4eb22b481a}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {8b453195-60ad-4418-97ff-dc8bbe6302b8}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {c0fea0bc-6605-4344-a6cd-bb38607e5a93}, !- Handle + Zone Outpatient ElevatorPumpRoom B - Story ground Zone Air Node, !- Name + {a9bf0250-32a1-47f1-aa4e-5bc22e4a69f8}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {a9bf0250-32a1-47f1-aa4e-5bc22e4a69f8}, !- Handle + {dfc3098f-1d62-466e-88b9-96d983c36887}, !- Source Object + 11, !- Outlet Port + {c0fea0bc-6605-4344-a6cd-bb38607e5a93}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {9ca080a4-0f4e-494f-bd71-08ca7e0312d2}, !- Handle + {dfc3098f-1d62-466e-88b9-96d983c36887}, !- HVAC Component + {738627df-e027-4318-8d24-f0e21f4f133b}; !- Port 1 + +OS:PortList, + {f98e1fcd-6c39-4ac6-80bf-c4f4bb3cb08d}, !- Handle + {dfc3098f-1d62-466e-88b9-96d983c36887}, !- HVAC Component + {8a824c9d-2b66-4e8b-bd59-8e229666ee2f}; !- Port 1 + +OS:PortList, + {46f5443d-5127-4235-82f3-5b4eb22b481a}, !- Handle + {dfc3098f-1d62-466e-88b9-96d983c36887}; !- HVAC Component + +OS:Sizing:Zone, + {df5f207f-41cc-435d-877a-b8f2a96f843c}, !- Handle + {dfc3098f-1d62-466e-88b9-96d983c36887}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {c94632cd-b0dd-4f0c-935d-cd1df28b801f}, !- Handle + Zone Outpatient ElevatorPumpRoom B - Story ground Zone HVAC Equipment List, !- Name + {dfc3098f-1d62-466e-88b9-96d983c36887}, !- Thermal Zone + , !- Load Distribution Scheme + {29540e1e-8806-445d-a302-7896081a81b5}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + +OS:Space, + {eababfdf-fb36-40f8-9abb-6ab73d3dc9ea}, !- Handle + Outpatient ElevatorPumpRoom C - Story ground, !- Name + {c0c1e222-fa00-4a79-91b3-309953f143b4}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 88.8742597685276, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {1938d88f-99f5-48dc-99db-1d50d9b475b2}; !- Thermal Zone Name + +OS:Surface, + {7c1ced40-4668-4679-916e-280408d46e2c}, !- Handle + Surface 233, !- Name + Floor, !- Surface Type + {ad14fe1f-84f6-4526-89e2-54bc64d05bed}, !- Construction Name + {eababfdf-fb36-40f8-9abb-6ab73d3dc9ea}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + 0, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 0.433274779081401, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0.433274779081401, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d19453e2-2acb-4b8e-b976-14589420f6d3}, !- Handle + Surface 234, !- Name + Wall, !- Surface Type + , !- Construction Name + {eababfdf-fb36-40f8-9abb-6ab73d3dc9ea}, !- Space Name + Surface, !- Outside Boundary Condition + {d4a4d6ae-085f-4f18-b5d7-0b68b5c1cfff}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9ea2ee30-ca3e-4191-8c2f-c908302802d0}, !- Handle + Surface 235, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {eababfdf-fb36-40f8-9abb-6ab73d3dc9ea}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 0.433274779081401, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 0.433274779081401, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {6642ec85-5617-4feb-941c-0f86300f4cd3}, !- Handle + Surface 236, !- Name + Wall, !- Surface Type + , !- Construction Name + {eababfdf-fb36-40f8-9abb-6ab73d3dc9ea}, !- Space Name + Surface, !- Outside Boundary Condition + {90f9b035-4497-4dad-8aee-326eed23119b}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.433274779081401, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0.433274779081401, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 0.433274779081401, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0.433274779081401, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {953fcc55-fd67-4afd-9cb8-bf870d225c46}, !- Handle + Surface 237, !- Name + Wall, !- Surface Type + , !- Construction Name + {eababfdf-fb36-40f8-9abb-6ab73d3dc9ea}, !- Space Name + Surface, !- Outside Boundary Condition + {9f5c0c00-46a1-4d77-958d-f2a1217e7270}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 0.433274779081401, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 0.433274779081401, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1b99531e-d341-44e2-abf2-8c200e0d91ca}, !- Handle + Surface 238, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {eababfdf-fb36-40f8-9abb-6ab73d3dc9ea}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.433274779081401, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0.433274779081401, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + 0, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {1938d88f-99f5-48dc-99db-1d50d9b475b2}, !- Handle + Zone Outpatient ElevatorPumpRoom C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {5e8675e4-a5b3-4078-a59a-9b0dff44ab0f}, !- Zone Air Inlet Port List + {a3a5fc13-da83-439b-8be3-46252e1300a4}, !- Zone Air Exhaust Port List + {7467ee43-a054-4580-8cd9-8f8e3d58a58f}, !- Zone Air Node Name + {ee63f300-5542-4d3b-bb53-fb19fe156e0e}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {46c3e35e-f770-4da6-8240-67b91afacc5d}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {7cf9a2a0-3880-4d46-b1f2-9ba51cc640ec}, !- Handle + Zone Outpatient ElevatorPumpRoom C - Story ground Zone Air Node, !- Name + {7467ee43-a054-4580-8cd9-8f8e3d58a58f}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {7467ee43-a054-4580-8cd9-8f8e3d58a58f}, !- Handle + {1938d88f-99f5-48dc-99db-1d50d9b475b2}, !- Source Object + 11, !- Outlet Port + {7cf9a2a0-3880-4d46-b1f2-9ba51cc640ec}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {5e8675e4-a5b3-4078-a59a-9b0dff44ab0f}, !- Handle + {1938d88f-99f5-48dc-99db-1d50d9b475b2}, !- HVAC Component + {c95bac51-d36a-426c-bdbd-ce59eb28985b}; !- Port 1 + +OS:PortList, + {a3a5fc13-da83-439b-8be3-46252e1300a4}, !- Handle + {1938d88f-99f5-48dc-99db-1d50d9b475b2}, !- HVAC Component + {be7582e8-6adc-4222-b3d7-c0ce9987561b}; !- Port 1 + +OS:PortList, + {ee63f300-5542-4d3b-bb53-fb19fe156e0e}, !- Handle + {1938d88f-99f5-48dc-99db-1d50d9b475b2}; !- HVAC Component + +OS:Sizing:Zone, + {abd2e619-7374-4b47-84c1-244a54c695f5}, !- Handle + {1938d88f-99f5-48dc-99db-1d50d9b475b2}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {1fa08e27-9053-4793-a801-e005ce2d6c3d}, !- Handle + Zone Outpatient ElevatorPumpRoom C - Story ground Zone HVAC Equipment List, !- Name + {1938d88f-99f5-48dc-99db-1d50d9b475b2}, !- Thermal Zone + , !- Load Distribution Scheme + {51d708cb-6a28-455b-9942-874c6b4e9874}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + +OS:Space, + {cef0d458-31cf-40e4-881f-a6d9500e9f69}, !- Handle + Outpatient Anesthesia A - Story ground, !- Name + {8c151d9d-16aa-4372-a68e-592d90c257bc}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 89.307534547609, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {83db02a3-6081-458c-a1bd-405886e8f167}; !- Thermal Zone Name + +OS:Surface, + {3a83ac50-a963-48a1-b3db-d45817125532}, !- Handle + Surface 239, !- Name + Floor, !- Surface Type + {3be81817-af33-4d08-bb66-dd7cfdccbb07}, !- Construction Name + {cef0d458-31cf-40e4-881f-a6d9500e9f69}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -4.2632564145606e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + -4.2632564145606e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0.512052011641757, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0.512052011641757, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {72813e69-9ae3-4d04-82f7-d7e30aad3c90}, !- Handle + Surface 240, !- Name + Wall, !- Surface Type + , !- Construction Name + {cef0d458-31cf-40e4-881f-a6d9500e9f69}, !- Space Name + Surface, !- Outside Boundary Condition + {28ea00d8-642d-4106-aa5d-79bc3345c5fa}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2ead0571-d9fd-4e91-abc1-8f1dc6d87a63}, !- Handle + Surface 241, !- Name + Wall, !- Surface Type + , !- Construction Name + {cef0d458-31cf-40e4-881f-a6d9500e9f69}, !- Space Name + Surface, !- Outside Boundary Condition + {f3dbcf6d-7adf-4868-b889-5eb65b69f7ae}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.512052011641757, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 0.512052011641757, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + -4.2632564145606e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + -4.2632564145606e-14, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {01abeb16-9e0b-4df4-a7a8-719d90cd696a}, !- Handle + Surface 242, !- Name + Wall, !- Surface Type + , !- Construction Name + {cef0d458-31cf-40e4-881f-a6d9500e9f69}, !- Space Name + Surface, !- Outside Boundary Condition + {ac575e25-68fe-42f2-af25-3210403b0e7a}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.512052011641757, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.512052011641757, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.512052011641757, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0.512052011641757, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7d4b108b-1c64-46da-b53e-44cd8cb8740f}, !- Handle + Surface 243, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {cef0d458-31cf-40e4-881f-a6d9500e9f69}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.512052011641757, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -4.2632564145606e-14, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + -4.2632564145606e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 0.512052011641757, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {6c949287-4c5c-4553-9474-16259e61a722}, !- Handle + Surface 244, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {cef0d458-31cf-40e4-881f-a6d9500e9f69}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.512052011641757, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.512052011641757, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + -4.2632564145606e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + -4.2632564145606e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {83db02a3-6081-458c-a1bd-405886e8f167}, !- Handle + Zone Outpatient Anesthesia A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {f006732e-7d77-416e-b3f4-3f95eb618e1a}, !- Zone Air Inlet Port List + {72751647-2588-468d-9d7f-6f3090793041}, !- Zone Air Exhaust Port List + {253d2bbd-35f1-46ee-a5fc-12957adefb0e}, !- Zone Air Node Name + {c5a0c5fd-7fd0-4479-b8f9-7db132d1d6cc}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {b1af0a21-ace0-4f57-aabf-cff69b3172d7}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {7f2c3f4e-cf4b-49ba-82f5-c21e51070969}, !- Handle + Zone Outpatient Anesthesia A - Story ground Zone Air Node, !- Name + {253d2bbd-35f1-46ee-a5fc-12957adefb0e}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {253d2bbd-35f1-46ee-a5fc-12957adefb0e}, !- Handle + {83db02a3-6081-458c-a1bd-405886e8f167}, !- Source Object + 11, !- Outlet Port + {7f2c3f4e-cf4b-49ba-82f5-c21e51070969}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {f006732e-7d77-416e-b3f4-3f95eb618e1a}, !- Handle + {83db02a3-6081-458c-a1bd-405886e8f167}, !- HVAC Component + {d35c85f1-9721-4ae6-a444-fff808034b91}, !- Port 1 + {cb3ce3ff-abf4-4bad-84a6-b33f5281f930}; !- Port 2 + +OS:PortList, + {72751647-2588-468d-9d7f-6f3090793041}, !- Handle + {83db02a3-6081-458c-a1bd-405886e8f167}, !- HVAC Component + {3e2f894f-61c7-40bb-a562-fb2cb53a2ec3}, !- Port 1 + {8cf42eb8-8e03-4522-82e2-785d8f4b70a2}; !- Port 2 + +OS:PortList, + {c5a0c5fd-7fd0-4479-b8f9-7db132d1d6cc}, !- Handle + {83db02a3-6081-458c-a1bd-405886e8f167}, !- HVAC Component + {bda29912-e5a6-4fee-b59e-7f6bf654aa92}; !- Port 1 + +OS:Sizing:Zone, + {0d5e03a5-c9c5-41b2-80e6-e9ef86b69659}, !- Handle + {83db02a3-6081-458c-a1bd-405886e8f167}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {bb050524-af0c-4a15-b182-5c506f020e84}, !- Handle + Zone Outpatient Anesthesia A - Story ground Zone HVAC Equipment List, !- Name + {83db02a3-6081-458c-a1bd-405886e8f167}, !- Thermal Zone + , !- Load Distribution Scheme + {41162e68-9656-443d-9bc5-b3fc776aade5}, !- Zone Equipment 1 + 2, !- Zone Equipment Cooling Sequence 1 + 2, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {cbaa8823-5933-4e19-aabf-35f33b6158d1}, !- Zone Equipment 2 + 1, !- Zone Equipment Cooling Sequence 2 + 1, !- Zone Equipment Heating or No-Load Sequence 2 + {8741b971-3bde-48f9-a894-37f72325bf4b}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + {6ab55bf5-3cf2-48ad-9da4-1e048f348c43}, !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {342fd66b-8a9a-4b54-b8b7-70d8861fd4b7}, !- Zone Equipment 3 + 3, !- Zone Equipment Cooling Sequence 3 + 3, !- Zone Equipment Heating or No-Load Sequence 3 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 3 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 3 + +OS:Space, + {46e08511-1356-49b7-8830-fa5aa7d35d97}, !- Handle + Outpatient Anesthesia B - Story ground, !- Name + {8c151d9d-16aa-4372-a68e-592d90c257bc}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 89.307534547609, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {d884e97c-91dd-40fa-b7aa-56e0965f1052}; !- Thermal Zone Name + +OS:Surface, + {ff1a4611-c110-4186-993b-b4063ea929c4}, !- Handle + Surface 245, !- Name + Floor, !- Surface Type + {06262667-fa54-4a0f-a053-fa89e7f2af43}, !- Construction Name + {46e08511-1356-49b7-8830-fa5aa7d35d97}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -4.2632564145606e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + -4.2632564145606e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 0.512052011641757, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 0.512052011641757, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9816c505-75d3-4354-a603-d993b05f2a9d}, !- Handle + Surface 246, !- Name + Wall, !- Surface Type + , !- Construction Name + {46e08511-1356-49b7-8830-fa5aa7d35d97}, !- Space Name + Surface, !- Outside Boundary Condition + {348a5b6d-ac54-4a79-a0c7-d223f7d92418}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 0, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {140df1c7-80d5-473c-ab60-7bb0a3af4c25}, !- Handle + Surface 247, !- Name + Wall, !- Surface Type + , !- Construction Name + {46e08511-1356-49b7-8830-fa5aa7d35d97}, !- Space Name + Surface, !- Outside Boundary Condition + {07fef78a-a82e-4701-9b09-4a6ba6fd23bf}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.512052011641757, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 0.512052011641757, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + -4.2632564145606e-14, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + -4.2632564145606e-14, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {92f233a6-6580-46cf-b068-04179a37b73a}, !- Handle + Surface 248, !- Name + Wall, !- Surface Type + , !- Construction Name + {46e08511-1356-49b7-8830-fa5aa7d35d97}, !- Space Name + Surface, !- Outside Boundary Condition + {592c4d3b-e8fe-47c4-8620-c2376c800acd}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.512052011641757, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.512052011641757, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.512052011641757, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 0.512052011641757, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f3dbcf6d-7adf-4868-b889-5eb65b69f7ae}, !- Handle + Surface 249, !- Name + Wall, !- Surface Type + , !- Construction Name + {46e08511-1356-49b7-8830-fa5aa7d35d97}, !- Space Name + Surface, !- Outside Boundary Condition + {2ead0571-d9fd-4e91-abc1-8f1dc6d87a63}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -4.2632564145606e-14, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -4.2632564145606e-14, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.512052011641757, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 0.512052011641757, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3fc69146-84f4-4356-ad10-7ae630eca46e}, !- Handle + Surface 250, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {46e08511-1356-49b7-8830-fa5aa7d35d97}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.512052011641757, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.512052011641757, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + -4.2632564145606e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + -4.2632564145606e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {d884e97c-91dd-40fa-b7aa-56e0965f1052}, !- Handle + Zone Outpatient Anesthesia B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {a31419b7-7a96-4c1d-9299-392563e67500}, !- Zone Air Inlet Port List + {1609c903-5e63-43f3-bf6a-793d8763150b}, !- Zone Air Exhaust Port List + {b0c7923b-fdf2-430f-9e88-a6f3c99c12b1}, !- Zone Air Node Name + {28ab78d5-19a6-4277-8a3a-d7ca1a107ab7}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {06884586-f19a-48c0-88ed-e93b92bde562}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {e90ec950-5e09-4e37-ae0c-c7a887dbde5e}, !- Handle + Zone Outpatient Anesthesia B - Story ground Zone Air Node, !- Name + {b0c7923b-fdf2-430f-9e88-a6f3c99c12b1}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {b0c7923b-fdf2-430f-9e88-a6f3c99c12b1}, !- Handle + {d884e97c-91dd-40fa-b7aa-56e0965f1052}, !- Source Object + 11, !- Outlet Port + {e90ec950-5e09-4e37-ae0c-c7a887dbde5e}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {a31419b7-7a96-4c1d-9299-392563e67500}, !- Handle + {d884e97c-91dd-40fa-b7aa-56e0965f1052}, !- HVAC Component + {aeddcf12-30f6-49f8-b409-180362ed7fa4}, !- Port 1 + {0d3a7833-468f-4a25-81a6-5b698d3c0041}; !- Port 2 + +OS:PortList, + {1609c903-5e63-43f3-bf6a-793d8763150b}, !- Handle + {d884e97c-91dd-40fa-b7aa-56e0965f1052}, !- HVAC Component + {ccbebaf9-e3c7-4e8e-82dc-48b60e909e26}, !- Port 1 + {e22ea942-b058-4cad-93fd-da56ce5e9d99}; !- Port 2 + +OS:PortList, + {28ab78d5-19a6-4277-8a3a-d7ca1a107ab7}, !- Handle + {d884e97c-91dd-40fa-b7aa-56e0965f1052}, !- HVAC Component + {0029acc0-a913-4d85-9e77-1cb48be46001}; !- Port 1 + +OS:Sizing:Zone, + {a0c0c03b-eedd-43b2-8da0-5653c8d45c38}, !- Handle + {d884e97c-91dd-40fa-b7aa-56e0965f1052}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {6920e067-72b5-4b3c-9ebc-36c6092a0363}, !- Handle + Zone Outpatient Anesthesia B - Story ground Zone HVAC Equipment List, !- Name + {d884e97c-91dd-40fa-b7aa-56e0965f1052}, !- Thermal Zone + , !- Load Distribution Scheme + {cfcc7256-e017-446a-ad81-c135585e8e8e}, !- Zone Equipment 1 + 2, !- Zone Equipment Cooling Sequence 1 + 2, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {a160a2ce-20ab-4a8d-b9de-37e7fcc81a58}, !- Zone Equipment 2 + 1, !- Zone Equipment Cooling Sequence 2 + 1, !- Zone Equipment Heating or No-Load Sequence 2 + {c3b734c4-1515-4ef1-a08d-bea350b04f40}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + {c8d0b368-3fc7-49fe-b590-ebb5fdc5a269}, !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {ed049a6e-f48c-46a2-b533-19bc45045796}, !- Zone Equipment 3 + 3, !- Zone Equipment Cooling Sequence 3 + 3, !- Zone Equipment Heating or No-Load Sequence 3 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 3 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 3 + +OS:Space, + {7488cd88-27e4-433d-a6fd-f24d09990045}, !- Handle + Outpatient Anesthesia C - Story ground, !- Name + {8c151d9d-16aa-4372-a68e-592d90c257bc}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 89.307534547609, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {95fd7898-525c-4689-b0bf-36b72b3d642f}; !- Thermal Zone Name + +OS:Surface, + {d8dbf373-9c79-4849-b2ec-7219c4c97d7a}, !- Handle + Surface 251, !- Name + Floor, !- Surface Type + {3be81817-af33-4d08-bb66-dd7cfdccbb07}, !- Construction Name + {7488cd88-27e4-433d-a6fd-f24d09990045}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -4.2632564145606e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + -4.2632564145606e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 0.512052011641757, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0.512052011641757, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {90f9b035-4497-4dad-8aee-326eed23119b}, !- Handle + Surface 252, !- Name + Wall, !- Surface Type + , !- Construction Name + {7488cd88-27e4-433d-a6fd-f24d09990045}, !- Space Name + Surface, !- Outside Boundary Condition + {6642ec85-5617-4feb-941c-0f86300f4cd3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 0, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 0, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fb922cc0-fa1f-4730-94f5-3147b6b4524a}, !- Handle + Surface 253, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {7488cd88-27e4-433d-a6fd-f24d09990045}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -4.2632564145606e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 0.512052011641757, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 0.512052011641757, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + -4.2632564145606e-14, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {99c6c5b2-784f-42d5-8810-96289751d6a3}, !- Handle + Surface 254, !- Name + Wall, !- Surface Type + , !- Construction Name + {7488cd88-27e4-433d-a6fd-f24d09990045}, !- Space Name + Surface, !- Outside Boundary Condition + {af063080-f0c2-4757-9acd-07d19aac2fdc}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.512052011641757, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0.512052011641757, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 0.512052011641757, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0.512052011641757, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {07fef78a-a82e-4701-9b09-4a6ba6fd23bf}, !- Handle + Surface 255, !- Name + Wall, !- Surface Type + , !- Construction Name + {7488cd88-27e4-433d-a6fd-f24d09990045}, !- Space Name + Surface, !- Outside Boundary Condition + {140df1c7-80d5-473c-ab60-7bb0a3af4c25}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -4.2632564145606e-14, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + -4.2632564145606e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 0.512052011641757, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 0.512052011641757, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4623e718-cb8d-4cde-b4de-a6b602975eeb}, !- Handle + Surface 256, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {7488cd88-27e4-433d-a6fd-f24d09990045}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.512052011641757, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0.512052011641757, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + -4.2632564145606e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + -4.2632564145606e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {95fd7898-525c-4689-b0bf-36b72b3d642f}, !- Handle + Zone Outpatient Anesthesia C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {4514ca83-cd5a-4551-8be9-148d3a4047b8}, !- Zone Air Inlet Port List + {bd005f58-a040-4219-9232-aab2a1775b25}, !- Zone Air Exhaust Port List + {b7fbdece-9706-4aec-ac28-97d11eedb069}, !- Zone Air Node Name + {470d35e3-624c-4b80-a1fb-ad0ba4f16721}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {1a140484-f310-464c-abe8-58b9498b6715}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {f6d29298-58ae-4c44-8367-dfc5c679cc95}, !- Handle + Zone Outpatient Anesthesia C - Story ground Zone Air Node, !- Name + {b7fbdece-9706-4aec-ac28-97d11eedb069}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {b7fbdece-9706-4aec-ac28-97d11eedb069}, !- Handle + {95fd7898-525c-4689-b0bf-36b72b3d642f}, !- Source Object + 11, !- Outlet Port + {f6d29298-58ae-4c44-8367-dfc5c679cc95}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {4514ca83-cd5a-4551-8be9-148d3a4047b8}, !- Handle + {95fd7898-525c-4689-b0bf-36b72b3d642f}, !- HVAC Component + {4d19c315-fd41-4686-9b2b-cfa01df89c18}, !- Port 1 + {e6cdea03-c3b6-49cd-a657-8a66532d8eb0}; !- Port 2 + +OS:PortList, + {bd005f58-a040-4219-9232-aab2a1775b25}, !- Handle + {95fd7898-525c-4689-b0bf-36b72b3d642f}, !- HVAC Component + {4bb64f69-84a7-43b6-9e6e-cedd67befa72}, !- Port 1 + {ce9fe401-4bcf-4c09-a366-0f4f054b191e}; !- Port 2 + +OS:PortList, + {470d35e3-624c-4b80-a1fb-ad0ba4f16721}, !- Handle + {95fd7898-525c-4689-b0bf-36b72b3d642f}, !- HVAC Component + {40b37d1f-7edd-4381-819e-b7d9921caf63}; !- Port 1 + +OS:Sizing:Zone, + {0e694bea-6f9d-4512-81fb-624328156ecc}, !- Handle + {95fd7898-525c-4689-b0bf-36b72b3d642f}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {2439a072-96fb-4c01-8953-712a77b3f163}, !- Handle + Zone Outpatient Anesthesia C - Story ground Zone HVAC Equipment List, !- Name + {95fd7898-525c-4689-b0bf-36b72b3d642f}, !- Thermal Zone + , !- Load Distribution Scheme + {6c1db23d-3b23-44f7-a5b1-311505fdb0c5}, !- Zone Equipment 1 + 2, !- Zone Equipment Cooling Sequence 1 + 2, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {8598a5b1-c33e-45d5-bcd0-45476aed716a}, !- Zone Equipment 2 + 1, !- Zone Equipment Cooling Sequence 2 + 1, !- Zone Equipment Heating or No-Load Sequence 2 + {411298ec-ce6d-40c6-88e8-65d0fca7b843}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + {fa5e6954-7a38-446b-bdb4-3815ccb96cc3}, !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {5320bdab-b7da-4659-96ec-e26f7e7d5c19}, !- Zone Equipment 3 + 3, !- Zone Equipment Cooling Sequence 3 + 3, !- Zone Equipment Heating or No-Load Sequence 3 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 3 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 3 + +OS:Space, + {eb22845c-7b50-4b03-856c-0f87b80dab69}, !- Handle + Outpatient IT_Room A - Story ground, !- Name + {4b9df3de-a3d0-4438-acca-986ad88544a1}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 89.8195865592508, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {969f4427-c240-4f84-aa0f-d7d69d00cdf6}; !- Thermal Zone Name + +OS:Surface, + {af352169-94e0-4a7f-92fd-ca27106083d4}, !- Handle + Surface 257, !- Name + Floor, !- Surface Type + {7bb226c3-6c15-40ee-a748-e3c0d6125c7f}, !- Construction Name + {eb22845c-7b50-4b03-856c-0f87b80dab69}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.2632564145606e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + 4.2632564145606e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0.531746319781746, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0.531746319781746, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ac575e25-68fe-42f2-af25-3210403b0e7a}, !- Handle + Surface 258, !- Name + Wall, !- Surface Type + , !- Construction Name + {eb22845c-7b50-4b03-856c-0f87b80dab69}, !- Space Name + Surface, !- Outside Boundary Condition + {01abeb16-9e0b-4df4-a7a8-719d90cd696a}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -4.2632564145606e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + -4.2632564145606e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + -4.2632564145606e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + -4.2632564145606e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ae28041a-f017-4146-bb04-1d8642eac9ac}, !- Handle + Surface 259, !- Name + Wall, !- Surface Type + , !- Construction Name + {eb22845c-7b50-4b03-856c-0f87b80dab69}, !- Space Name + Surface, !- Outside Boundary Condition + {b2a79ea1-0e78-4a9d-b40a-5fdd48036feb}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.531746319781746, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 0.531746319781746, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 4.2632564145606e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 4.2632564145606e-14, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {96891f0f-5ea3-4493-9b70-ccaee0769c48}, !- Handle + Surface 260, !- Name + Wall, !- Surface Type + , !- Construction Name + {eb22845c-7b50-4b03-856c-0f87b80dab69}, !- Space Name + Surface, !- Outside Boundary Condition + {6bc67966-0d75-4887-a977-62c1c367d800}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.531746319781746, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.531746319781746, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.531746319781746, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0.531746319781746, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {549e54dd-6c03-417d-b2b3-7d54542ff472}, !- Handle + Surface 261, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {eb22845c-7b50-4b03-856c-0f87b80dab69}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.531746319781746, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 4.2632564145606e-14, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 4.2632564145606e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 0.531746319781746, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {95fb4cc9-9e13-4981-aa9b-6b8deb58382a}, !- Handle + Surface 262, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {eb22845c-7b50-4b03-856c-0f87b80dab69}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.531746319781746, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.531746319781746, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 4.2632564145606e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + 4.2632564145606e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {969f4427-c240-4f84-aa0f-d7d69d00cdf6}, !- Handle + Zone Outpatient IT_Room A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {b50b2a81-4121-4ee8-b7ba-3d9147e7a831}, !- Zone Air Inlet Port List + {cde8e11f-4a3d-4465-8145-c58fef87bad2}, !- Zone Air Exhaust Port List + {0f4aafbb-02a2-41e2-9efd-0b4afafe2bec}, !- Zone Air Node Name + {84042b2f-2682-44f1-9b04-9ac5d436ee3f}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {20f336e4-95c0-47f2-85a0-b3dc8674a17b}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {dc763427-5dd7-4808-9386-5d61e234f816}, !- Handle + Zone Outpatient IT_Room A - Story ground Zone Air Node, !- Name + {0f4aafbb-02a2-41e2-9efd-0b4afafe2bec}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {0f4aafbb-02a2-41e2-9efd-0b4afafe2bec}, !- Handle + {969f4427-c240-4f84-aa0f-d7d69d00cdf6}, !- Source Object + 11, !- Outlet Port + {dc763427-5dd7-4808-9386-5d61e234f816}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {b50b2a81-4121-4ee8-b7ba-3d9147e7a831}, !- Handle + {969f4427-c240-4f84-aa0f-d7d69d00cdf6}, !- HVAC Component + {d02ab74c-4e9b-4081-9836-2d472787b89d}, !- Port 1 + {ca1bdbbd-fc0c-4b96-abaa-4fc87c8cc726}; !- Port 2 + +OS:PortList, + {cde8e11f-4a3d-4465-8145-c58fef87bad2}, !- Handle + {969f4427-c240-4f84-aa0f-d7d69d00cdf6}, !- HVAC Component + {2e4655dc-de68-4ee3-9eda-8df6602c97c3}; !- Port 1 + +OS:PortList, + {84042b2f-2682-44f1-9b04-9ac5d436ee3f}, !- Handle + {969f4427-c240-4f84-aa0f-d7d69d00cdf6}, !- HVAC Component + {cfb529d1-dbfa-41c1-82d9-1e906b99039a}; !- Port 1 + +OS:Sizing:Zone, + {47608659-d521-4469-9f6f-a9ffd4663d44}, !- Handle + {969f4427-c240-4f84-aa0f-d7d69d00cdf6}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {9483e1d3-c52a-41b7-a06b-fede49b1128c}, !- Handle + Zone Outpatient IT_Room A - Story ground Zone HVAC Equipment List, !- Name + {969f4427-c240-4f84-aa0f-d7d69d00cdf6}, !- Thermal Zone + , !- Load Distribution Scheme + {c8a04d0a-eb2e-4376-a85f-d139f7473dd4}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {eae06fd7-13bd-45c6-ba38-388672b1174b}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {13297170-b41a-4fe7-9fee-d17d48fca5e1}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {1d482285-af36-4eaf-9b2d-3661375dd7bb}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {29c23f7d-72bb-4eff-9a03-2c9a111de621}, !- Handle + Outpatient IT_Room B - Story ground, !- Name + {4b9df3de-a3d0-4438-acca-986ad88544a1}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 89.8195865592508, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {49a02a84-4bbc-4304-a3fe-95e81565bec8}; !- Thermal Zone Name + +OS:Surface, + {a088b605-aa2d-4a0c-b847-12b2e06efd33}, !- Handle + Surface 263, !- Name + Floor, !- Surface Type + {626e314b-ec07-4231-b584-be806234740d}, !- Construction Name + {29c23f7d-72bb-4eff-9a03-2c9a111de621}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.2632564145606e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + 4.2632564145606e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 0.531746319781746, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 0.531746319781746, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {592c4d3b-e8fe-47c4-8620-c2376c800acd}, !- Handle + Surface 264, !- Name + Wall, !- Surface Type + , !- Construction Name + {29c23f7d-72bb-4eff-9a03-2c9a111de621}, !- Space Name + Surface, !- Outside Boundary Condition + {92f233a6-6580-46cf-b068-04179a37b73a}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -4.2632564145606e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + -4.2632564145606e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + -4.2632564145606e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + -4.2632564145606e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8806f26b-24a5-4a6d-9e3f-b52501a45a08}, !- Handle + Surface 265, !- Name + Wall, !- Surface Type + , !- Construction Name + {29c23f7d-72bb-4eff-9a03-2c9a111de621}, !- Space Name + Surface, !- Outside Boundary Condition + {bbc94a79-d056-440d-9d9a-b9cdac05cdb2}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.531746319781746, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 0.531746319781746, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + 4.2632564145606e-14, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + 4.2632564145606e-14, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3c4b8b46-3da6-4afd-863b-f56fbbcb3285}, !- Handle + Surface 266, !- Name + Wall, !- Surface Type + , !- Construction Name + {29c23f7d-72bb-4eff-9a03-2c9a111de621}, !- Space Name + Surface, !- Outside Boundary Condition + {c99c91b5-4e3a-4a46-b763-a53ecd0d456e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.531746319781746, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.531746319781746, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.531746319781746, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 0.531746319781746, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b2a79ea1-0e78-4a9d-b40a-5fdd48036feb}, !- Handle + Surface 267, !- Name + Wall, !- Surface Type + , !- Construction Name + {29c23f7d-72bb-4eff-9a03-2c9a111de621}, !- Space Name + Surface, !- Outside Boundary Condition + {ae28041a-f017-4146-bb04-1d8642eac9ac}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.2632564145606e-14, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 4.2632564145606e-14, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.531746319781746, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 0.531746319781746, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d362be0b-8bdc-43cb-b501-6a7aeb8d924a}, !- Handle + Surface 268, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {29c23f7d-72bb-4eff-9a03-2c9a111de621}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.531746319781746, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.531746319781746, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + 4.2632564145606e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + 4.2632564145606e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {49a02a84-4bbc-4304-a3fe-95e81565bec8}, !- Handle + Zone Outpatient IT_Room B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {af3cd633-f5cc-4983-96ae-059e3d8683ac}, !- Zone Air Inlet Port List + {25711b08-0f4d-466a-a4fe-ed97774baf05}, !- Zone Air Exhaust Port List + {902ed45a-03ca-43cc-a8d7-e6c42b31fb29}, !- Zone Air Node Name + {17e734e7-d515-4d38-b698-bdf5ba1c6add}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {c942e9bb-c2f2-4a0a-ba66-2fa7b8b99470}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {41da3a3a-9454-4399-b464-707cf8965e08}, !- Handle + Zone Outpatient IT_Room B - Story ground Zone Air Node, !- Name + {902ed45a-03ca-43cc-a8d7-e6c42b31fb29}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {902ed45a-03ca-43cc-a8d7-e6c42b31fb29}, !- Handle + {49a02a84-4bbc-4304-a3fe-95e81565bec8}, !- Source Object + 11, !- Outlet Port + {41da3a3a-9454-4399-b464-707cf8965e08}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {af3cd633-f5cc-4983-96ae-059e3d8683ac}, !- Handle + {49a02a84-4bbc-4304-a3fe-95e81565bec8}, !- HVAC Component + {f726fb02-a846-43e5-a27f-27699dbaad9c}, !- Port 1 + {074f2a27-1468-4ecf-b54c-3c2fbdfe3116}; !- Port 2 + +OS:PortList, + {25711b08-0f4d-466a-a4fe-ed97774baf05}, !- Handle + {49a02a84-4bbc-4304-a3fe-95e81565bec8}, !- HVAC Component + {2c2a2376-78a5-4774-9a83-70246ef8a986}; !- Port 1 + +OS:PortList, + {17e734e7-d515-4d38-b698-bdf5ba1c6add}, !- Handle + {49a02a84-4bbc-4304-a3fe-95e81565bec8}, !- HVAC Component + {6daae294-ac59-4a99-a0c9-59f2b154e801}; !- Port 1 + +OS:Sizing:Zone, + {d9e76a5a-78bf-4fe5-a0a5-1ebdccbd2a28}, !- Handle + {49a02a84-4bbc-4304-a3fe-95e81565bec8}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {ce0174a5-55ae-441a-ba09-711af06a041e}, !- Handle + Zone Outpatient IT_Room B - Story ground Zone HVAC Equipment List, !- Name + {49a02a84-4bbc-4304-a3fe-95e81565bec8}, !- Thermal Zone + , !- Load Distribution Scheme + {d68d8a9e-0e2a-4d46-83b9-e8f61b5d7af8}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {766078f7-128d-439f-98de-126178720017}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {f139aad2-aa30-4ec0-8c8b-f13b6458312e}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {f42ce8e4-0a5a-4c78-ac05-566a017110ea}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {5c7ef46a-1b4c-4361-bf02-ce5554b0b527}, !- Handle + Outpatient IT_Room C - Story ground, !- Name + {4b9df3de-a3d0-4438-acca-986ad88544a1}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 89.8195865592508, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {43b20c53-ef63-471c-bc13-ca28ada97219}; !- Thermal Zone Name + +OS:Surface, + {0e66d1f1-0280-4f11-88c4-ce1ba0e96f58}, !- Handle + Surface 269, !- Name + Floor, !- Surface Type + {7bb226c3-6c15-40ee-a748-e3c0d6125c7f}, !- Construction Name + {5c7ef46a-1b4c-4361-bf02-ce5554b0b527}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.2632564145606e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + 4.2632564145606e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 0.531746319781746, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0.531746319781746, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {af063080-f0c2-4757-9acd-07d19aac2fdc}, !- Handle + Surface 270, !- Name + Wall, !- Surface Type + , !- Construction Name + {5c7ef46a-1b4c-4361-bf02-ce5554b0b527}, !- Space Name + Surface, !- Outside Boundary Condition + {99c6c5b2-784f-42d5-8810-96289751d6a3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -4.2632564145606e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + -4.2632564145606e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + -4.2632564145606e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + -4.2632564145606e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a2841577-b79a-48cf-8b1b-92cf308a26dc}, !- Handle + Surface 271, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {5c7ef46a-1b4c-4361-bf02-ce5554b0b527}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.2632564145606e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 0.531746319781746, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 0.531746319781746, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 4.2632564145606e-14, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {049bbcdb-9b2e-4fa8-b463-e7841041883a}, !- Handle + Surface 272, !- Name + Wall, !- Surface Type + , !- Construction Name + {5c7ef46a-1b4c-4361-bf02-ce5554b0b527}, !- Space Name + Surface, !- Outside Boundary Condition + {f464a239-d0a1-48cd-8a97-51f9132a28b5}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.531746319781746, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0.531746319781746, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 0.531746319781746, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0.531746319781746, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {bbc94a79-d056-440d-9d9a-b9cdac05cdb2}, !- Handle + Surface 273, !- Name + Wall, !- Surface Type + , !- Construction Name + {5c7ef46a-1b4c-4361-bf02-ce5554b0b527}, !- Space Name + Surface, !- Outside Boundary Condition + {8806f26b-24a5-4a6d-9e3f-b52501a45a08}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.2632564145606e-14, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 4.2632564145606e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 0.531746319781746, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 0.531746319781746, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {64cd9947-7e6b-4743-a1d9-d25ff8d06394}, !- Handle + Surface 274, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {5c7ef46a-1b4c-4361-bf02-ce5554b0b527}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.531746319781746, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0.531746319781746, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 4.2632564145606e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + 4.2632564145606e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {43b20c53-ef63-471c-bc13-ca28ada97219}, !- Handle + Zone Outpatient IT_Room C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {2b250855-5e0c-4fda-9ab4-696c9c4bc3ef}, !- Zone Air Inlet Port List + {cecf28a8-f809-4e1b-bfe8-bc383f5a1e14}, !- Zone Air Exhaust Port List + {8b92923c-39f0-42d7-94f2-0316ed0641a3}, !- Zone Air Node Name + {d75a5161-bc5f-4e3b-937a-457f56977798}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {fdbdb1e2-c454-4afb-b64d-9ddea6b399a7}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {7961f477-ba9d-4102-b188-fd7bf2b397d6}, !- Handle + Zone Outpatient IT_Room C - Story ground Zone Air Node, !- Name + {8b92923c-39f0-42d7-94f2-0316ed0641a3}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {8b92923c-39f0-42d7-94f2-0316ed0641a3}, !- Handle + {43b20c53-ef63-471c-bc13-ca28ada97219}, !- Source Object + 11, !- Outlet Port + {7961f477-ba9d-4102-b188-fd7bf2b397d6}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {2b250855-5e0c-4fda-9ab4-696c9c4bc3ef}, !- Handle + {43b20c53-ef63-471c-bc13-ca28ada97219}, !- HVAC Component + {39d5e367-5991-4a18-a6e9-d9ed77f1e50a}, !- Port 1 + {ab76f24f-0c8b-4d18-b5b1-877d0cfcaa05}; !- Port 2 + +OS:PortList, + {cecf28a8-f809-4e1b-bfe8-bc383f5a1e14}, !- Handle + {43b20c53-ef63-471c-bc13-ca28ada97219}, !- HVAC Component + {03e1225e-fa52-4dc9-b3b3-0958b1c91174}; !- Port 1 + +OS:PortList, + {d75a5161-bc5f-4e3b-937a-457f56977798}, !- Handle + {43b20c53-ef63-471c-bc13-ca28ada97219}, !- HVAC Component + {bed9f506-d4c3-4818-b788-ab812b8436d0}; !- Port 1 + +OS:Sizing:Zone, + {0e4abbe9-c0da-4f3a-839d-e4df83b91395}, !- Handle + {43b20c53-ef63-471c-bc13-ca28ada97219}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {5920f4a8-ac91-491c-8881-31b31939581b}, !- Handle + Zone Outpatient IT_Room C - Story ground Zone HVAC Equipment List, !- Name + {43b20c53-ef63-471c-bc13-ca28ada97219}, !- Thermal Zone + , !- Load Distribution Scheme + {d31187d9-e45c-4181-ad7c-6cec4e3db490}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {2d413423-880d-4e76-88c4-dd871d0ee5df}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {3c9c2cce-2aa9-4c56-a2ba-f1b4a7157fe4}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {2bad5b27-82b2-4496-b168-b4d8921b0327}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {c7648a74-5baf-440c-af48-fd3141f0ab39}, !- Handle + Outpatient MRI_Control A - Story ground, !- Name + {bcd0ccb4-07a2-483e-8764-49c9a286542d}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 90.3513328790325, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {68225df3-fc71-49f2-8776-6fc687f3a790}; !- Thermal Zone Name + +OS:Surface, + {90e6f5d0-951d-4788-8524-b606ef6c5808}, !- Handle + Surface 275, !- Name + Floor, !- Surface Type + {b6890f44-4315-4d02-971d-c2bc3cb25d8e}, !- Construction Name + {c7648a74-5baf-440c-af48-fd3141f0ab39}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.8421709430404e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + -2.8421709430404e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0.807466633742678, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0.807466633742678, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {6bc67966-0d75-4887-a977-62c1c367d800}, !- Handle + Surface 276, !- Name + Wall, !- Surface Type + , !- Construction Name + {c7648a74-5baf-440c-af48-fd3141f0ab39}, !- Space Name + Surface, !- Outside Boundary Condition + {96891f0f-5ea3-4493-9b70-ccaee0769c48}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.2632564145606e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 4.2632564145606e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 4.2632564145606e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 4.2632564145606e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {edce4e05-26bd-48c4-a84e-f45ba92658a3}, !- Handle + Surface 277, !- Name + Wall, !- Surface Type + , !- Construction Name + {c7648a74-5baf-440c-af48-fd3141f0ab39}, !- Space Name + Surface, !- Outside Boundary Condition + {76ca89ff-a237-4623-8f5d-f8b1e687295d}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.807466633742678, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 0.807466633742678, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + -2.8421709430404e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + -2.8421709430404e-14, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {37315de0-390a-41f6-9856-2a2a74420e04}, !- Handle + Surface 278, !- Name + Wall, !- Surface Type + , !- Construction Name + {c7648a74-5baf-440c-af48-fd3141f0ab39}, !- Space Name + Surface, !- Outside Boundary Condition + {8f399266-5a31-4109-99ba-af9fbb998aa7}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.807466633742678, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.807466633742678, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.807466633742678, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0.807466633742678, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0a456f74-0c3a-4895-99cf-5f52f33f7518}, !- Handle + Surface 279, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {c7648a74-5baf-440c-af48-fd3141f0ab39}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.807466633742678, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -2.8421709430404e-14, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + -2.8421709430404e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 0.807466633742678, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {00dd3efd-3582-4963-8822-70b7eb02871c}, !- Handle + Surface 280, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {c7648a74-5baf-440c-af48-fd3141f0ab39}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.807466633742678, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.807466633742678, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + -2.8421709430404e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + -2.8421709430404e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {68225df3-fc71-49f2-8776-6fc687f3a790}, !- Handle + Zone Outpatient MRI_Control A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {6429b054-a8ad-405a-abb5-9bbab0537242}, !- Zone Air Inlet Port List + {935302f2-c5c4-4f36-a53d-37c26186b9bf}, !- Zone Air Exhaust Port List + {1a27881b-d0dc-4425-91e6-ddb79db449f1}, !- Zone Air Node Name + {c740ba66-8564-4dae-a3db-a82eaebcc4a4}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {772e5c1f-f23a-4029-a6d5-387143c6d308}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {1e46542d-1288-4a47-b3a5-be24da8a18d5}, !- Handle + Zone Outpatient MRI_Control A - Story ground Zone Air Node, !- Name + {1a27881b-d0dc-4425-91e6-ddb79db449f1}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {1a27881b-d0dc-4425-91e6-ddb79db449f1}, !- Handle + {68225df3-fc71-49f2-8776-6fc687f3a790}, !- Source Object + 11, !- Outlet Port + {1e46542d-1288-4a47-b3a5-be24da8a18d5}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {6429b054-a8ad-405a-abb5-9bbab0537242}, !- Handle + {68225df3-fc71-49f2-8776-6fc687f3a790}, !- HVAC Component + {b0419038-1538-4873-8edc-af8f160e3341}, !- Port 1 + {677489d3-b32c-4423-937f-c154f4c4018d}; !- Port 2 + +OS:PortList, + {935302f2-c5c4-4f36-a53d-37c26186b9bf}, !- Handle + {68225df3-fc71-49f2-8776-6fc687f3a790}, !- HVAC Component + {016f783d-e1dd-4469-b5e9-91fa4f2bc3c3}, !- Port 1 + {5f3c87bf-ca9f-41b5-a0f1-52a2a38c7a66}; !- Port 2 + +OS:PortList, + {c740ba66-8564-4dae-a3db-a82eaebcc4a4}, !- Handle + {68225df3-fc71-49f2-8776-6fc687f3a790}, !- HVAC Component + {7c5151c2-755c-4129-9c3d-b3d8223ed2f7}; !- Port 1 + +OS:Sizing:Zone, + {4cfbfeab-6495-4dcd-a57a-12cfae20e67d}, !- Handle + {68225df3-fc71-49f2-8776-6fc687f3a790}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {68956434-d58f-4fab-b317-e1ecbb633390}, !- Handle + Zone Outpatient MRI_Control A - Story ground Zone HVAC Equipment List, !- Name + {68225df3-fc71-49f2-8776-6fc687f3a790}, !- Thermal Zone + , !- Load Distribution Scheme + {841c28a0-1eb9-49a9-88cf-1643966781c3}, !- Zone Equipment 1 + 2, !- Zone Equipment Cooling Sequence 1 + 2, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {eb62d391-c810-4ada-8027-24b0d09ce9cb}, !- Zone Equipment 2 + 1, !- Zone Equipment Cooling Sequence 2 + 1, !- Zone Equipment Heating or No-Load Sequence 2 + {27818fef-4103-4dd8-9cb0-abfc0200c01b}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + {a5c88139-48d4-459c-b5e1-fa1fbc290f69}, !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {548ad40b-7502-457b-81f6-59aca8a1833c}, !- Zone Equipment 3 + 3, !- Zone Equipment Cooling Sequence 3 + 3, !- Zone Equipment Heating or No-Load Sequence 3 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 3 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 3 + +OS:Space, + {120e34a9-bdc7-41d1-b21a-c963ea875eac}, !- Handle + Outpatient MRI_Control B - Story ground, !- Name + {bcd0ccb4-07a2-483e-8764-49c9a286542d}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 90.3513328790325, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {cca49507-9ed9-40cb-b616-fb931bdccf94}; !- Thermal Zone Name + +OS:Surface, + {1086f321-ad47-4b72-9078-d7943d9959fa}, !- Handle + Surface 281, !- Name + Floor, !- Surface Type + {57bbfec4-3e31-4a8b-8924-762c4b05d748}, !- Construction Name + {120e34a9-bdc7-41d1-b21a-c963ea875eac}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.8421709430404e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + -2.8421709430404e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 0.807466633742678, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 0.807466633742678, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {c99c91b5-4e3a-4a46-b763-a53ecd0d456e}, !- Handle + Surface 282, !- Name + Wall, !- Surface Type + , !- Construction Name + {120e34a9-bdc7-41d1-b21a-c963ea875eac}, !- Space Name + Surface, !- Outside Boundary Condition + {3c4b8b46-3da6-4afd-863b-f56fbbcb3285}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.2632564145606e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + 4.2632564145606e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 4.2632564145606e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + 4.2632564145606e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2b099af6-6b67-4c99-b6c2-781cb8f9e099}, !- Handle + Surface 283, !- Name + Wall, !- Surface Type + , !- Construction Name + {120e34a9-bdc7-41d1-b21a-c963ea875eac}, !- Space Name + Surface, !- Outside Boundary Condition + {0567a790-268d-4baf-aa7e-e6724fe37813}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.807466633742678, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 0.807466633742678, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + -2.8421709430404e-14, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + -2.8421709430404e-14, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {31531020-451e-48a6-be54-388c31055b77}, !- Handle + Surface 284, !- Name + Wall, !- Surface Type + , !- Construction Name + {120e34a9-bdc7-41d1-b21a-c963ea875eac}, !- Space Name + Surface, !- Outside Boundary Condition + {3d677ae0-fd3f-44f6-adb3-6630847f4143}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.807466633742678, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.807466633742678, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.807466633742678, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 0.807466633742678, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {76ca89ff-a237-4623-8f5d-f8b1e687295d}, !- Handle + Surface 285, !- Name + Wall, !- Surface Type + , !- Construction Name + {120e34a9-bdc7-41d1-b21a-c963ea875eac}, !- Space Name + Surface, !- Outside Boundary Condition + {edce4e05-26bd-48c4-a84e-f45ba92658a3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.8421709430404e-14, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -2.8421709430404e-14, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 0.807466633742678, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 0.807466633742678, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {dab9e8a0-bf3e-4aa1-9580-9cef405ae702}, !- Handle + Surface 286, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {120e34a9-bdc7-41d1-b21a-c963ea875eac}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.807466633742678, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0.807466633742678, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + -2.8421709430404e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + -2.8421709430404e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {cca49507-9ed9-40cb-b616-fb931bdccf94}, !- Handle + Zone Outpatient MRI_Control B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {bbe08e4c-f5e8-41f0-b9d8-8ef247c2dd45}, !- Zone Air Inlet Port List + {47dc7579-25a2-43d6-a3a8-49d80425b97a}, !- Zone Air Exhaust Port List + {10276c61-0482-4387-b927-b76299d43ecd}, !- Zone Air Node Name + {8ae339ff-d913-4d89-a3ee-f4940da5af7d}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {3646c37d-b5c0-411d-abd4-ef9f288d2234}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {b1b50a74-9d2f-4b6c-8c17-ee77f9487c8a}, !- Handle + Zone Outpatient MRI_Control B - Story ground Zone Air Node, !- Name + {10276c61-0482-4387-b927-b76299d43ecd}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {10276c61-0482-4387-b927-b76299d43ecd}, !- Handle + {cca49507-9ed9-40cb-b616-fb931bdccf94}, !- Source Object + 11, !- Outlet Port + {b1b50a74-9d2f-4b6c-8c17-ee77f9487c8a}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {bbe08e4c-f5e8-41f0-b9d8-8ef247c2dd45}, !- Handle + {cca49507-9ed9-40cb-b616-fb931bdccf94}, !- HVAC Component + {83f708e8-79a8-4c63-a855-e4bdc163d31b}, !- Port 1 + {a849d47e-aea3-4c34-8f82-90f34dffd365}; !- Port 2 + +OS:PortList, + {47dc7579-25a2-43d6-a3a8-49d80425b97a}, !- Handle + {cca49507-9ed9-40cb-b616-fb931bdccf94}, !- HVAC Component + {06bb634d-d4c0-4e70-9eb2-154812e72db9}, !- Port 1 + {d1cd7b81-73f6-4744-955b-1fddc9be8144}; !- Port 2 + +OS:PortList, + {8ae339ff-d913-4d89-a3ee-f4940da5af7d}, !- Handle + {cca49507-9ed9-40cb-b616-fb931bdccf94}, !- HVAC Component + {78aebe1c-1b91-4f4d-9f5d-be7a5882a740}; !- Port 1 + +OS:Sizing:Zone, + {b049d893-558f-4fa2-b604-167394d1dfb5}, !- Handle + {cca49507-9ed9-40cb-b616-fb931bdccf94}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {90a3d998-e95f-4bc1-bfac-72ff7fb4b215}, !- Handle + Zone Outpatient MRI_Control B - Story ground Zone HVAC Equipment List, !- Name + {cca49507-9ed9-40cb-b616-fb931bdccf94}, !- Thermal Zone + , !- Load Distribution Scheme + {129450a2-5426-4e38-826d-4ba11b4b7a57}, !- Zone Equipment 1 + 2, !- Zone Equipment Cooling Sequence 1 + 2, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {9c90f3cc-518c-43e7-83a5-11c0c0ba4cc8}, !- Zone Equipment 2 + 1, !- Zone Equipment Cooling Sequence 2 + 1, !- Zone Equipment Heating or No-Load Sequence 2 + {aa148802-ca81-4f3c-9ef6-80234eee4f53}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + {78f0e09e-d8af-48cd-9943-2c564203dd4c}, !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {7b283eb8-c2c2-4e54-9256-4a5c4e66ecf5}, !- Zone Equipment 3 + 3, !- Zone Equipment Cooling Sequence 3 + 3, !- Zone Equipment Heating or No-Load Sequence 3 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 3 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 3 + +OS:Space, + {9600e904-9c18-4a38-99c4-680b8463eccd}, !- Handle + Outpatient MRI_Control C - Story ground, !- Name + {bcd0ccb4-07a2-483e-8764-49c9a286542d}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 90.3513328790325, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {0557e7df-b0f0-4ec1-8139-e0e94338ad51}; !- Thermal Zone Name + +OS:Surface, + {8bde521e-37e3-45af-980c-63d5f7f175ac}, !- Handle + Surface 287, !- Name + Floor, !- Surface Type + {b6890f44-4315-4d02-971d-c2bc3cb25d8e}, !- Construction Name + {9600e904-9c18-4a38-99c4-680b8463eccd}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.8421709430404e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + -2.8421709430404e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 0.807466633742678, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0.807466633742678, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f464a239-d0a1-48cd-8a97-51f9132a28b5}, !- Handle + Surface 288, !- Name + Wall, !- Surface Type + , !- Construction Name + {9600e904-9c18-4a38-99c4-680b8463eccd}, !- Space Name + Surface, !- Outside Boundary Condition + {049bbcdb-9b2e-4fa8-b463-e7841041883a}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.2632564145606e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 4.2632564145606e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 4.2632564145606e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 4.2632564145606e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3b50da9b-e5d7-4196-b6e4-e356bbf47e23}, !- Handle + Surface 289, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {9600e904-9c18-4a38-99c4-680b8463eccd}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.8421709430404e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 0.807466633742678, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 0.807466633742678, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + -2.8421709430404e-14, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3b5bcc1c-51e5-415d-82c1-48da40b14396}, !- Handle + Surface 290, !- Name + Wall, !- Surface Type + , !- Construction Name + {9600e904-9c18-4a38-99c4-680b8463eccd}, !- Space Name + Surface, !- Outside Boundary Condition + {dc4d6fa9-6b9b-45d7-a54e-982cee878d50}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.807466633742678, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0.807466633742678, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 0.807466633742678, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0.807466633742678, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0567a790-268d-4baf-aa7e-e6724fe37813}, !- Handle + Surface 291, !- Name + Wall, !- Surface Type + , !- Construction Name + {9600e904-9c18-4a38-99c4-680b8463eccd}, !- Space Name + Surface, !- Outside Boundary Condition + {2b099af6-6b67-4c99-b6c2-781cb8f9e099}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.8421709430404e-14, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + -2.8421709430404e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 0.807466633742678, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 0.807466633742678, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {6f085c61-39b1-4e07-aa7f-4f65c53f8301}, !- Handle + Surface 292, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {9600e904-9c18-4a38-99c4-680b8463eccd}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0.807466633742678, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0.807466633742678, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + -2.8421709430404e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + -2.8421709430404e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {0557e7df-b0f0-4ec1-8139-e0e94338ad51}, !- Handle + Zone Outpatient MRI_Control C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {a94fd621-9d94-40ad-ba71-3e647e19ae5c}, !- Zone Air Inlet Port List + {291a673b-be77-441a-b520-46a53175d4b3}, !- Zone Air Exhaust Port List + {24bfd707-f2ee-4b1a-87cd-38d391bb3824}, !- Zone Air Node Name + {24577404-df42-4c27-834d-77e020db6b45}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {39ae7233-b7fa-4ab5-aaca-9fe4ef6008fb}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {743f53e9-8e31-4379-81fd-adb08199ecda}, !- Handle + Zone Outpatient MRI_Control C - Story ground Zone Air Node, !- Name + {24bfd707-f2ee-4b1a-87cd-38d391bb3824}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {24bfd707-f2ee-4b1a-87cd-38d391bb3824}, !- Handle + {0557e7df-b0f0-4ec1-8139-e0e94338ad51}, !- Source Object + 11, !- Outlet Port + {743f53e9-8e31-4379-81fd-adb08199ecda}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {a94fd621-9d94-40ad-ba71-3e647e19ae5c}, !- Handle + {0557e7df-b0f0-4ec1-8139-e0e94338ad51}, !- HVAC Component + {1ec24fc0-f0fc-4e02-b95b-10dd253b72fc}, !- Port 1 + {b243bd3b-3e85-4f61-8e07-d44c71d7d2ff}; !- Port 2 + +OS:PortList, + {291a673b-be77-441a-b520-46a53175d4b3}, !- Handle + {0557e7df-b0f0-4ec1-8139-e0e94338ad51}, !- HVAC Component + {e6b10b14-41ff-432d-8219-eec6085273db}, !- Port 1 + {12e0390c-43a4-4f7f-b286-4d6e58963e5d}; !- Port 2 + +OS:PortList, + {24577404-df42-4c27-834d-77e020db6b45}, !- Handle + {0557e7df-b0f0-4ec1-8139-e0e94338ad51}, !- HVAC Component + {155ae78a-1940-4a89-b427-a64b333d55e7}; !- Port 1 + +OS:Sizing:Zone, + {921356e3-dce0-4596-82c7-144e857f69c4}, !- Handle + {0557e7df-b0f0-4ec1-8139-e0e94338ad51}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {5694d220-8365-4409-a30d-edbb11ce4843}, !- Handle + Zone Outpatient MRI_Control C - Story ground Zone HVAC Equipment List, !- Name + {0557e7df-b0f0-4ec1-8139-e0e94338ad51}, !- Thermal Zone + , !- Load Distribution Scheme + {b0ea8590-c3fd-4434-9014-e4949e1e0e09}, !- Zone Equipment 1 + 2, !- Zone Equipment Cooling Sequence 1 + 2, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {c4f0f7b4-9b36-42fa-97a2-b12dbea93c5b}, !- Zone Equipment 2 + 1, !- Zone Equipment Cooling Sequence 2 + 1, !- Zone Equipment Heating or No-Load Sequence 2 + {fbf78e8e-3d0f-4a82-a81e-44e286109316}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + {2eec16e3-e433-4946-9541-b25d4b89a3d0}, !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {88b1c46f-7e8b-46b2-89b6-0512e694c882}, !- Zone Equipment 3 + 3, !- Zone Equipment Cooling Sequence 3 + 3, !- Zone Equipment Heating or No-Load Sequence 3 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 3 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 3 + +OS:Space, + {b969ae5a-bb70-41f9-a4a3-addde4e71985}, !- Handle + Outpatient ProcedureRoom A - Story ground, !- Name + {864ed981-cdc7-451f-8bef-1ea81ff2d854}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 91.1587995127752, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {55eaaede-3480-455d-96b5-29504e15c7ae}; !- Thermal Zone Name + +OS:Surface, + {ec62b582-8463-421f-8f79-debf614d98ab}, !- Handle + Surface 293, !- Name + Floor, !- Surface Type + {26dee3f4-6d28-4268-89c1-2b2ba825c214}, !- Construction Name + {b969ae5a-bb70-41f9-a4a3-addde4e71985}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 1.37860156980459, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 1.37860156980459, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8f399266-5a31-4109-99ba-af9fbb998aa7}, !- Handle + Surface 294, !- Name + Wall, !- Surface Type + , !- Construction Name + {b969ae5a-bb70-41f9-a4a3-addde4e71985}, !- Space Name + Surface, !- Outside Boundary Condition + {37315de0-390a-41f6-9856-2a2a74420e04}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.8421709430404e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + -2.8421709430404e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + -2.8421709430404e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + -2.8421709430404e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {e5373060-4293-4e38-8644-e6f8e6d28043}, !- Handle + Surface 295, !- Name + Wall, !- Surface Type + , !- Construction Name + {b969ae5a-bb70-41f9-a4a3-addde4e71985}, !- Space Name + Surface, !- Outside Boundary Condition + {c545392f-63d2-4e28-ac03-0b9af2b04582}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.37860156980459, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 1.37860156980459, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {00e5137f-5dcd-4d79-bc17-43c8afc6afdc}, !- Handle + Surface 296, !- Name + Wall, !- Surface Type + , !- Construction Name + {b969ae5a-bb70-41f9-a4a3-addde4e71985}, !- Space Name + Surface, !- Outside Boundary Condition + {507294d4-7043-4a3d-adb2-e7bce32dedab}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.37860156980459, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.37860156980459, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 1.37860156980459, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 1.37860156980459, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2ba21619-6a82-4a54-b2d2-d6f0a877cd9b}, !- Handle + Surface 297, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {b969ae5a-bb70-41f9-a4a3-addde4e71985}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.37860156980459, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 1.37860156980459, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {014bbad9-63d6-475a-b7ee-9489cf326206}, !- Handle + Surface 298, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {b969ae5a-bb70-41f9-a4a3-addde4e71985}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.37860156980459, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.37860156980459, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {55eaaede-3480-455d-96b5-29504e15c7ae}, !- Handle + Zone Outpatient ProcedureRoom A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {10a7b841-e562-45d6-816d-423f6187540a}, !- Zone Air Inlet Port List + {800497c0-461c-4147-8d72-5c40efad8a65}, !- Zone Air Exhaust Port List + {91a3e0d4-7dc3-4f08-8e7d-ef120b5cd49a}, !- Zone Air Node Name + {8991a4e2-b300-462a-b508-258baa802d83}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {d26c5035-8142-4294-90c3-cf6ed271595c}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {d965ac01-cdf5-4156-8fc9-e9cd4f679280}, !- Handle + Zone Outpatient ProcedureRoom A - Story ground Zone Air Node, !- Name + {91a3e0d4-7dc3-4f08-8e7d-ef120b5cd49a}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {91a3e0d4-7dc3-4f08-8e7d-ef120b5cd49a}, !- Handle + {55eaaede-3480-455d-96b5-29504e15c7ae}, !- Source Object + 11, !- Outlet Port + {d965ac01-cdf5-4156-8fc9-e9cd4f679280}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {10a7b841-e562-45d6-816d-423f6187540a}, !- Handle + {55eaaede-3480-455d-96b5-29504e15c7ae}, !- HVAC Component + {43c11be1-bcc4-4c19-b74e-2cadafdf8a3a}, !- Port 1 + {c1145a75-9285-491b-8bc6-f03a3273e68c}; !- Port 2 + +OS:PortList, + {800497c0-461c-4147-8d72-5c40efad8a65}, !- Handle + {55eaaede-3480-455d-96b5-29504e15c7ae}, !- HVAC Component + {d6166818-e57a-42d6-b701-b5416527eea0}; !- Port 1 + +OS:PortList, + {8991a4e2-b300-462a-b508-258baa802d83}, !- Handle + {55eaaede-3480-455d-96b5-29504e15c7ae}, !- HVAC Component + {4fe173d6-a707-41eb-b442-f990cd6ee0eb}; !- Port 1 + +OS:Sizing:Zone, + {de89031e-36e3-4b8d-9847-f70ed18a1dc0}, !- Handle + {55eaaede-3480-455d-96b5-29504e15c7ae}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {0d972ba6-cdc1-40c1-8a24-93e02b41b0e5}, !- Handle + Zone Outpatient ProcedureRoom A - Story ground Zone HVAC Equipment List, !- Name + {55eaaede-3480-455d-96b5-29504e15c7ae}, !- Thermal Zone + , !- Load Distribution Scheme + {aa5cfbfd-39b2-446a-842d-3550d30cc2aa}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {a27092a0-797e-465a-a706-4569083268e0}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {96aebdd5-8f2e-467c-9f22-b7606c3b70d0}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {b63c8aed-dda4-48a0-937b-507a1ba25b6f}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {66c81ad7-de50-4ec9-914e-7ad94134ead9}, !- Handle + Outpatient ProcedureRoom B - Story ground, !- Name + {864ed981-cdc7-451f-8bef-1ea81ff2d854}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 91.1587995127752, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {96e23cf6-b460-42ca-924a-e37077819d7c}; !- Thermal Zone Name + +OS:Surface, + {2ce61b76-cad4-4a75-a4d1-0856a8291510}, !- Handle + Surface 299, !- Name + Floor, !- Surface Type + {5fb6ff9c-7dd5-4883-8296-efa94864a263}, !- Construction Name + {66c81ad7-de50-4ec9-914e-7ad94134ead9}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 1.37860156980459, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 1.37860156980459, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3d677ae0-fd3f-44f6-adb3-6630847f4143}, !- Handle + Surface 300, !- Name + Wall, !- Surface Type + , !- Construction Name + {66c81ad7-de50-4ec9-914e-7ad94134ead9}, !- Space Name + Surface, !- Outside Boundary Condition + {31531020-451e-48a6-be54-388c31055b77}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.8421709430404e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + -2.8421709430404e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + -2.8421709430404e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + -2.8421709430404e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7fd7b4e4-fb67-4377-8a5f-30830d11ba12}, !- Handle + Surface 301, !- Name + Wall, !- Surface Type + , !- Construction Name + {66c81ad7-de50-4ec9-914e-7ad94134ead9}, !- Space Name + Surface, !- Outside Boundary Condition + {5faadb23-2299-44e2-aee3-ce7a65df2cf5}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.37860156980459, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 1.37860156980459, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d1de26ad-2162-4d39-b5ed-5feaa60649b3}, !- Handle + Surface 302, !- Name + Wall, !- Surface Type + , !- Construction Name + {66c81ad7-de50-4ec9-914e-7ad94134ead9}, !- Space Name + Surface, !- Outside Boundary Condition + {5ca37b11-c3b2-4a22-8841-15eb4a5abe32}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.37860156980459, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.37860156980459, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 1.37860156980459, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 1.37860156980459, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {c545392f-63d2-4e28-ac03-0b9af2b04582}, !- Handle + Surface 303, !- Name + Wall, !- Surface Type + , !- Construction Name + {66c81ad7-de50-4ec9-914e-7ad94134ead9}, !- Space Name + Surface, !- Outside Boundary Condition + {e5373060-4293-4e38-8644-e6f8e6d28043}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 1.37860156980459, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 1.37860156980459, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {708623d5-c3cb-4984-a5f2-175c1c813c0b}, !- Handle + Surface 304, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {66c81ad7-de50-4ec9-914e-7ad94134ead9}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.37860156980459, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.37860156980459, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {96e23cf6-b460-42ca-924a-e37077819d7c}, !- Handle + Zone Outpatient ProcedureRoom B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {2b162420-27cc-4608-b258-0c98fc7023c6}, !- Zone Air Inlet Port List + {23b9d6de-5f05-4dfd-97ca-af4ca7d7e130}, !- Zone Air Exhaust Port List + {d850350d-e7e9-4f72-b9a9-a785414d376a}, !- Zone Air Node Name + {712a4a7e-61a1-4093-a0c2-dca2417db6fe}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {d8f87028-1dd0-471a-a6e3-f2c7b8b46fe1}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {b2ad2035-049e-426e-beba-9c0f640e3c8a}, !- Handle + Zone Outpatient ProcedureRoom B - Story ground Zone Air Node, !- Name + {d850350d-e7e9-4f72-b9a9-a785414d376a}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {d850350d-e7e9-4f72-b9a9-a785414d376a}, !- Handle + {96e23cf6-b460-42ca-924a-e37077819d7c}, !- Source Object + 11, !- Outlet Port + {b2ad2035-049e-426e-beba-9c0f640e3c8a}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {2b162420-27cc-4608-b258-0c98fc7023c6}, !- Handle + {96e23cf6-b460-42ca-924a-e37077819d7c}, !- HVAC Component + {b87e044b-bf8b-42de-a9f7-50e2d5800dd7}, !- Port 1 + {9fe9e647-87af-48a6-997f-1fa9c3cb0ca9}; !- Port 2 + +OS:PortList, + {23b9d6de-5f05-4dfd-97ca-af4ca7d7e130}, !- Handle + {96e23cf6-b460-42ca-924a-e37077819d7c}, !- HVAC Component + {aa80830e-38d4-4975-bcaa-e6d139272c3c}; !- Port 1 + +OS:PortList, + {712a4a7e-61a1-4093-a0c2-dca2417db6fe}, !- Handle + {96e23cf6-b460-42ca-924a-e37077819d7c}, !- HVAC Component + {a1410a8d-9e0e-4cb2-94c9-933b8e95ade1}; !- Port 1 + +OS:Sizing:Zone, + {b1c3d1b0-b6d3-41d1-b95d-040b90c5b516}, !- Handle + {96e23cf6-b460-42ca-924a-e37077819d7c}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {37a01557-493a-4131-9eb4-19f5301dbade}, !- Handle + Zone Outpatient ProcedureRoom B - Story ground Zone HVAC Equipment List, !- Name + {96e23cf6-b460-42ca-924a-e37077819d7c}, !- Thermal Zone + , !- Load Distribution Scheme + {ea90854b-2f74-4f62-b0bc-14c89d02d21a}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {ba7df0cc-78c3-4ee4-9e99-baa682cd5b4c}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {61f76192-37ca-4608-86b6-7f582474a1a9}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {6fc73354-8e0b-4a0b-8521-fdc92008f676}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {9cc89a59-b3d4-4451-ba43-112b1c3f95d0}, !- Handle + Outpatient ProcedureRoom C - Story ground, !- Name + {864ed981-cdc7-451f-8bef-1ea81ff2d854}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 91.1587995127752, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {702243d0-0263-4c40-8c73-ba38e0269d50}; !- Thermal Zone Name + +OS:Surface, + {782075b5-f63c-4e66-af06-b7938caa4521}, !- Handle + Surface 305, !- Name + Floor, !- Surface Type + {26dee3f4-6d28-4268-89c1-2b2ba825c214}, !- Construction Name + {9cc89a59-b3d4-4451-ba43-112b1c3f95d0}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 1.37860156980459, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 1.37860156980459, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {dc4d6fa9-6b9b-45d7-a54e-982cee878d50}, !- Handle + Surface 306, !- Name + Wall, !- Surface Type + , !- Construction Name + {9cc89a59-b3d4-4451-ba43-112b1c3f95d0}, !- Space Name + Surface, !- Outside Boundary Condition + {3b5bcc1c-51e5-415d-82c1-48da40b14396}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.8421709430404e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + -2.8421709430404e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + -2.8421709430404e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + -2.8421709430404e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8274fc7b-22ec-44ca-97f5-06e423267370}, !- Handle + Surface 307, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {9cc89a59-b3d4-4451-ba43-112b1c3f95d0}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 1.37860156980459, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 1.37860156980459, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a1b3d670-ccc9-435a-a953-d504e491e94b}, !- Handle + Surface 308, !- Name + Wall, !- Surface Type + , !- Construction Name + {9cc89a59-b3d4-4451-ba43-112b1c3f95d0}, !- Space Name + Surface, !- Outside Boundary Condition + {281c01ba-e297-4dcc-800c-8283ef408a6c}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.37860156980459, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 1.37860156980459, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 1.37860156980459, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 1.37860156980459, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5faadb23-2299-44e2-aee3-ce7a65df2cf5}, !- Handle + Surface 309, !- Name + Wall, !- Surface Type + , !- Construction Name + {9cc89a59-b3d4-4451-ba43-112b1c3f95d0}, !- Space Name + Surface, !- Outside Boundary Condition + {7fd7b4e4-fb67-4377-8a5f-30830d11ba12}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 1.37860156980459, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 1.37860156980459, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a553f11c-b500-4d50-959b-310d9d36fad0}, !- Handle + Surface 310, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {9cc89a59-b3d4-4451-ba43-112b1c3f95d0}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.37860156980459, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 1.37860156980459, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {702243d0-0263-4c40-8c73-ba38e0269d50}, !- Handle + Zone Outpatient ProcedureRoom C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {b8c6ff64-a402-4049-8f77-5742b630880f}, !- Zone Air Inlet Port List + {b82da2c4-1a9c-4340-b927-28067e5b318f}, !- Zone Air Exhaust Port List + {e5a6ad95-2a1c-4c7d-b7b6-a5a87384cb0c}, !- Zone Air Node Name + {96f8a2f3-6d15-4e86-bfca-fa939a3b7728}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {2ab87dc4-a54d-4b5f-9aea-cdf559e91b24}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {1612e04d-4ec4-4a48-a147-ef579e6f5eb4}, !- Handle + Zone Outpatient ProcedureRoom C - Story ground Zone Air Node, !- Name + {e5a6ad95-2a1c-4c7d-b7b6-a5a87384cb0c}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {e5a6ad95-2a1c-4c7d-b7b6-a5a87384cb0c}, !- Handle + {702243d0-0263-4c40-8c73-ba38e0269d50}, !- Source Object + 11, !- Outlet Port + {1612e04d-4ec4-4a48-a147-ef579e6f5eb4}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {b8c6ff64-a402-4049-8f77-5742b630880f}, !- Handle + {702243d0-0263-4c40-8c73-ba38e0269d50}, !- HVAC Component + {ee5058f1-f4a8-4b67-a458-3c8147e90e67}, !- Port 1 + {4d39ba3f-bee0-4128-b649-215647c97c4b}; !- Port 2 + +OS:PortList, + {b82da2c4-1a9c-4340-b927-28067e5b318f}, !- Handle + {702243d0-0263-4c40-8c73-ba38e0269d50}, !- HVAC Component + {eb60d2b6-c6ec-4f9b-8e89-a1c32b86a45c}; !- Port 1 + +OS:PortList, + {96f8a2f3-6d15-4e86-bfca-fa939a3b7728}, !- Handle + {702243d0-0263-4c40-8c73-ba38e0269d50}, !- HVAC Component + {c1b5f26a-dbd6-4465-bff4-25740d65ba58}; !- Port 1 + +OS:Sizing:Zone, + {3db21888-f154-4957-8bfe-cdf4c1afa25e}, !- Handle + {702243d0-0263-4c40-8c73-ba38e0269d50}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {09f5fe6b-351b-405c-a734-31db80458bfe}, !- Handle + Zone Outpatient ProcedureRoom C - Story ground Zone HVAC Equipment List, !- Name + {702243d0-0263-4c40-8c73-ba38e0269d50}, !- Thermal Zone + , !- Load Distribution Scheme + {c2437b72-6a21-45cc-9cae-19098a5e3084}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {6988f053-8226-40cd-9534-b5bf2a285b9c}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {5b7fa331-2929-47bf-b5a7-c2ed44c95114}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {86451414-e9d9-41c4-94c5-a72405e1fe09}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {279ee2d4-a31f-45f3-a86a-ec3dc1af7a40}, !- Handle + Outpatient CleanWork A - Story ground, !- Name + {132d8eeb-89bc-4975-9e9d-32758ae60fe3}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 92.5374010825798, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {bb070526-a099-48b2-b80a-d10381e13692}; !- Thermal Zone Name + +OS:Surface, + {9de4ab1e-f7df-4342-80aa-f040d1de62c1}, !- Handle + Surface 311, !- Name + Floor, !- Surface Type + {3a2b801e-6f88-472d-aa57-2cd58b069aa0}, !- Construction Name + {279ee2d4-a31f-45f3-a86a-ec3dc1af7a40}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 1.39829587794468, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 1.39829587794468, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {507294d4-7043-4a3d-adb2-e7bce32dedab}, !- Handle + Surface 312, !- Name + Wall, !- Surface Type + , !- Construction Name + {279ee2d4-a31f-45f3-a86a-ec3dc1af7a40}, !- Space Name + Surface, !- Outside Boundary Condition + {00e5137f-5dcd-4d79-bc17-43c8afc6afdc}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0bac2457-98b1-4adf-93ad-7c105f9e29e9}, !- Handle + Surface 313, !- Name + Wall, !- Surface Type + , !- Construction Name + {279ee2d4-a31f-45f3-a86a-ec3dc1af7a40}, !- Space Name + Surface, !- Outside Boundary Condition + {dd2bae5e-4d69-421f-aa43-b13bfcc3fdf8}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.39829587794468, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 1.39829587794468, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {55e75e5a-d297-4f70-a2af-ac71c41092e6}, !- Handle + Surface 314, !- Name + Wall, !- Surface Type + , !- Construction Name + {279ee2d4-a31f-45f3-a86a-ec3dc1af7a40}, !- Space Name + Surface, !- Outside Boundary Condition + {30e6104e-d609-4b0d-bb44-3d23dbadebb8}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.39829587794468, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.39829587794468, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 1.39829587794468, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 1.39829587794468, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f3a1ff41-ce98-4565-a09b-4d273144f3ca}, !- Handle + Surface 315, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {279ee2d4-a31f-45f3-a86a-ec3dc1af7a40}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.39829587794468, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 1.39829587794468, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {456112e4-576e-42da-9ad2-23291c8003d3}, !- Handle + Surface 316, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {279ee2d4-a31f-45f3-a86a-ec3dc1af7a40}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.39829587794468, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.39829587794468, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {bb070526-a099-48b2-b80a-d10381e13692}, !- Handle + Zone Outpatient CleanWork A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {e862de05-130b-4f54-a644-a8ec575ab301}, !- Zone Air Inlet Port List + {bb32c984-c148-44fe-b405-229e4aab4059}, !- Zone Air Exhaust Port List + {71ab16ad-b098-4cf4-8306-85b51e1684fb}, !- Zone Air Node Name + {666d4dc8-3d08-44c7-b7d5-c94cfb609ff9}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {e3973330-24ee-40ee-b638-33a55cf2c8ef}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {e5b974c6-0218-4f2d-b5ae-e08c202e2301}, !- Handle + Zone Outpatient CleanWork A - Story ground Zone Air Node, !- Name + {71ab16ad-b098-4cf4-8306-85b51e1684fb}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {71ab16ad-b098-4cf4-8306-85b51e1684fb}, !- Handle + {bb070526-a099-48b2-b80a-d10381e13692}, !- Source Object + 11, !- Outlet Port + {e5b974c6-0218-4f2d-b5ae-e08c202e2301}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {e862de05-130b-4f54-a644-a8ec575ab301}, !- Handle + {bb070526-a099-48b2-b80a-d10381e13692}, !- HVAC Component + {49823f44-0a66-4efe-80a4-56bc43acae94}, !- Port 1 + {c2b0aa31-0a01-48a6-8709-abfb170c7234}; !- Port 2 + +OS:PortList, + {bb32c984-c148-44fe-b405-229e4aab4059}, !- Handle + {bb070526-a099-48b2-b80a-d10381e13692}, !- HVAC Component + {67ac1e81-46ee-4137-bc71-6d6a5365f48f}; !- Port 1 + +OS:PortList, + {666d4dc8-3d08-44c7-b7d5-c94cfb609ff9}, !- Handle + {bb070526-a099-48b2-b80a-d10381e13692}, !- HVAC Component + {3bd14383-be23-4d05-a56c-bddb052d02bc}; !- Port 1 + +OS:Sizing:Zone, + {18efeb75-4ab8-41c1-ac09-2aac6107fff7}, !- Handle + {bb070526-a099-48b2-b80a-d10381e13692}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {c0383a13-f1fd-4cbe-9a17-3a3abfc8884a}, !- Handle + Zone Outpatient CleanWork A - Story ground Zone HVAC Equipment List, !- Name + {bb070526-a099-48b2-b80a-d10381e13692}, !- Thermal Zone + , !- Load Distribution Scheme + {b4db1235-ea23-4e08-8536-5266d9d3fb2d}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {3bc258fc-f2b2-4b78-afe8-a9cf03e65940}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {800e64b0-0aa8-43e9-9d47-52de7c6c9ee0}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {062eaa5a-cfde-4c94-a9a9-41219cf2bf05}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {7c5f8d32-a2a6-49fd-921d-0efcf0f10a61}, !- Handle + Outpatient CleanWork B - Story ground, !- Name + {132d8eeb-89bc-4975-9e9d-32758ae60fe3}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 92.5374010825798, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {62f2c70e-2d76-4c28-9100-757a0498c183}; !- Thermal Zone Name + +OS:Surface, + {1210a07b-142b-4a07-a317-ae64481c997e}, !- Handle + Surface 317, !- Name + Floor, !- Surface Type + {a703b864-92b7-42b0-a40a-e63289368abb}, !- Construction Name + {7c5f8d32-a2a6-49fd-921d-0efcf0f10a61}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 1.39829587794468, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 1.39829587794468, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5ca37b11-c3b2-4a22-8841-15eb4a5abe32}, !- Handle + Surface 318, !- Name + Wall, !- Surface Type + , !- Construction Name + {7c5f8d32-a2a6-49fd-921d-0efcf0f10a61}, !- Space Name + Surface, !- Outside Boundary Condition + {d1de26ad-2162-4d39-b5ed-5feaa60649b3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {460be645-4f7c-486e-bc28-66ffa3433d7f}, !- Handle + Surface 319, !- Name + Wall, !- Surface Type + , !- Construction Name + {7c5f8d32-a2a6-49fd-921d-0efcf0f10a61}, !- Space Name + Surface, !- Outside Boundary Condition + {9bb2ac0c-d3a2-4344-9d6e-0f0bdee3fbbf}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.39829587794468, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 1.39829587794468, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7025d286-e049-403a-b4de-95dfd9ba3625}, !- Handle + Surface 320, !- Name + Wall, !- Surface Type + , !- Construction Name + {7c5f8d32-a2a6-49fd-921d-0efcf0f10a61}, !- Space Name + Surface, !- Outside Boundary Condition + {98ec3b3c-903e-4ea1-aafc-97ef4e2b1e5b}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.39829587794468, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.39829587794468, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 1.39829587794468, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 1.39829587794468, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {dd2bae5e-4d69-421f-aa43-b13bfcc3fdf8}, !- Handle + Surface 321, !- Name + Wall, !- Surface Type + , !- Construction Name + {7c5f8d32-a2a6-49fd-921d-0efcf0f10a61}, !- Space Name + Surface, !- Outside Boundary Condition + {0bac2457-98b1-4adf-93ad-7c105f9e29e9}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 1.39829587794468, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 1.39829587794468, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4c4afc59-ee82-4646-af59-9af522c517de}, !- Handle + Surface 322, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {7c5f8d32-a2a6-49fd-921d-0efcf0f10a61}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.39829587794468, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.39829587794468, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {62f2c70e-2d76-4c28-9100-757a0498c183}, !- Handle + Zone Outpatient CleanWork B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {e8255693-cf46-459b-9a6e-1cd23e09d5d6}, !- Zone Air Inlet Port List + {2e285365-01cd-44c2-ab86-2795c4759913}, !- Zone Air Exhaust Port List + {10610be2-77f5-475f-8fc4-7a214cc2835c}, !- Zone Air Node Name + {2448a4db-dad9-4948-a7b0-2462940274c3}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {499a3919-145f-419d-8e42-03c0034a519e}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {a3e270b1-ae36-4834-a83e-47cb0f2eaa13}, !- Handle + Zone Outpatient CleanWork B - Story ground Zone Air Node, !- Name + {10610be2-77f5-475f-8fc4-7a214cc2835c}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {10610be2-77f5-475f-8fc4-7a214cc2835c}, !- Handle + {62f2c70e-2d76-4c28-9100-757a0498c183}, !- Source Object + 11, !- Outlet Port + {a3e270b1-ae36-4834-a83e-47cb0f2eaa13}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {e8255693-cf46-459b-9a6e-1cd23e09d5d6}, !- Handle + {62f2c70e-2d76-4c28-9100-757a0498c183}, !- HVAC Component + {d40367d7-7de9-441a-aca5-f75cc9dff6c8}, !- Port 1 + {9aaddbc2-9508-49cf-a9c6-1ca2ef637694}; !- Port 2 + +OS:PortList, + {2e285365-01cd-44c2-ab86-2795c4759913}, !- Handle + {62f2c70e-2d76-4c28-9100-757a0498c183}, !- HVAC Component + {aafc3186-a49c-4926-adc0-4f940c37b7b7}; !- Port 1 + +OS:PortList, + {2448a4db-dad9-4948-a7b0-2462940274c3}, !- Handle + {62f2c70e-2d76-4c28-9100-757a0498c183}, !- HVAC Component + {a7d751a6-781b-47d1-b088-c06a577aba09}; !- Port 1 + +OS:Sizing:Zone, + {2bfa56f6-ed6d-4704-a08d-2573d6407fd2}, !- Handle + {62f2c70e-2d76-4c28-9100-757a0498c183}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {68c531e7-99c0-4b3f-8594-cf64cff26aa4}, !- Handle + Zone Outpatient CleanWork B - Story ground Zone HVAC Equipment List, !- Name + {62f2c70e-2d76-4c28-9100-757a0498c183}, !- Thermal Zone + , !- Load Distribution Scheme + {3472d834-24d4-48b0-be7b-b7d4412d73af}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {a16664ab-b7c9-453c-8e72-95321f9cf927}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {56deb7d4-4670-4788-aae4-7f71690fc6ad}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {27f33618-31c1-445b-a847-81fbd346767a}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {c96964fc-5a4c-4e22-8ce6-e681f05ff2d0}, !- Handle + Outpatient CleanWork C - Story ground, !- Name + {132d8eeb-89bc-4975-9e9d-32758ae60fe3}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 92.5374010825798, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {8c115021-b774-45fa-b556-bd9d7f27a7e1}; !- Thermal Zone Name + +OS:Surface, + {be6cfa5a-c9ff-4593-b385-082359edab1b}, !- Handle + Surface 323, !- Name + Floor, !- Surface Type + {3a2b801e-6f88-472d-aa57-2cd58b069aa0}, !- Construction Name + {c96964fc-5a4c-4e22-8ce6-e681f05ff2d0}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 1.39829587794468, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 1.39829587794468, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {281c01ba-e297-4dcc-800c-8283ef408a6c}, !- Handle + Surface 324, !- Name + Wall, !- Surface Type + , !- Construction Name + {c96964fc-5a4c-4e22-8ce6-e681f05ff2d0}, !- Space Name + Surface, !- Outside Boundary Condition + {a1b3d670-ccc9-435a-a953-d504e491e94b}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {eb078722-c219-437a-8ce6-90ccb613f550}, !- Handle + Surface 325, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {c96964fc-5a4c-4e22-8ce6-e681f05ff2d0}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 1.39829587794468, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 1.39829587794468, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4296db5b-2bdd-4575-9c67-e8bab822acaa}, !- Handle + Surface 326, !- Name + Wall, !- Surface Type + , !- Construction Name + {c96964fc-5a4c-4e22-8ce6-e681f05ff2d0}, !- Space Name + Surface, !- Outside Boundary Condition + {6c0e2528-59f4-4ea1-b1c9-5244799bc85f}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.39829587794468, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 1.39829587794468, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 1.39829587794468, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 1.39829587794468, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9bb2ac0c-d3a2-4344-9d6e-0f0bdee3fbbf}, !- Handle + Surface 327, !- Name + Wall, !- Surface Type + , !- Construction Name + {c96964fc-5a4c-4e22-8ce6-e681f05ff2d0}, !- Space Name + Surface, !- Outside Boundary Condition + {460be645-4f7c-486e-bc28-66ffa3433d7f}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 1.39829587794468, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 1.39829587794468, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9aa1bf2a-9a80-4102-891e-8e549e358531}, !- Handle + Surface 328, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {c96964fc-5a4c-4e22-8ce6-e681f05ff2d0}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.39829587794468, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 1.39829587794468, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {8c115021-b774-45fa-b556-bd9d7f27a7e1}, !- Handle + Zone Outpatient CleanWork C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {a476ca78-06e6-4281-b7dc-b8e19656fff7}, !- Zone Air Inlet Port List + {e9b4df6c-e9d4-46f9-bb86-1c669d3af64e}, !- Zone Air Exhaust Port List + {5ad9eddd-5346-4da5-9c24-908ba6cf9985}, !- Zone Air Node Name + {1855496e-ffa0-4903-abe6-1a113767431b}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {e51cd6ac-78c0-414c-adb4-dd608f5cd43f}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {2f9e4dcd-d091-416b-bbe3-bcb576ab63b0}, !- Handle + Zone Outpatient CleanWork C - Story ground Zone Air Node, !- Name + {5ad9eddd-5346-4da5-9c24-908ba6cf9985}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {5ad9eddd-5346-4da5-9c24-908ba6cf9985}, !- Handle + {8c115021-b774-45fa-b556-bd9d7f27a7e1}, !- Source Object + 11, !- Outlet Port + {2f9e4dcd-d091-416b-bbe3-bcb576ab63b0}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {a476ca78-06e6-4281-b7dc-b8e19656fff7}, !- Handle + {8c115021-b774-45fa-b556-bd9d7f27a7e1}, !- HVAC Component + {5dbbaed1-17ac-4086-8d8c-efed3c45e711}, !- Port 1 + {21bb61c4-5e90-4ecc-8b4b-cb32dbad3541}; !- Port 2 + +OS:PortList, + {e9b4df6c-e9d4-46f9-bb86-1c669d3af64e}, !- Handle + {8c115021-b774-45fa-b556-bd9d7f27a7e1}, !- HVAC Component + {006f7508-aade-45a6-8d31-4e2881a5e62a}; !- Port 1 + +OS:PortList, + {1855496e-ffa0-4903-abe6-1a113767431b}, !- Handle + {8c115021-b774-45fa-b556-bd9d7f27a7e1}, !- HVAC Component + {9219c879-72e5-43ad-925a-6a8b4e6bcbf7}; !- Port 1 + +OS:Sizing:Zone, + {a2a95401-a204-47aa-a43c-ce405040dc01}, !- Handle + {8c115021-b774-45fa-b556-bd9d7f27a7e1}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {3a16fcd0-3378-4c66-96d8-fa3ddafadfc5}, !- Handle + Zone Outpatient CleanWork C - Story ground Zone HVAC Equipment List, !- Name + {8c115021-b774-45fa-b556-bd9d7f27a7e1}, !- Thermal Zone + , !- Load Distribution Scheme + {8cd69ef4-5a1e-4253-874a-5ef1f5b5c489}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {a366a726-2993-41ad-8214-3f8bb6ee931a}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {0a031bd6-3f07-453c-bf67-2bc6d17d0be0}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {a731cbf3-9cc2-4b70-adc0-5c84d6d8e7fa}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {0d5369c4-e9f2-406b-8a24-071ce82d3546}, !- Handle + Outpatient Conference A - Story ground, !- Name + {93b236bb-87a7-4e13-8625-9c2aa92c03be}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 93.9356969605245, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {a87224e4-9769-4795-afd0-0c728f86d12f}; !- Thermal Zone Name + +OS:Surface, + {4606c4d4-4395-4bcd-827c-2fb60b390322}, !- Handle + Surface 329, !- Name + Floor, !- Surface Type + {01cac969-f361-4434-8e33-98b31a432011}, !- Construction Name + {0d5369c4-e9f2-406b-8a24-071ce82d3546}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 1.6149332674854, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 1.6149332674854, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {30e6104e-d609-4b0d-bb44-3d23dbadebb8}, !- Handle + Surface 330, !- Name + Wall, !- Surface Type + , !- Construction Name + {0d5369c4-e9f2-406b-8a24-071ce82d3546}, !- Space Name + Surface, !- Outside Boundary Condition + {55e75e5a-d297-4f70-a2af-ac71c41092e6}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {21da8d46-cb55-4517-9897-81efe3eee2d5}, !- Handle + Surface 331, !- Name + Wall, !- Surface Type + , !- Construction Name + {0d5369c4-e9f2-406b-8a24-071ce82d3546}, !- Space Name + Surface, !- Outside Boundary Condition + {73c8ef33-a090-45d4-a344-a4d518dcbbc9}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.6149332674854, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 1.6149332674854, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3b4c5337-c2fa-4ee2-ada2-7846fdbb3ca9}, !- Handle + Surface 332, !- Name + Wall, !- Surface Type + , !- Construction Name + {0d5369c4-e9f2-406b-8a24-071ce82d3546}, !- Space Name + Surface, !- Outside Boundary Condition + {e5322336-6c70-4b21-9c2c-928e78b80b40}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.6149332674854, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.6149332674854, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 1.6149332674854, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 1.6149332674854, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {77c57adb-a029-410b-b540-50e2b417bdf0}, !- Handle + Surface 333, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {0d5369c4-e9f2-406b-8a24-071ce82d3546}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.6149332674854, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 1.6149332674854, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {6c65a969-bdc7-4333-95d8-1407b3982b5b}, !- Handle + Surface 334, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {0d5369c4-e9f2-406b-8a24-071ce82d3546}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.6149332674854, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.6149332674854, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + 0, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {a87224e4-9769-4795-afd0-0c728f86d12f}, !- Handle + Zone Outpatient Conference A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {d8094532-a9d4-4c02-9d69-22e1cfeb16b0}, !- Zone Air Inlet Port List + {08dcfd3b-7fa5-4651-85ec-78d6c5faba61}, !- Zone Air Exhaust Port List + {973c83ef-b2ea-4524-a47a-aaf603c1a53a}, !- Zone Air Node Name + {17e176c3-77e0-47f9-8dd7-75df93e53970}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {5f7b3eae-994e-43c5-b9ad-1e10f0f4a675}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {cddf5600-e898-4f64-8e7d-5bfe491e4691}, !- Handle + Zone Outpatient Conference A - Story ground Zone Air Node, !- Name + {973c83ef-b2ea-4524-a47a-aaf603c1a53a}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {973c83ef-b2ea-4524-a47a-aaf603c1a53a}, !- Handle + {a87224e4-9769-4795-afd0-0c728f86d12f}, !- Source Object + 11, !- Outlet Port + {cddf5600-e898-4f64-8e7d-5bfe491e4691}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {d8094532-a9d4-4c02-9d69-22e1cfeb16b0}, !- Handle + {a87224e4-9769-4795-afd0-0c728f86d12f}, !- HVAC Component + {4234bf74-529a-49f0-a483-92f2fe4b59f6}, !- Port 1 + {3e43790b-e0fb-48c1-a8ca-2b3366a67483}; !- Port 2 + +OS:PortList, + {08dcfd3b-7fa5-4651-85ec-78d6c5faba61}, !- Handle + {a87224e4-9769-4795-afd0-0c728f86d12f}, !- HVAC Component + {11e071d7-4ad1-49bd-a7aa-92c0cf257f14}; !- Port 1 + +OS:PortList, + {17e176c3-77e0-47f9-8dd7-75df93e53970}, !- Handle + {a87224e4-9769-4795-afd0-0c728f86d12f}, !- HVAC Component + {bab94e22-bb53-420a-ac44-7e83c7c6b7db}; !- Port 1 + +OS:Sizing:Zone, + {66721d3d-e087-48d4-9380-45c78c47a478}, !- Handle + {a87224e4-9769-4795-afd0-0c728f86d12f}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {04a7ca4c-298c-4a6e-8678-d0309cfcbc07}, !- Handle + Zone Outpatient Conference A - Story ground Zone HVAC Equipment List, !- Name + {a87224e4-9769-4795-afd0-0c728f86d12f}, !- Thermal Zone + , !- Load Distribution Scheme + {e59bdda4-e59e-4afc-bec6-85091b870875}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {e3868add-47de-432e-b829-d1d57487f2b1}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {0b7b07cf-5933-4454-8487-faddd76be6ff}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {1f73d072-f4aa-4ecb-a601-c9a7c54e86f6}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {8d397a8b-fdcb-4d0a-bd5c-e4ad54a26e05}, !- Handle + Outpatient Conference B - Story ground, !- Name + {93b236bb-87a7-4e13-8625-9c2aa92c03be}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 93.9356969605245, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {b5f310f7-6d1d-41a6-a2d5-7daff673b95b}; !- Thermal Zone Name + +OS:Surface, + {643bb874-0a2c-455d-8c96-a0e50ca9fbba}, !- Handle + Surface 335, !- Name + Floor, !- Surface Type + {90796947-f129-4d9c-bb5c-888475dd9f33}, !- Construction Name + {8d397a8b-fdcb-4d0a-bd5c-e4ad54a26e05}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + 0, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 1.6149332674854, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 1.6149332674854, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {98ec3b3c-903e-4ea1-aafc-97ef4e2b1e5b}, !- Handle + Surface 336, !- Name + Wall, !- Surface Type + , !- Construction Name + {8d397a8b-fdcb-4d0a-bd5c-e4ad54a26e05}, !- Space Name + Surface, !- Outside Boundary Condition + {7025d286-e049-403a-b4de-95dfd9ba3625}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {54b2abd1-a9c3-4032-803e-6b431bc4862a}, !- Handle + Surface 337, !- Name + Wall, !- Surface Type + , !- Construction Name + {8d397a8b-fdcb-4d0a-bd5c-e4ad54a26e05}, !- Space Name + Surface, !- Outside Boundary Condition + {821b3f59-df84-4745-ae77-425562866803}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.6149332674854, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 1.6149332674854, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + 0, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + 0, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {21585a3f-6b5f-45ef-885a-08cb4737a5b8}, !- Handle + Surface 338, !- Name + Wall, !- Surface Type + , !- Construction Name + {8d397a8b-fdcb-4d0a-bd5c-e4ad54a26e05}, !- Space Name + Surface, !- Outside Boundary Condition + {b7e59380-8f61-4ab2-b64d-e79406806d20}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.6149332674854, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.6149332674854, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 1.6149332674854, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 1.6149332674854, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {73c8ef33-a090-45d4-a344-a4d518dcbbc9}, !- Handle + Surface 339, !- Name + Wall, !- Surface Type + , !- Construction Name + {8d397a8b-fdcb-4d0a-bd5c-e4ad54a26e05}, !- Space Name + Surface, !- Outside Boundary Condition + {21da8d46-cb55-4517-9897-81efe3eee2d5}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 1.6149332674854, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 1.6149332674854, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f3ab922b-ccf2-47b8-9576-67a18e9aa914}, !- Handle + Surface 340, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {8d397a8b-fdcb-4d0a-bd5c-e4ad54a26e05}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.6149332674854, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.6149332674854, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + 0, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {b5f310f7-6d1d-41a6-a2d5-7daff673b95b}, !- Handle + Zone Outpatient Conference B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {6099d2ce-cf6b-4005-bd57-cd4a03421938}, !- Zone Air Inlet Port List + {4c3b582a-5d34-4d82-83cf-67dd69e5f74e}, !- Zone Air Exhaust Port List + {c2faefa3-d278-4a6b-95bb-d9f3c0e24664}, !- Zone Air Node Name + {5c490f23-752c-4ea4-b9a2-c4499be0e574}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {e9a26475-92f4-435c-8716-9946a2bb745a}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {640f0cb6-7e54-4e27-b3b6-06bdec9e73b9}, !- Handle + Zone Outpatient Conference B - Story ground Zone Air Node, !- Name + {c2faefa3-d278-4a6b-95bb-d9f3c0e24664}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {c2faefa3-d278-4a6b-95bb-d9f3c0e24664}, !- Handle + {b5f310f7-6d1d-41a6-a2d5-7daff673b95b}, !- Source Object + 11, !- Outlet Port + {640f0cb6-7e54-4e27-b3b6-06bdec9e73b9}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {6099d2ce-cf6b-4005-bd57-cd4a03421938}, !- Handle + {b5f310f7-6d1d-41a6-a2d5-7daff673b95b}, !- HVAC Component + {b98282ff-8a11-4b9a-a273-faa46ea132e4}, !- Port 1 + {e1c3d8f3-a2c0-48d0-a319-d67f2457b142}; !- Port 2 + +OS:PortList, + {4c3b582a-5d34-4d82-83cf-67dd69e5f74e}, !- Handle + {b5f310f7-6d1d-41a6-a2d5-7daff673b95b}, !- HVAC Component + {20ac3eab-c6b0-4a7c-8192-31d34cab252a}; !- Port 1 + +OS:PortList, + {5c490f23-752c-4ea4-b9a2-c4499be0e574}, !- Handle + {b5f310f7-6d1d-41a6-a2d5-7daff673b95b}, !- HVAC Component + {5a365a92-5e4b-4cbc-b38e-22e4f59d5d55}; !- Port 1 + +OS:Sizing:Zone, + {869946bd-d6b6-4760-b8f3-ad4cf6692bf2}, !- Handle + {b5f310f7-6d1d-41a6-a2d5-7daff673b95b}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {fa6c770e-1569-42fe-8bab-d71ef14a8c6f}, !- Handle + Zone Outpatient Conference B - Story ground Zone HVAC Equipment List, !- Name + {b5f310f7-6d1d-41a6-a2d5-7daff673b95b}, !- Thermal Zone + , !- Load Distribution Scheme + {8ea298a0-9113-45d8-a1ab-c3463125d0e2}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {a0f0aadc-4081-489e-bc9c-46583e3310e2}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {177c8b4f-b325-4905-99fb-aa773aecbbb0}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {937a8fa9-5553-46a3-9734-bf40a723fe52}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {eff276b1-a689-4a99-bfe5-610f40a01485}, !- Handle + Outpatient Conference C - Story ground, !- Name + {93b236bb-87a7-4e13-8625-9c2aa92c03be}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 93.9356969605245, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {47dfca49-cc7a-4f53-9025-7aa47afab63d}; !- Thermal Zone Name + +OS:Surface, + {c195b666-87ae-4cf2-9210-561ec4323c93}, !- Handle + Surface 341, !- Name + Floor, !- Surface Type + {01cac969-f361-4434-8e33-98b31a432011}, !- Construction Name + {eff276b1-a689-4a99-bfe5-610f40a01485}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + 0, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 1.6149332674854, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 1.6149332674854, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {6c0e2528-59f4-4ea1-b1c9-5244799bc85f}, !- Handle + Surface 342, !- Name + Wall, !- Surface Type + , !- Construction Name + {eff276b1-a689-4a99-bfe5-610f40a01485}, !- Space Name + Surface, !- Outside Boundary Condition + {4296db5b-2bdd-4575-9c67-e8bab822acaa}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.4210854715202e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + -1.4210854715202e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + -1.4210854715202e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + -1.4210854715202e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {dd82fa5c-92bb-4452-9493-40ef9ccd7aff}, !- Handle + Surface 343, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {eff276b1-a689-4a99-bfe5-610f40a01485}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 1.6149332674854, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 1.6149332674854, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fd21d0e4-1fae-479d-ac87-28717ac88330}, !- Handle + Surface 344, !- Name + Wall, !- Surface Type + , !- Construction Name + {eff276b1-a689-4a99-bfe5-610f40a01485}, !- Space Name + Surface, !- Outside Boundary Condition + {3765d7af-679e-4981-add8-d9d276d23475}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.6149332674854, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 1.6149332674854, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 1.6149332674854, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 1.6149332674854, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {821b3f59-df84-4745-ae77-425562866803}, !- Handle + Surface 345, !- Name + Wall, !- Surface Type + , !- Construction Name + {eff276b1-a689-4a99-bfe5-610f40a01485}, !- Space Name + Surface, !- Outside Boundary Condition + {54b2abd1-a9c3-4032-803e-6b431bc4862a}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 1.6149332674854, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 1.6149332674854, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {869bc9f5-98c8-4b8f-8d73-580b8b0c1fcd}, !- Handle + Surface 346, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {eff276b1-a689-4a99-bfe5-610f40a01485}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.6149332674854, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 1.6149332674854, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + 0, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {47dfca49-cc7a-4f53-9025-7aa47afab63d}, !- Handle + Zone Outpatient Conference C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {eca4e934-9ddb-4181-bed5-89b7c4f37a45}, !- Zone Air Inlet Port List + {df207a82-c629-43fc-97dc-f03ab6265394}, !- Zone Air Exhaust Port List + {ed112d7a-29ce-4afd-962a-f22c6c28cf08}, !- Zone Air Node Name + {6b790f6a-6ef1-4613-8fa1-1c3d9244617b}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {97d0449a-d90a-485a-94ca-501ea802c956}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {2f48f7da-c744-448f-be70-f46c9b1fa01b}, !- Handle + Zone Outpatient Conference C - Story ground Zone Air Node, !- Name + {ed112d7a-29ce-4afd-962a-f22c6c28cf08}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {ed112d7a-29ce-4afd-962a-f22c6c28cf08}, !- Handle + {47dfca49-cc7a-4f53-9025-7aa47afab63d}, !- Source Object + 11, !- Outlet Port + {2f48f7da-c744-448f-be70-f46c9b1fa01b}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {eca4e934-9ddb-4181-bed5-89b7c4f37a45}, !- Handle + {47dfca49-cc7a-4f53-9025-7aa47afab63d}, !- HVAC Component + {625d9e78-3070-46e9-a3b4-01a9252223c9}, !- Port 1 + {faf7a613-022f-4147-a55d-fa12dd5dfef4}; !- Port 2 + +OS:PortList, + {df207a82-c629-43fc-97dc-f03ab6265394}, !- Handle + {47dfca49-cc7a-4f53-9025-7aa47afab63d}, !- HVAC Component + {9cfe01b8-4926-4a9d-9fd3-cc1d20b7882c}; !- Port 1 + +OS:PortList, + {6b790f6a-6ef1-4613-8fa1-1c3d9244617b}, !- Handle + {47dfca49-cc7a-4f53-9025-7aa47afab63d}, !- HVAC Component + {ca09c4dd-9285-4868-bd52-eee690abfb9b}; !- Port 1 + +OS:Sizing:Zone, + {443bd7ac-12ad-4bb1-b317-73613b252a73}, !- Handle + {47dfca49-cc7a-4f53-9025-7aa47afab63d}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {c75289ec-035a-4045-a142-4242bcc8a1c5}, !- Handle + Zone Outpatient Conference C - Story ground Zone HVAC Equipment List, !- Name + {47dfca49-cc7a-4f53-9025-7aa47afab63d}, !- Thermal Zone + , !- Load Distribution Scheme + {ceb44b5d-b8b0-46d0-a067-9a35bae94886}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {ba45e029-609e-4564-bef0-a9defb3df3ad}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {4937641e-2ae4-4d3d-a8fe-0d4f7f4de96e}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {b4ec4a33-af4e-48de-8f03-bd9de2627f5a}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {0d0a619a-5354-469a-a62f-6495d01fc842}, !- Handle + Outpatient Soil Work A - Story ground, !- Name + {d0eedb12-8aab-42b8-8864-4ef144c40d57}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 95.5506302280099, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {7972f294-8713-46c4-8c87-1b88c2d39a86}; !- Thermal Zone Name + +OS:Surface, + {faa312de-30c7-4ac3-a737-231097d0ddbe}, !- Handle + Surface 347, !- Name + Floor, !- Surface Type + {c460d5b3-b350-4e35-92f5-6de52eced61d}, !- Construction Name + {0d0a619a-5354-469a-a62f-6495d01fc842}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 1.7330991163258, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 1.7330991163258, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {e5322336-6c70-4b21-9c2c-928e78b80b40}, !- Handle + Surface 348, !- Name + Wall, !- Surface Type + , !- Construction Name + {0d0a619a-5354-469a-a62f-6495d01fc842}, !- Space Name + Surface, !- Outside Boundary Condition + {3b4c5337-c2fa-4ee2-ada2-7846fdbb3ca9}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {83554f55-e3a6-4390-a366-5fd2670045a3}, !- Handle + Surface 349, !- Name + Wall, !- Surface Type + , !- Construction Name + {0d0a619a-5354-469a-a62f-6495d01fc842}, !- Space Name + Surface, !- Outside Boundary Condition + {fe0b39a1-bfc4-42b5-89e2-0cd13b16fe06}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.7330991163258, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 1.7330991163258, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {337d4edd-19eb-4b15-926b-4b98dbeeabed}, !- Handle + Surface 350, !- Name + Wall, !- Surface Type + , !- Construction Name + {0d0a619a-5354-469a-a62f-6495d01fc842}, !- Space Name + Surface, !- Outside Boundary Condition + {d2c9a31d-192a-4f2d-a339-7a3053266555}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.7330991163258, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.7330991163258, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 1.7330991163258, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 1.7330991163258, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {c4714903-03d8-449c-8633-acedacb009ae}, !- Handle + Surface 351, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {0d0a619a-5354-469a-a62f-6495d01fc842}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.7330991163258, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 1.7330991163258, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {59c6cc05-eb2d-4746-8408-1d0f9f607e83}, !- Handle + Surface 352, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {0d0a619a-5354-469a-a62f-6495d01fc842}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.7330991163258, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.7330991163258, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + 0, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {7972f294-8713-46c4-8c87-1b88c2d39a86}, !- Handle + Zone Outpatient Soil Work A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {9b4871c3-385e-40a5-a88f-5e6b4583e407}, !- Zone Air Inlet Port List + {8ba5d81e-a2f3-4980-a216-9954bfd1c923}, !- Zone Air Exhaust Port List + {bbafcfd0-b9a6-43a4-9625-513831303903}, !- Zone Air Node Name + {13171ee0-8b7f-40f8-b4d1-5f9145963a85}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {d405e0d6-7991-409e-8938-1c5f6d967bd4}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {5be4476d-e259-48e2-906e-faec731ea934}, !- Handle + Zone Outpatient Soil Work A - Story ground Zone Air Node, !- Name + {bbafcfd0-b9a6-43a4-9625-513831303903}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {bbafcfd0-b9a6-43a4-9625-513831303903}, !- Handle + {7972f294-8713-46c4-8c87-1b88c2d39a86}, !- Source Object + 11, !- Outlet Port + {5be4476d-e259-48e2-906e-faec731ea934}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {9b4871c3-385e-40a5-a88f-5e6b4583e407}, !- Handle + {7972f294-8713-46c4-8c87-1b88c2d39a86}, !- HVAC Component + {95b9feb6-bc69-44ab-9d16-a3e65ee29d3b}, !- Port 1 + {b1839211-d3d1-4a15-b7db-0e62a9fe6586}; !- Port 2 + +OS:PortList, + {8ba5d81e-a2f3-4980-a216-9954bfd1c923}, !- Handle + {7972f294-8713-46c4-8c87-1b88c2d39a86}, !- HVAC Component + {a6688c12-6468-40c1-8307-537998f70e01}, !- Port 1 + {5f3196a5-62ae-45bd-8eab-f557342002dd}; !- Port 2 + +OS:PortList, + {13171ee0-8b7f-40f8-b4d1-5f9145963a85}, !- Handle + {7972f294-8713-46c4-8c87-1b88c2d39a86}, !- HVAC Component + {eada7f44-0df8-4999-99fc-9ee3985d7687}; !- Port 1 + +OS:Sizing:Zone, + {715959dc-ba43-48f5-9e63-e217b92227e9}, !- Handle + {7972f294-8713-46c4-8c87-1b88c2d39a86}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {59930d6c-5b89-4b62-a145-5f4e85b386a8}, !- Handle + Zone Outpatient Soil Work A - Story ground Zone HVAC Equipment List, !- Name + {7972f294-8713-46c4-8c87-1b88c2d39a86}, !- Thermal Zone + , !- Load Distribution Scheme + {364c071b-7ace-44f3-8b81-7a9d2c1cb55c}, !- Zone Equipment 1 + 2, !- Zone Equipment Cooling Sequence 1 + 2, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {f7542972-2d43-4156-a168-9c448fa2c554}, !- Zone Equipment 2 + 1, !- Zone Equipment Cooling Sequence 2 + 1, !- Zone Equipment Heating or No-Load Sequence 2 + {7aad8862-f6cc-410a-bbdc-d4f7674265da}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + {c66ab473-ac76-47d1-b3e3-35446a86b232}, !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {91164776-d335-4832-81ae-6815d50020a3}, !- Zone Equipment 3 + 3, !- Zone Equipment Cooling Sequence 3 + 3, !- Zone Equipment Heating or No-Load Sequence 3 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 3 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 3 + +OS:Space, + {c8d87457-0b89-4f7c-8815-aa87ae84f957}, !- Handle + Outpatient Soil Work B - Story ground, !- Name + {d0eedb12-8aab-42b8-8864-4ef144c40d57}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 95.5506302280099, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {13c397f2-60fc-4601-a7db-88fcc995950a}; !- Thermal Zone Name + +OS:Surface, + {83e28fdb-5ab3-4c51-9204-fb8c3ff9ba01}, !- Handle + Surface 353, !- Name + Floor, !- Surface Type + {d0faa8ba-8a75-4ce2-b566-6bacae89d889}, !- Construction Name + {c8d87457-0b89-4f7c-8815-aa87ae84f957}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + 0, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 1.7330991163258, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 1.7330991163258, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b7e59380-8f61-4ab2-b64d-e79406806d20}, !- Handle + Surface 354, !- Name + Wall, !- Surface Type + , !- Construction Name + {c8d87457-0b89-4f7c-8815-aa87ae84f957}, !- Space Name + Surface, !- Outside Boundary Condition + {21585a3f-6b5f-45ef-885a-08cb4737a5b8}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 0, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d243b511-ee2c-407f-a674-7806581e60ee}, !- Handle + Surface 355, !- Name + Wall, !- Surface Type + , !- Construction Name + {c8d87457-0b89-4f7c-8815-aa87ae84f957}, !- Space Name + Surface, !- Outside Boundary Condition + {e4d1cc5f-beef-4d7d-8847-a86d37f29e37}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.7330991163258, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 1.7330991163258, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + 0, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + 0, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {bf043961-0958-4397-8cda-a7cc759c946c}, !- Handle + Surface 356, !- Name + Wall, !- Surface Type + , !- Construction Name + {c8d87457-0b89-4f7c-8815-aa87ae84f957}, !- Space Name + Surface, !- Outside Boundary Condition + {5bdd5612-db87-45a5-830e-94969711ffdc}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.7330991163258, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.7330991163258, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 1.7330991163258, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 1.7330991163258, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fe0b39a1-bfc4-42b5-89e2-0cd13b16fe06}, !- Handle + Surface 357, !- Name + Wall, !- Surface Type + , !- Construction Name + {c8d87457-0b89-4f7c-8815-aa87ae84f957}, !- Space Name + Surface, !- Outside Boundary Condition + {83554f55-e3a6-4390-a366-5fd2670045a3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 1.7330991163258, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 1.7330991163258, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {cc314781-0585-467b-8784-32946c849246}, !- Handle + Surface 358, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {c8d87457-0b89-4f7c-8815-aa87ae84f957}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.7330991163258, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.7330991163258, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + 0, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {13c397f2-60fc-4601-a7db-88fcc995950a}, !- Handle + Zone Outpatient Soil Work B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {795f8027-57b8-4abe-b36d-bf5a95b479e9}, !- Zone Air Inlet Port List + {731cd018-035e-4bb0-8ecc-424bfaec08ea}, !- Zone Air Exhaust Port List + {ccdb4ac0-8338-4998-b0fb-37f196c67086}, !- Zone Air Node Name + {45afc834-16cf-4322-aae9-ad8383687c2e}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {e904fe60-e57c-40f6-8556-18bb06e83d42}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {6d226f29-6701-46fb-887c-d640f1e6724b}, !- Handle + Zone Outpatient Soil Work B - Story ground Zone Air Node, !- Name + {ccdb4ac0-8338-4998-b0fb-37f196c67086}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {ccdb4ac0-8338-4998-b0fb-37f196c67086}, !- Handle + {13c397f2-60fc-4601-a7db-88fcc995950a}, !- Source Object + 11, !- Outlet Port + {6d226f29-6701-46fb-887c-d640f1e6724b}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {795f8027-57b8-4abe-b36d-bf5a95b479e9}, !- Handle + {13c397f2-60fc-4601-a7db-88fcc995950a}, !- HVAC Component + {8245f6dd-d198-429a-9959-28bd9b386241}, !- Port 1 + {7b6ff32f-1fde-47c0-9300-ad5ea52f39c4}; !- Port 2 + +OS:PortList, + {731cd018-035e-4bb0-8ecc-424bfaec08ea}, !- Handle + {13c397f2-60fc-4601-a7db-88fcc995950a}, !- HVAC Component + {5e48dbe1-c901-4349-8d2e-246c3a777f10}, !- Port 1 + {379d56c2-f5e5-4629-a145-8ac3790ccc59}; !- Port 2 + +OS:PortList, + {45afc834-16cf-4322-aae9-ad8383687c2e}, !- Handle + {13c397f2-60fc-4601-a7db-88fcc995950a}, !- HVAC Component + {19553510-f8ec-4a73-ac59-941de3232190}; !- Port 1 + +OS:Sizing:Zone, + {38be0beb-6bf4-452b-af3a-9d4ab767b419}, !- Handle + {13c397f2-60fc-4601-a7db-88fcc995950a}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {11b9f0da-3b52-4d42-86b1-c68d69e146a1}, !- Handle + Zone Outpatient Soil Work B - Story ground Zone HVAC Equipment List, !- Name + {13c397f2-60fc-4601-a7db-88fcc995950a}, !- Thermal Zone + , !- Load Distribution Scheme + {81c41094-b39e-4958-b517-50489fcb1f9f}, !- Zone Equipment 1 + 2, !- Zone Equipment Cooling Sequence 1 + 2, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {e3224be8-5ef7-472f-997d-1d909021014e}, !- Zone Equipment 2 + 1, !- Zone Equipment Cooling Sequence 2 + 1, !- Zone Equipment Heating or No-Load Sequence 2 + {46474b0a-49be-4cf9-8880-95019506dd89}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + {ba74a39c-42bd-4f5a-aa93-014fcbb0a967}, !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {4592786c-a85d-45b1-b57e-8613f15fc31f}, !- Zone Equipment 3 + 3, !- Zone Equipment Cooling Sequence 3 + 3, !- Zone Equipment Heating or No-Load Sequence 3 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 3 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 3 + +OS:Space, + {fae96387-f8f0-48eb-9d1f-7570679911e5}, !- Handle + Outpatient Soil Work C - Story ground, !- Name + {d0eedb12-8aab-42b8-8864-4ef144c40d57}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 95.5506302280099, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {33498ffa-85de-4577-a45e-fba662f5c7e8}; !- Thermal Zone Name + +OS:Surface, + {b8b50ae8-7199-4170-ab19-73641aa2908e}, !- Handle + Surface 359, !- Name + Floor, !- Surface Type + {c460d5b3-b350-4e35-92f5-6de52eced61d}, !- Construction Name + {fae96387-f8f0-48eb-9d1f-7570679911e5}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + 0, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 1.7330991163258, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 1.7330991163258, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3765d7af-679e-4981-add8-d9d276d23475}, !- Handle + Surface 360, !- Name + Wall, !- Surface Type + , !- Construction Name + {fae96387-f8f0-48eb-9d1f-7570679911e5}, !- Space Name + Surface, !- Outside Boundary Condition + {fd21d0e4-1fae-479d-ac87-28717ac88330}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 0, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 0, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2af10519-523d-43b0-9f8b-f324af75ef67}, !- Handle + Surface 361, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {fae96387-f8f0-48eb-9d1f-7570679911e5}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 1.7330991163258, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 1.7330991163258, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {56b23779-2954-42e3-ab0f-70f90c5e56ae}, !- Handle + Surface 362, !- Name + Wall, !- Surface Type + , !- Construction Name + {fae96387-f8f0-48eb-9d1f-7570679911e5}, !- Space Name + Surface, !- Outside Boundary Condition + {d4ebb06f-13e5-4b35-ad64-4a4a96aa64e9}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.7330991163258, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 1.7330991163258, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 1.7330991163258, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 1.7330991163258, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {e4d1cc5f-beef-4d7d-8847-a86d37f29e37}, !- Handle + Surface 363, !- Name + Wall, !- Surface Type + , !- Construction Name + {fae96387-f8f0-48eb-9d1f-7570679911e5}, !- Space Name + Surface, !- Outside Boundary Condition + {d243b511-ee2c-407f-a674-7806581e60ee}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 0, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 1.7330991163258, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 1.7330991163258, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0ceecc6a-4bea-4c2b-b353-28fadf26de38}, !- Handle + Surface 364, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {fae96387-f8f0-48eb-9d1f-7570679911e5}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.7330991163258, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 1.7330991163258, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 0, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + 0, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {33498ffa-85de-4577-a45e-fba662f5c7e8}, !- Handle + Zone Outpatient Soil Work C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {0f710fea-085e-48ef-816c-284dc0664bcc}, !- Zone Air Inlet Port List + {090d4401-04e2-4253-b891-d05da5f8e55d}, !- Zone Air Exhaust Port List + {f7de8224-3db6-47b6-a6fc-82de8e103878}, !- Zone Air Node Name + {ac6699d0-2ef7-4391-b486-91f5a48b6abc}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {f16b963b-984b-42bd-be00-43206b426a40}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {bdcd7893-59ed-4990-992d-5269f32bf268}, !- Handle + Zone Outpatient Soil Work C - Story ground Zone Air Node, !- Name + {f7de8224-3db6-47b6-a6fc-82de8e103878}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {f7de8224-3db6-47b6-a6fc-82de8e103878}, !- Handle + {33498ffa-85de-4577-a45e-fba662f5c7e8}, !- Source Object + 11, !- Outlet Port + {bdcd7893-59ed-4990-992d-5269f32bf268}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {0f710fea-085e-48ef-816c-284dc0664bcc}, !- Handle + {33498ffa-85de-4577-a45e-fba662f5c7e8}, !- HVAC Component + {2fe44748-467e-4ddf-b6c2-6b348e72c8e4}, !- Port 1 + {18940423-a683-42e5-ac2c-1d93a029e9e2}; !- Port 2 + +OS:PortList, + {090d4401-04e2-4253-b891-d05da5f8e55d}, !- Handle + {33498ffa-85de-4577-a45e-fba662f5c7e8}, !- HVAC Component + {8249da5e-9920-437e-89b2-5c563c57485e}, !- Port 1 + {4bb2fd02-de6f-453d-a771-3480c9de4e9e}; !- Port 2 + +OS:PortList, + {ac6699d0-2ef7-4391-b486-91f5a48b6abc}, !- Handle + {33498ffa-85de-4577-a45e-fba662f5c7e8}, !- HVAC Component + {4b5f3f03-9642-4472-81f5-363cefee7edf}; !- Port 1 + +OS:Sizing:Zone, + {d9b21526-7dfc-4e58-a1a8-5d04caca3800}, !- Handle + {33498ffa-85de-4577-a45e-fba662f5c7e8}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {1796de42-4e47-4d29-bcff-a22197b4de2f}, !- Handle + Zone Outpatient Soil Work C - Story ground Zone HVAC Equipment List, !- Name + {33498ffa-85de-4577-a45e-fba662f5c7e8}, !- Thermal Zone + , !- Load Distribution Scheme + {6f0315c5-9c1d-42a6-8291-182fac1868c7}, !- Zone Equipment 1 + 2, !- Zone Equipment Cooling Sequence 1 + 2, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {0eaddf7a-c3f5-4a59-b423-2abc3ffa3987}, !- Zone Equipment 2 + 1, !- Zone Equipment Cooling Sequence 2 + 1, !- Zone Equipment Heating or No-Load Sequence 2 + {6e084280-29fd-4a7a-97eb-9783504dfb43}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + {344fe712-2422-4da9-b200-54281e874644}, !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {9d319d92-9302-4e34-98fa-c01f88126e14}, !- Zone Equipment 3 + 3, !- Zone Equipment Cooling Sequence 3 + 3, !- Zone Equipment Heating or No-Load Sequence 3 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 3 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 3 + +OS:Space, + {9583b48c-d1fc-4459-aae5-e5b5e1abba7f}, !- Handle + Outpatient Cafe A - Story ground, !- Name + {3ed95ffb-bc8e-4422-ae67-017cf6f15a1e}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 97.2837293443357, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {b5904e11-4a2e-447a-b3fe-82bacb5d476f}; !- Thermal Zone Name + +OS:Surface, + {996cc660-b90c-4be7-ad05-ea1412fc6235}, !- Handle + Surface 365, !- Name + Floor, !- Surface Type + {1166a671-b2b0-4f91-8a90-acddfe434542}, !- Construction Name + {9583b48c-d1fc-4459-aae5-e5b5e1abba7f}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.4210854715202e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + 1.4210854715202e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 2.02851373842682, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 2.02851373842682, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d2c9a31d-192a-4f2d-a339-7a3053266555}, !- Handle + Surface 366, !- Name + Wall, !- Surface Type + , !- Construction Name + {9583b48c-d1fc-4459-aae5-e5b5e1abba7f}, !- Space Name + Surface, !- Outside Boundary Condition + {337d4edd-19eb-4b15-926b-4b98dbeeabed}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 0, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {85be8757-bedd-4956-92dd-3701525c2a43}, !- Handle + Surface 367, !- Name + Wall, !- Surface Type + , !- Construction Name + {9583b48c-d1fc-4459-aae5-e5b5e1abba7f}, !- Space Name + Surface, !- Outside Boundary Condition + {87a09f43-6295-4798-b41c-77151b438686}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.02851373842682, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 2.02851373842682, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 1.4210854715202e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 1.4210854715202e-14, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2fbc26c0-eceb-4796-8759-e2366cd314e8}, !- Handle + Surface 368, !- Name + Wall, !- Surface Type + , !- Construction Name + {9583b48c-d1fc-4459-aae5-e5b5e1abba7f}, !- Space Name + Surface, !- Outside Boundary Condition + {8be6e3ad-c1af-4b3d-bc6b-ff3f26e1f82e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.02851373842682, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.02851373842682, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 2.02851373842682, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 2.02851373842682, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {266af0be-e227-4469-b9ee-6d31bb5616dd}, !- Handle + Surface 369, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {9583b48c-d1fc-4459-aae5-e5b5e1abba7f}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.02851373842682, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.4210854715202e-14, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 1.4210854715202e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.02851373842682, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {51303954-95f8-4701-a2db-d89127b6060d}, !- Handle + Surface 370, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {9583b48c-d1fc-4459-aae5-e5b5e1abba7f}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.02851373842682, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.02851373842682, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 1.4210854715202e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + 1.4210854715202e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {b5904e11-4a2e-447a-b3fe-82bacb5d476f}, !- Handle + Zone Outpatient Cafe A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {4ae69b1f-dadb-49ae-874f-a10896cd3d59}, !- Zone Air Inlet Port List + {5d42a31f-a471-4233-a28b-fc8bd5158fde}, !- Zone Air Exhaust Port List + {612f37d0-8ded-48e2-8cf8-4ef3626c7af1}, !- Zone Air Node Name + {85f11caf-8133-46d6-957f-415933a5d581}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {7497a185-5364-4fb2-8301-f075a728fbc0}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {afa2d880-d0fd-4e98-a175-bb646e012b07}, !- Handle + Zone Outpatient Cafe A - Story ground Zone Air Node, !- Name + {612f37d0-8ded-48e2-8cf8-4ef3626c7af1}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {612f37d0-8ded-48e2-8cf8-4ef3626c7af1}, !- Handle + {b5904e11-4a2e-447a-b3fe-82bacb5d476f}, !- Source Object + 11, !- Outlet Port + {afa2d880-d0fd-4e98-a175-bb646e012b07}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {4ae69b1f-dadb-49ae-874f-a10896cd3d59}, !- Handle + {b5904e11-4a2e-447a-b3fe-82bacb5d476f}, !- HVAC Component + {7fc1c0fe-1473-4366-8558-b297060b5b1b}, !- Port 1 + {9ef787ca-93bd-4ea0-ad89-38d9295e2526}; !- Port 2 + +OS:PortList, + {5d42a31f-a471-4233-a28b-fc8bd5158fde}, !- Handle + {b5904e11-4a2e-447a-b3fe-82bacb5d476f}, !- HVAC Component + {e24777af-df27-4b66-92a3-e34ed0ba5237}; !- Port 1 + +OS:PortList, + {85f11caf-8133-46d6-957f-415933a5d581}, !- Handle + {b5904e11-4a2e-447a-b3fe-82bacb5d476f}, !- HVAC Component + {10d1137d-9c15-46ce-a122-64b54715583c}; !- Port 1 + +OS:Sizing:Zone, + {bd1e0a67-0c9d-4f80-96ac-409fd156c42e}, !- Handle + {b5904e11-4a2e-447a-b3fe-82bacb5d476f}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {1f90624d-0eee-4c9f-a006-e843c6d989b8}, !- Handle + Zone Outpatient Cafe A - Story ground Zone HVAC Equipment List, !- Name + {b5904e11-4a2e-447a-b3fe-82bacb5d476f}, !- Thermal Zone + , !- Load Distribution Scheme + {cea7f45e-ccc0-4c1f-bd47-50f3582669de}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {9ee3ff9c-26a6-4049-98b2-e8b2a6e00d99}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {62d1b100-cceb-41dc-bdd8-9ead3eb27695}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {79f11f40-4b81-4757-bd64-5afd85cb2a2e}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {1c285a6c-116b-4243-b6f1-8e3192788fc8}, !- Handle + Outpatient Cafe B - Story ground, !- Name + {3ed95ffb-bc8e-4422-ae67-017cf6f15a1e}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 97.2837293443357, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {04549800-b4b5-4c75-8ed0-88eb0ea133b2}; !- Thermal Zone Name + +OS:Surface, + {4a125019-fb3c-4bb8-bac2-250330ce1508}, !- Handle + Surface 371, !- Name + Floor, !- Surface Type + {89a733f1-fbcc-4a54-bcc4-1853c17afbfe}, !- Construction Name + {1c285a6c-116b-4243-b6f1-8e3192788fc8}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.4210854715202e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + 1.4210854715202e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 2.02851373842682, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 2.02851373842682, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5bdd5612-db87-45a5-830e-94969711ffdc}, !- Handle + Surface 372, !- Name + Wall, !- Surface Type + , !- Construction Name + {1c285a6c-116b-4243-b6f1-8e3192788fc8}, !- Space Name + Surface, !- Outside Boundary Condition + {bf043961-0958-4397-8cda-a7cc759c946c}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 0, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + 0, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {cdb22794-b84b-4e47-a3d6-32354ffab45e}, !- Handle + Surface 373, !- Name + Wall, !- Surface Type + , !- Construction Name + {1c285a6c-116b-4243-b6f1-8e3192788fc8}, !- Space Name + Surface, !- Outside Boundary Condition + {fb4d981d-8695-464a-a82b-6e2d0d4a9010}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.02851373842682, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 2.02851373842682, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + 1.4210854715202e-14, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + 1.4210854715202e-14, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f9cbcd6d-008c-46d6-8a7f-2ca0a89ed4fc}, !- Handle + Surface 374, !- Name + Wall, !- Surface Type + , !- Construction Name + {1c285a6c-116b-4243-b6f1-8e3192788fc8}, !- Space Name + Surface, !- Outside Boundary Condition + {4e5ddc15-e873-453f-85c4-5a571168379e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.02851373842682, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.02851373842682, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 2.02851373842682, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 2.02851373842682, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {87a09f43-6295-4798-b41c-77151b438686}, !- Handle + Surface 375, !- Name + Wall, !- Surface Type + , !- Construction Name + {1c285a6c-116b-4243-b6f1-8e3192788fc8}, !- Space Name + Surface, !- Outside Boundary Condition + {85be8757-bedd-4956-92dd-3701525c2a43}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.4210854715202e-14, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 1.4210854715202e-14, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 2.02851373842682, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.02851373842682, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {41a3af20-cece-489c-a38e-5cdbf9f07e38}, !- Handle + Surface 376, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {1c285a6c-116b-4243-b6f1-8e3192788fc8}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.02851373842682, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.02851373842682, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + 1.4210854715202e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + 1.4210854715202e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {04549800-b4b5-4c75-8ed0-88eb0ea133b2}, !- Handle + Zone Outpatient Cafe B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {05e9dc6e-6c8a-4d5a-b4b1-27a97e5e6f91}, !- Zone Air Inlet Port List + {3a2ceb51-1c84-4375-a785-3d13c1346809}, !- Zone Air Exhaust Port List + {ef89ce5b-0daa-415b-bac0-6ee8c47d157e}, !- Zone Air Node Name + {cef5d181-54bb-4cf1-8f1f-0424908cb5a9}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {34b3a273-59f3-4bdd-943a-3bc233b464c5}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {b43d68d8-323c-47c5-bd35-d7b8e7a30383}, !- Handle + Zone Outpatient Cafe B - Story ground Zone Air Node, !- Name + {ef89ce5b-0daa-415b-bac0-6ee8c47d157e}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {ef89ce5b-0daa-415b-bac0-6ee8c47d157e}, !- Handle + {04549800-b4b5-4c75-8ed0-88eb0ea133b2}, !- Source Object + 11, !- Outlet Port + {b43d68d8-323c-47c5-bd35-d7b8e7a30383}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {05e9dc6e-6c8a-4d5a-b4b1-27a97e5e6f91}, !- Handle + {04549800-b4b5-4c75-8ed0-88eb0ea133b2}, !- HVAC Component + {812b72aa-7881-4f96-b809-f11df503f287}, !- Port 1 + {e87fd713-5911-4fea-a32c-49f8909d92f3}; !- Port 2 + +OS:PortList, + {3a2ceb51-1c84-4375-a785-3d13c1346809}, !- Handle + {04549800-b4b5-4c75-8ed0-88eb0ea133b2}, !- HVAC Component + {00723ba3-c60b-44c6-ae2b-e07715504255}; !- Port 1 + +OS:PortList, + {cef5d181-54bb-4cf1-8f1f-0424908cb5a9}, !- Handle + {04549800-b4b5-4c75-8ed0-88eb0ea133b2}, !- HVAC Component + {405a5d79-cddd-4cc4-a4e1-1a25577f8ef3}; !- Port 1 + +OS:Sizing:Zone, + {b9426a1e-d9c2-4f55-840d-605c1cefbaa7}, !- Handle + {04549800-b4b5-4c75-8ed0-88eb0ea133b2}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {3a3c0f5c-c76a-4f00-b9e0-76356917a514}, !- Handle + Zone Outpatient Cafe B - Story ground Zone HVAC Equipment List, !- Name + {04549800-b4b5-4c75-8ed0-88eb0ea133b2}, !- Thermal Zone + , !- Load Distribution Scheme + {7a963c94-50ac-424e-9cd9-bd2887713e40}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {2c1875e2-9870-468b-a135-cb1936bd6fcf}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {b0d24390-b8fe-412c-a1a5-a100a1099ec6}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {0e0092c5-ed15-41b3-bd45-6108f2a274c6}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {e9d23156-5cb0-449d-a624-d5357e7664ca}, !- Handle + Outpatient Cafe C - Story ground, !- Name + {3ed95ffb-bc8e-4422-ae67-017cf6f15a1e}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 97.2837293443357, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {f8f3544e-9778-4911-9a31-58ccf5768d09}; !- Thermal Zone Name + +OS:Surface, + {0160dac4-9b64-4dd5-b030-f44f2a6e5750}, !- Handle + Surface 377, !- Name + Floor, !- Surface Type + {1166a671-b2b0-4f91-8a90-acddfe434542}, !- Construction Name + {e9d23156-5cb0-449d-a624-d5357e7664ca}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.4210854715202e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + 1.4210854715202e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 2.02851373842682, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 2.02851373842682, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d4ebb06f-13e5-4b35-ad64-4a4a96aa64e9}, !- Handle + Surface 378, !- Name + Wall, !- Surface Type + , !- Construction Name + {e9d23156-5cb0-449d-a624-d5357e7664ca}, !- Space Name + Surface, !- Outside Boundary Condition + {56b23779-2954-42e3-ab0f-70f90c5e56ae}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 0, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 0, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 0, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 0, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b0b0e5c9-44f1-4047-8ba1-5bfcc7d8f7f9}, !- Handle + Surface 379, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {e9d23156-5cb0-449d-a624-d5357e7664ca}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.4210854715202e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 2.02851373842682, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 2.02851373842682, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 1.4210854715202e-14, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {c7968d3c-64a7-4244-95a3-bb20fdeed9b0}, !- Handle + Surface 380, !- Name + Wall, !- Surface Type + , !- Construction Name + {e9d23156-5cb0-449d-a624-d5357e7664ca}, !- Space Name + Surface, !- Outside Boundary Condition + {ac9f52b9-2d15-4002-b9db-8f9f21004707}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.02851373842682, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 2.02851373842682, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 2.02851373842682, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 2.02851373842682, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fb4d981d-8695-464a-a82b-6e2d0d4a9010}, !- Handle + Surface 381, !- Name + Wall, !- Surface Type + , !- Construction Name + {e9d23156-5cb0-449d-a624-d5357e7664ca}, !- Space Name + Surface, !- Outside Boundary Condition + {cdb22794-b84b-4e47-a3d6-32354ffab45e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.4210854715202e-14, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 1.4210854715202e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 2.02851373842682, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 2.02851373842682, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1dc93b46-49e5-4ed3-b1ca-a56773ce5afb}, !- Handle + Surface 382, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {e9d23156-5cb0-449d-a624-d5357e7664ca}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.02851373842682, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 2.02851373842682, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 1.4210854715202e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + 1.4210854715202e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {f8f3544e-9778-4911-9a31-58ccf5768d09}, !- Handle + Zone Outpatient Cafe C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {83954003-466a-484e-9f70-fb7b315aef8b}, !- Zone Air Inlet Port List + {fd81b137-b3fb-4a11-9c2e-e6b1d6f8a374}, !- Zone Air Exhaust Port List + {805e923f-4fa7-48bb-b935-fd74de8774a7}, !- Zone Air Node Name + {305b4f41-32aa-40c1-8aaf-7d43b7d45ecc}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {ddfcf855-034f-4852-8331-9d6a28559bf8}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {3b0e7d0a-da24-4d7c-ade5-adeb4c525d62}, !- Handle + Zone Outpatient Cafe C - Story ground Zone Air Node, !- Name + {805e923f-4fa7-48bb-b935-fd74de8774a7}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {805e923f-4fa7-48bb-b935-fd74de8774a7}, !- Handle + {f8f3544e-9778-4911-9a31-58ccf5768d09}, !- Source Object + 11, !- Outlet Port + {3b0e7d0a-da24-4d7c-ade5-adeb4c525d62}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {83954003-466a-484e-9f70-fb7b315aef8b}, !- Handle + {f8f3544e-9778-4911-9a31-58ccf5768d09}, !- HVAC Component + {787f573d-81bf-430a-96cd-96cf29be0541}, !- Port 1 + {9de4ddcf-6a3a-400b-8e91-f52e4b04ef76}; !- Port 2 + +OS:PortList, + {fd81b137-b3fb-4a11-9c2e-e6b1d6f8a374}, !- Handle + {f8f3544e-9778-4911-9a31-58ccf5768d09}, !- HVAC Component + {18509cb4-639e-4e4b-bb43-a7f0534f05ed}; !- Port 1 + +OS:PortList, + {305b4f41-32aa-40c1-8aaf-7d43b7d45ecc}, !- Handle + {f8f3544e-9778-4911-9a31-58ccf5768d09}, !- HVAC Component + {ca4ce64a-57f7-4a63-8289-d007295ca6bb}; !- Port 1 + +OS:Sizing:Zone, + {9a44c212-c4fd-4731-8c3a-18c33740184b}, !- Handle + {f8f3544e-9778-4911-9a31-58ccf5768d09}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {e34c2d30-ecab-44e4-862c-4e4fe67ea967}, !- Handle + Zone Outpatient Cafe C - Story ground Zone HVAC Equipment List, !- Name + {f8f3544e-9778-4911-9a31-58ccf5768d09}, !- Thermal Zone + , !- Load Distribution Scheme + {79b6e49c-e6e7-4f06-b7c6-cb0fbfc8d016}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {245af122-2d01-4d34-9f13-73fe7dac80bf}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {6bd2d375-e327-4c2b-8527-9d4768a648e9}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {f733a838-7f14-4970-9748-5f4051b5fa05}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {509df49a-3b55-4cd1-81c2-e89a73ffe4ee}, !- Handle + Outpatient MRI A - Story ground, !- Name + {a0d541c6-3262-49a8-96cb-668f335a0ac4}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 99.3122430827625, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {41c9389d-2013-4365-ba78-c09dd8be218a}; !- Thermal Zone Name + +OS:Surface, + {a952406e-9405-487c-aa03-9a962698b3b9}, !- Handle + Surface 383, !- Name + Floor, !- Surface Type + {682eebb3-c074-439d-8558-ea1396de8a84}, !- Construction Name + {509df49a-3b55-4cd1-81c2-e89a73ffe4ee}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.2632564145606e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + 4.2632564145606e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 2.10729097098753, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 2.10729097098753, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8be6e3ad-c1af-4b3d-bc6b-ff3f26e1f82e}, !- Handle + Surface 384, !- Name + Wall, !- Surface Type + , !- Construction Name + {509df49a-3b55-4cd1-81c2-e89a73ffe4ee}, !- Space Name + Surface, !- Outside Boundary Condition + {2fbc26c0-eceb-4796-8759-e2366cd314e8}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.4210854715202e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 1.4210854715202e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 1.4210854715202e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 1.4210854715202e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {cae82c99-f268-48e0-91c1-9064378f587d}, !- Handle + Surface 385, !- Name + Wall, !- Surface Type + , !- Construction Name + {509df49a-3b55-4cd1-81c2-e89a73ffe4ee}, !- Space Name + Surface, !- Outside Boundary Condition + {1d37a88b-2cbc-40d6-9aeb-e5ea3bf06dde}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.10729097098753, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 2.10729097098753, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 4.2632564145606e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 4.2632564145606e-14, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {30737d64-76a9-4e5f-822f-9aac1eee7c51}, !- Handle + Surface 386, !- Name + Wall, !- Surface Type + , !- Construction Name + {509df49a-3b55-4cd1-81c2-e89a73ffe4ee}, !- Space Name + Surface, !- Outside Boundary Condition + {dea2bc75-5197-4dbb-985e-ff96d7cb7d23}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.10729097098753, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.10729097098753, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 2.10729097098753, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 2.10729097098753, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7f13000e-4cd8-4834-ac73-f0a0256f82ce}, !- Handle + Surface 387, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {509df49a-3b55-4cd1-81c2-e89a73ffe4ee}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.10729097098753, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 4.2632564145606e-14, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 4.2632564145606e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.10729097098753, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {313cd51f-3941-4c26-9ea1-816daebe5ec0}, !- Handle + Surface 388, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {509df49a-3b55-4cd1-81c2-e89a73ffe4ee}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.10729097098753, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.10729097098753, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 4.2632564145606e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + 4.2632564145606e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {41c9389d-2013-4365-ba78-c09dd8be218a}, !- Handle + Zone Outpatient MRI A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {7559be6d-2a11-4226-8a3f-3864b2990020}, !- Zone Air Inlet Port List + {c6316fbd-39ab-4cbe-956e-c9f2c0edcae3}, !- Zone Air Exhaust Port List + {c4819491-a6ff-443a-8219-aa0b36664a66}, !- Zone Air Node Name + {152224f0-5a90-439d-ba34-bc101f2348da}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {118dfa8e-a41f-4dd0-b564-437fa2f891e1}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {2092586d-ed87-4ecb-802c-23f0b3bdf086}, !- Handle + Zone Outpatient MRI A - Story ground Zone Air Node, !- Name + {c4819491-a6ff-443a-8219-aa0b36664a66}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {c4819491-a6ff-443a-8219-aa0b36664a66}, !- Handle + {41c9389d-2013-4365-ba78-c09dd8be218a}, !- Source Object + 11, !- Outlet Port + {2092586d-ed87-4ecb-802c-23f0b3bdf086}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {7559be6d-2a11-4226-8a3f-3864b2990020}, !- Handle + {41c9389d-2013-4365-ba78-c09dd8be218a}, !- HVAC Component + {63d4eb8b-04c8-46d9-93f8-3b7a8c454412}, !- Port 1 + {9e994bda-31d5-4a25-a1c4-a8c8dae8a812}; !- Port 2 + +OS:PortList, + {c6316fbd-39ab-4cbe-956e-c9f2c0edcae3}, !- Handle + {41c9389d-2013-4365-ba78-c09dd8be218a}, !- HVAC Component + {952e6e21-bf63-4cf8-b335-93ebe7bf651b}, !- Port 1 + {315c0988-3fc7-4030-a359-c2f0aaec3e00}; !- Port 2 + +OS:PortList, + {152224f0-5a90-439d-ba34-bc101f2348da}, !- Handle + {41c9389d-2013-4365-ba78-c09dd8be218a}, !- HVAC Component + {32c36495-e7aa-4e61-9742-3df9570624bb}; !- Port 1 + +OS:Sizing:Zone, + {b1004005-6446-4dea-a911-42fbcc19bd0d}, !- Handle + {41c9389d-2013-4365-ba78-c09dd8be218a}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {8f872b7b-c521-452b-a3bd-a19d00618655}, !- Handle + Zone Outpatient MRI A - Story ground Zone HVAC Equipment List, !- Name + {41c9389d-2013-4365-ba78-c09dd8be218a}, !- Thermal Zone + , !- Load Distribution Scheme + {f8de8ae7-e0fd-4ed6-a786-f4c350595464}, !- Zone Equipment 1 + 2, !- Zone Equipment Cooling Sequence 1 + 2, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {1425a794-2849-48eb-9312-7254240ffe73}, !- Zone Equipment 2 + 1, !- Zone Equipment Cooling Sequence 2 + 1, !- Zone Equipment Heating or No-Load Sequence 2 + {428ae4eb-95ea-431c-af4e-6a9f8510e729}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + {95bf5ff5-9f80-4d3b-8892-422daab2752c}, !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {14777e4b-d48f-41ee-b22b-73a567d46eed}, !- Zone Equipment 3 + 3, !- Zone Equipment Cooling Sequence 3 + 3, !- Zone Equipment Heating or No-Load Sequence 3 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 3 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 3 + +OS:Space, + {11f048f2-4bcf-4b69-ae64-b72966af8bd6}, !- Handle + Outpatient MRI B - Story ground, !- Name + {a0d541c6-3262-49a8-96cb-668f335a0ac4}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 99.3122430827625, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {79de997a-82e5-4c01-8cf3-14868b581285}; !- Thermal Zone Name + +OS:Surface, + {56b0516b-fe8a-4ba4-a845-e593e7718abf}, !- Handle + Surface 389, !- Name + Floor, !- Surface Type + {e3859bac-1c7d-4f96-8f68-be4aaca2b36f}, !- Construction Name + {11f048f2-4bcf-4b69-ae64-b72966af8bd6}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.2632564145606e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + 4.2632564145606e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 2.10729097098753, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 2.10729097098753, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4e5ddc15-e873-453f-85c4-5a571168379e}, !- Handle + Surface 390, !- Name + Wall, !- Surface Type + , !- Construction Name + {11f048f2-4bcf-4b69-ae64-b72966af8bd6}, !- Space Name + Surface, !- Outside Boundary Condition + {f9cbcd6d-008c-46d6-8a7f-2ca0a89ed4fc}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.4210854715202e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + 1.4210854715202e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 1.4210854715202e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + 1.4210854715202e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {41e2a0fd-22a8-4c61-8e57-643de28fffa5}, !- Handle + Surface 391, !- Name + Wall, !- Surface Type + , !- Construction Name + {11f048f2-4bcf-4b69-ae64-b72966af8bd6}, !- Space Name + Surface, !- Outside Boundary Condition + {bbf1e98d-6610-4666-931a-fe9fd37a9938}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.10729097098753, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 2.10729097098753, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + 4.2632564145606e-14, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + 4.2632564145606e-14, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b2e31179-831d-4dc7-bf54-5b34dbecd96a}, !- Handle + Surface 392, !- Name + Wall, !- Surface Type + , !- Construction Name + {11f048f2-4bcf-4b69-ae64-b72966af8bd6}, !- Space Name + Surface, !- Outside Boundary Condition + {6685f2cc-175c-4360-a4bc-9bdc33117f33}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.10729097098753, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.10729097098753, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 2.10729097098753, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 2.10729097098753, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1d37a88b-2cbc-40d6-9aeb-e5ea3bf06dde}, !- Handle + Surface 393, !- Name + Wall, !- Surface Type + , !- Construction Name + {11f048f2-4bcf-4b69-ae64-b72966af8bd6}, !- Space Name + Surface, !- Outside Boundary Condition + {cae82c99-f268-48e0-91c1-9064378f587d}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.2632564145606e-14, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 4.2632564145606e-14, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 2.10729097098753, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.10729097098753, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1f49f0d6-515b-4c02-8ff8-6214296458d5}, !- Handle + Surface 394, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {11f048f2-4bcf-4b69-ae64-b72966af8bd6}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.10729097098753, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.10729097098753, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + 4.2632564145606e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + 4.2632564145606e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {79de997a-82e5-4c01-8cf3-14868b581285}, !- Handle + Zone Outpatient MRI B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {20dd16e6-3d4e-49ee-8dbd-fef3a49d4627}, !- Zone Air Inlet Port List + {e0691229-32c4-481d-b338-e391b7464137}, !- Zone Air Exhaust Port List + {65b0e70a-c3d2-440d-a020-c1e1bee01b51}, !- Zone Air Node Name + {927d08a2-621a-4105-ad82-c22af5fe8636}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {6ee9d138-9ed6-4f03-ac44-a4ff0eb52f69}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {a16223c5-bf6c-4991-b9e2-dd0c89f68759}, !- Handle + Zone Outpatient MRI B - Story ground Zone Air Node, !- Name + {65b0e70a-c3d2-440d-a020-c1e1bee01b51}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {65b0e70a-c3d2-440d-a020-c1e1bee01b51}, !- Handle + {79de997a-82e5-4c01-8cf3-14868b581285}, !- Source Object + 11, !- Outlet Port + {a16223c5-bf6c-4991-b9e2-dd0c89f68759}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {20dd16e6-3d4e-49ee-8dbd-fef3a49d4627}, !- Handle + {79de997a-82e5-4c01-8cf3-14868b581285}, !- HVAC Component + {794e7956-77cf-4f0e-a60b-fceba994778c}, !- Port 1 + {9eed8eb9-b691-411f-af9a-523ced14f133}; !- Port 2 + +OS:PortList, + {e0691229-32c4-481d-b338-e391b7464137}, !- Handle + {79de997a-82e5-4c01-8cf3-14868b581285}, !- HVAC Component + {e2992199-a4fd-4bf8-abf6-d2cf80e1a08f}, !- Port 1 + {5bfd37aa-c056-420b-86a0-08d650777533}; !- Port 2 + +OS:PortList, + {927d08a2-621a-4105-ad82-c22af5fe8636}, !- Handle + {79de997a-82e5-4c01-8cf3-14868b581285}, !- HVAC Component + {5ab3da8b-610c-43e4-a354-c87102049a6c}; !- Port 1 + +OS:Sizing:Zone, + {b78c141f-652b-41ab-ab3f-1a0d14153272}, !- Handle + {79de997a-82e5-4c01-8cf3-14868b581285}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {af866226-5a4d-48ae-add2-453185e9d34a}, !- Handle + Zone Outpatient MRI B - Story ground Zone HVAC Equipment List, !- Name + {79de997a-82e5-4c01-8cf3-14868b581285}, !- Thermal Zone + , !- Load Distribution Scheme + {09d5624c-4d41-45c7-8055-6081a8237f24}, !- Zone Equipment 1 + 2, !- Zone Equipment Cooling Sequence 1 + 2, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {524f015f-c94d-43be-b04e-7f9684a7a784}, !- Zone Equipment 2 + 1, !- Zone Equipment Cooling Sequence 2 + 1, !- Zone Equipment Heating or No-Load Sequence 2 + {514998ca-dadc-4ad2-8229-da9047c19fbd}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + {463eb31f-1abb-4d0c-a2a0-2eaf9fd68d22}, !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {49ecf89c-4716-4e67-9fc1-6956bd5ed0c1}, !- Zone Equipment 3 + 3, !- Zone Equipment Cooling Sequence 3 + 3, !- Zone Equipment Heating or No-Load Sequence 3 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 3 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 3 + +OS:Space, + {6383b585-77c7-44db-93de-d2820eee11c1}, !- Handle + Outpatient MRI C - Story ground, !- Name + {a0d541c6-3262-49a8-96cb-668f335a0ac4}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 99.3122430827625, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {82795a4a-5392-4e68-965c-2c6e1702a1b3}; !- Thermal Zone Name + +OS:Surface, + {1d2a5368-4abf-4b7c-b02b-ae8834425991}, !- Handle + Surface 395, !- Name + Floor, !- Surface Type + {682eebb3-c074-439d-8558-ea1396de8a84}, !- Construction Name + {6383b585-77c7-44db-93de-d2820eee11c1}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.2632564145606e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + 4.2632564145606e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 2.10729097098753, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 2.10729097098753, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ac9f52b9-2d15-4002-b9db-8f9f21004707}, !- Handle + Surface 396, !- Name + Wall, !- Surface Type + , !- Construction Name + {6383b585-77c7-44db-93de-d2820eee11c1}, !- Space Name + Surface, !- Outside Boundary Condition + {c7968d3c-64a7-4244-95a3-bb20fdeed9b0}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 1.4210854715202e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 1.4210854715202e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 1.4210854715202e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 1.4210854715202e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fdfc336b-3a39-419e-a5e8-b6a4e16b45ff}, !- Handle + Surface 397, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {6383b585-77c7-44db-93de-d2820eee11c1}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.2632564145606e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 2.10729097098753, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 2.10729097098753, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 4.2632564145606e-14, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {836d6040-2bc0-46e5-b9f0-20bd3c2cc16c}, !- Handle + Surface 398, !- Name + Wall, !- Surface Type + , !- Construction Name + {6383b585-77c7-44db-93de-d2820eee11c1}, !- Space Name + Surface, !- Outside Boundary Condition + {f61af700-1d7a-4863-b1de-7eaf4b51036d}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.10729097098753, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 2.10729097098753, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 2.10729097098753, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 2.10729097098753, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {bbf1e98d-6610-4666-931a-fe9fd37a9938}, !- Handle + Surface 399, !- Name + Wall, !- Surface Type + , !- Construction Name + {6383b585-77c7-44db-93de-d2820eee11c1}, !- Space Name + Surface, !- Outside Boundary Condition + {41e2a0fd-22a8-4c61-8e57-643de28fffa5}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.2632564145606e-14, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 4.2632564145606e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 2.10729097098753, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 2.10729097098753, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {75daf8b0-6ddc-42de-9d75-c164bbfc324f}, !- Handle + Surface 400, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {6383b585-77c7-44db-93de-d2820eee11c1}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.10729097098753, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 2.10729097098753, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 4.2632564145606e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + 4.2632564145606e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {82795a4a-5392-4e68-965c-2c6e1702a1b3}, !- Handle + Zone Outpatient MRI C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {cd65c217-cc7b-4dea-b350-d1ede48976da}, !- Zone Air Inlet Port List + {2d853992-5341-4cac-9851-6320ed4593ba}, !- Zone Air Exhaust Port List + {529665e9-0563-4780-bfe9-01a4e9025031}, !- Zone Air Node Name + {964111c7-0d7a-41f8-9104-61ae0aef8f01}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {2fe95c22-df49-4117-8962-1a8c8a2e464e}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {06001d5d-41bf-49a6-8518-38ac3f4ab7c8}, !- Handle + Zone Outpatient MRI C - Story ground Zone Air Node, !- Name + {529665e9-0563-4780-bfe9-01a4e9025031}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {529665e9-0563-4780-bfe9-01a4e9025031}, !- Handle + {82795a4a-5392-4e68-965c-2c6e1702a1b3}, !- Source Object + 11, !- Outlet Port + {06001d5d-41bf-49a6-8518-38ac3f4ab7c8}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {cd65c217-cc7b-4dea-b350-d1ede48976da}, !- Handle + {82795a4a-5392-4e68-965c-2c6e1702a1b3}, !- HVAC Component + {53d548eb-20d5-45fd-b5a1-e5d3f99a06e4}, !- Port 1 + {527f14bd-87e0-4956-8d89-a660a9c0809a}; !- Port 2 + +OS:PortList, + {2d853992-5341-4cac-9851-6320ed4593ba}, !- Handle + {82795a4a-5392-4e68-965c-2c6e1702a1b3}, !- HVAC Component + {da2411b4-c8e5-4043-8bbb-9792a906fa3e}, !- Port 1 + {097efba1-0c82-4e0d-b273-32c2237534a4}; !- Port 2 + +OS:PortList, + {964111c7-0d7a-41f8-9104-61ae0aef8f01}, !- Handle + {82795a4a-5392-4e68-965c-2c6e1702a1b3}, !- HVAC Component + {3be98313-9a2b-4d04-95fd-95bf40b71bbb}; !- Port 1 + +OS:Sizing:Zone, + {6222d421-b0d4-4d54-9f77-fa890b9842c1}, !- Handle + {82795a4a-5392-4e68-965c-2c6e1702a1b3}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {5406a0dd-48f0-4edb-a96d-49e34ad571b4}, !- Handle + Zone Outpatient MRI C - Story ground Zone HVAC Equipment List, !- Name + {82795a4a-5392-4e68-965c-2c6e1702a1b3}, !- Thermal Zone + , !- Load Distribution Scheme + {af7c7636-7192-4058-98d7-5a96c41a0110}, !- Zone Equipment 1 + 2, !- Zone Equipment Cooling Sequence 1 + 2, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {95ed35aa-d89a-4674-a51a-74ee13f070ba}, !- Zone Equipment 2 + 1, !- Zone Equipment Cooling Sequence 2 + 1, !- Zone Equipment Heating or No-Load Sequence 2 + {05299476-96c8-4134-af3d-585a6344beab}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + {115ae227-15bb-4b96-b04c-8574bde0c02e}, !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + {54126923-8b4c-4c2b-a081-e6d4aa50b960}, !- Zone Equipment 3 + 3, !- Zone Equipment Cooling Sequence 3 + 3, !- Zone Equipment Heating or No-Load Sequence 3 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 3 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 3 + +OS:Space, + {32d05e1b-858c-4e47-a74e-881768de235e}, !- Handle + Outpatient Elec/MechRoom A - Story ground, !- Name + {2ddb316f-6ad1-4b05-9092-190cb98dab70}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 101.41953405375, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {eb0e8893-9718-4378-9e3e-d4920b83677d}; !- Thermal Zone Name + +OS:Surface, + {0b347643-a0d9-4957-84dd-efb4ef7487ab}, !- Handle + Surface 401, !- Name + Floor, !- Surface Type + {1d2fac39-57bf-4e62-a60f-23549406cce1}, !- Construction Name + {32d05e1b-858c-4e47-a74e-881768de235e}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.9737991503207e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + 4.9737991503207e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 2.1466795872675, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 2.1466795872675, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {dea2bc75-5197-4dbb-985e-ff96d7cb7d23}, !- Handle + Surface 402, !- Name + Wall, !- Surface Type + , !- Construction Name + {32d05e1b-858c-4e47-a74e-881768de235e}, !- Space Name + Surface, !- Outside Boundary Condition + {30737d64-76a9-4e5f-822f-9aac1eee7c51}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.2632564145606e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 4.2632564145606e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 4.2632564145606e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 4.2632564145606e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {65b98c6a-8f29-450f-b592-4de898030f02}, !- Handle + Surface 403, !- Name + Wall, !- Surface Type + , !- Construction Name + {32d05e1b-858c-4e47-a74e-881768de235e}, !- Space Name + Surface, !- Outside Boundary Condition + {806b0326-d4b8-4f15-abe1-caa294a570a6}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.1466795872675, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 2.1466795872675, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 4.9737991503207e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 4.9737991503207e-13, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {806b4de0-5bdc-451a-a205-3993e84ccbf5}, !- Handle + Surface 404, !- Name + Wall, !- Surface Type + , !- Construction Name + {32d05e1b-858c-4e47-a74e-881768de235e}, !- Space Name + Surface, !- Outside Boundary Condition + {fb84333b-c414-4a67-9bc0-a27776f5fb75}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.1466795872675, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.1466795872675, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 2.1466795872675, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 2.1466795872675, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {e492a71e-a453-42ad-b929-52e78b84ee43}, !- Handle + Surface 405, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {32d05e1b-858c-4e47-a74e-881768de235e}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.1466795872675, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 4.9737991503207e-13, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 4.9737991503207e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.1466795872675, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {568fc664-a473-474a-bced-78e6f33da4df}, !- Handle + Surface 406, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {32d05e1b-858c-4e47-a74e-881768de235e}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.1466795872675, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.1466795872675, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 4.9737991503207e-13, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + 4.9737991503207e-13, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {eb0e8893-9718-4378-9e3e-d4920b83677d}, !- Handle + Zone Outpatient Elec/MechRoom A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {e798e5a1-224e-4b80-bcf5-a38950908bcd}, !- Zone Air Inlet Port List + {bc8a77d5-f80e-419b-91af-d587c7c70be0}, !- Zone Air Exhaust Port List + {b2971150-5173-44f8-8347-94763d2ea560}, !- Zone Air Node Name + {c9175afa-9791-4636-9d65-43d5b5290600}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {10b6e45e-2583-4f0b-bf21-7d56036c968f}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {3dd1c2f7-fef3-4d6a-ac03-f31fe1654162}, !- Handle + Zone Outpatient Elec/MechRoom A - Story ground Zone Air Node, !- Name + {b2971150-5173-44f8-8347-94763d2ea560}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {b2971150-5173-44f8-8347-94763d2ea560}, !- Handle + {eb0e8893-9718-4378-9e3e-d4920b83677d}, !- Source Object + 11, !- Outlet Port + {3dd1c2f7-fef3-4d6a-ac03-f31fe1654162}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {e798e5a1-224e-4b80-bcf5-a38950908bcd}, !- Handle + {eb0e8893-9718-4378-9e3e-d4920b83677d}, !- HVAC Component + {6ee9ac32-e9d5-4145-b95a-76bc3995a679}; !- Port 1 + +OS:PortList, + {bc8a77d5-f80e-419b-91af-d587c7c70be0}, !- Handle + {eb0e8893-9718-4378-9e3e-d4920b83677d}, !- HVAC Component + {811f97d3-d76c-4603-ac58-a1be5d34e28d}; !- Port 1 + +OS:PortList, + {c9175afa-9791-4636-9d65-43d5b5290600}, !- Handle + {eb0e8893-9718-4378-9e3e-d4920b83677d}; !- HVAC Component + +OS:Sizing:Zone, + {2751a8b9-d91e-49b3-a389-3643e6d0109b}, !- Handle + {eb0e8893-9718-4378-9e3e-d4920b83677d}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {b618bb4a-a433-4aee-b2b6-cb113d4a3676}, !- Handle + Zone Outpatient Elec/MechRoom A - Story ground Zone HVAC Equipment List, !- Name + {eb0e8893-9718-4378-9e3e-d4920b83677d}, !- Thermal Zone + , !- Load Distribution Scheme + {a478067c-298f-4689-bc8e-90698e6d1477}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + +OS:Space, + {81fa56b4-4ffd-42fa-a5a8-130d82b9aef2}, !- Handle + Outpatient Elec/MechRoom B - Story ground, !- Name + {2ddb316f-6ad1-4b05-9092-190cb98dab70}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 101.41953405375, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {5cf57d1e-6a71-41aa-a02c-b82bfbca3868}; !- Thermal Zone Name + +OS:Surface, + {8b287f37-3f85-4bfd-a07b-3e0ef2e58dc0}, !- Handle + Surface 407, !- Name + Floor, !- Surface Type + {18a2e58c-858a-4e2d-94db-617dd8188b36}, !- Construction Name + {81fa56b4-4ffd-42fa-a5a8-130d82b9aef2}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.9737991503207e-13, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + 4.9737991503207e-13, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 2.1466795872675, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 2.1466795872675, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {6685f2cc-175c-4360-a4bc-9bdc33117f33}, !- Handle + Surface 408, !- Name + Wall, !- Surface Type + , !- Construction Name + {81fa56b4-4ffd-42fa-a5a8-130d82b9aef2}, !- Space Name + Surface, !- Outside Boundary Condition + {b2e31179-831d-4dc7-bf54-5b34dbecd96a}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.2632564145606e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + 4.2632564145606e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 4.2632564145606e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + 4.2632564145606e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9524ef98-d4de-42b7-aa66-c1f49ebbda0e}, !- Handle + Surface 409, !- Name + Wall, !- Surface Type + , !- Construction Name + {81fa56b4-4ffd-42fa-a5a8-130d82b9aef2}, !- Space Name + Surface, !- Outside Boundary Condition + {bdcf9ea6-a26e-4636-b607-f3cc71bc89d8}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.1466795872675, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 2.1466795872675, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + 4.9737991503207e-13, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + 4.9737991503207e-13, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {de02c444-16de-47e0-972c-05a0f0a06d0a}, !- Handle + Surface 410, !- Name + Wall, !- Surface Type + , !- Construction Name + {81fa56b4-4ffd-42fa-a5a8-130d82b9aef2}, !- Space Name + Surface, !- Outside Boundary Condition + {77684031-da41-403e-9538-452a85af1f48}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.1466795872675, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.1466795872675, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 2.1466795872675, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 2.1466795872675, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {806b0326-d4b8-4f15-abe1-caa294a570a6}, !- Handle + Surface 411, !- Name + Wall, !- Surface Type + , !- Construction Name + {81fa56b4-4ffd-42fa-a5a8-130d82b9aef2}, !- Space Name + Surface, !- Outside Boundary Condition + {65b98c6a-8f29-450f-b592-4de898030f02}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.9737991503207e-13, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 4.9737991503207e-13, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 2.1466795872675, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.1466795872675, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d4040749-28c7-44ba-b91a-b5fc34baa583}, !- Handle + Surface 412, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {81fa56b4-4ffd-42fa-a5a8-130d82b9aef2}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.1466795872675, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.1466795872675, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + 4.9737991503207e-13, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + 4.9737991503207e-13, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {5cf57d1e-6a71-41aa-a02c-b82bfbca3868}, !- Handle + Zone Outpatient Elec/MechRoom B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {5b0c1ee4-c460-44c5-aadc-9d8220435c8d}, !- Zone Air Inlet Port List + {b7a8e24b-ecc3-4e1f-93ed-bd18e0fef15a}, !- Zone Air Exhaust Port List + {201f5eec-7a37-4966-ae98-422f6879a8ed}, !- Zone Air Node Name + {19229761-704a-4553-b91e-edf3618b1424}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {0e259a58-013f-4c0c-903e-99024fb7a303}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {5b8567c8-88c8-415f-bc0a-4eb72fff0754}, !- Handle + Zone Outpatient Elec/MechRoom B - Story ground Zone Air Node, !- Name + {201f5eec-7a37-4966-ae98-422f6879a8ed}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {201f5eec-7a37-4966-ae98-422f6879a8ed}, !- Handle + {5cf57d1e-6a71-41aa-a02c-b82bfbca3868}, !- Source Object + 11, !- Outlet Port + {5b8567c8-88c8-415f-bc0a-4eb72fff0754}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {5b0c1ee4-c460-44c5-aadc-9d8220435c8d}, !- Handle + {5cf57d1e-6a71-41aa-a02c-b82bfbca3868}, !- HVAC Component + {7a495320-75a8-429c-956e-804fefec1d25}; !- Port 1 + +OS:PortList, + {b7a8e24b-ecc3-4e1f-93ed-bd18e0fef15a}, !- Handle + {5cf57d1e-6a71-41aa-a02c-b82bfbca3868}, !- HVAC Component + {1032c88e-d73c-4238-885a-7b9e9b1cb9b3}; !- Port 1 + +OS:PortList, + {19229761-704a-4553-b91e-edf3618b1424}, !- Handle + {5cf57d1e-6a71-41aa-a02c-b82bfbca3868}; !- HVAC Component + +OS:Sizing:Zone, + {e3c13fc4-3bc4-45c3-a6e1-c66569c7583b}, !- Handle + {5cf57d1e-6a71-41aa-a02c-b82bfbca3868}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {b31ef807-bb03-4d43-af54-a8c4b5a5d287}, !- Handle + Zone Outpatient Elec/MechRoom B - Story ground Zone HVAC Equipment List, !- Name + {5cf57d1e-6a71-41aa-a02c-b82bfbca3868}, !- Thermal Zone + , !- Load Distribution Scheme + {84a5d4c6-09ae-4dd8-abce-ca580638a2be}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + +OS:Space, + {c9da4633-24be-4964-b2ae-651131d87847}, !- Handle + Outpatient Elec/MechRoom C - Story ground, !- Name + {2ddb316f-6ad1-4b05-9092-190cb98dab70}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 101.41953405375, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {4a28d695-a009-42e5-bf1d-498560427d2d}; !- Thermal Zone Name + +OS:Surface, + {f20e70c6-ea9f-4e08-bf22-3f04473ea261}, !- Handle + Surface 413, !- Name + Floor, !- Surface Type + {1d2fac39-57bf-4e62-a60f-23549406cce1}, !- Construction Name + {c9da4633-24be-4964-b2ae-651131d87847}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.9737991503207e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + 4.9737991503207e-13, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 2.1466795872675, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 2.1466795872675, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f61af700-1d7a-4863-b1de-7eaf4b51036d}, !- Handle + Surface 414, !- Name + Wall, !- Surface Type + , !- Construction Name + {c9da4633-24be-4964-b2ae-651131d87847}, !- Space Name + Surface, !- Outside Boundary Condition + {836d6040-2bc0-46e5-b9f0-20bd3c2cc16c}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.2632564145606e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 4.2632564145606e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 4.2632564145606e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 4.2632564145606e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1dd0cb23-c026-4b43-80cf-1c96f5dd7d2b}, !- Handle + Surface 415, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {c9da4633-24be-4964-b2ae-651131d87847}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.9737991503207e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 2.1466795872675, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 2.1466795872675, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 4.9737991503207e-13, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0a274767-24a7-42e2-96cc-bcbc43ca7aec}, !- Handle + Surface 416, !- Name + Wall, !- Surface Type + , !- Construction Name + {c9da4633-24be-4964-b2ae-651131d87847}, !- Space Name + Surface, !- Outside Boundary Condition + {4761fd0c-b7a3-4506-96ea-5b1ab0be68f3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.1466795872675, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 2.1466795872675, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 2.1466795872675, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 2.1466795872675, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {bdcf9ea6-a26e-4636-b607-f3cc71bc89d8}, !- Handle + Surface 417, !- Name + Wall, !- Surface Type + , !- Construction Name + {c9da4633-24be-4964-b2ae-651131d87847}, !- Space Name + Surface, !- Outside Boundary Condition + {9524ef98-d4de-42b7-aa66-c1f49ebbda0e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.9737991503207e-13, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 4.9737991503207e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 2.1466795872675, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 2.1466795872675, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {341afe25-4dcc-4670-9878-3e869fc2ae63}, !- Handle + Surface 418, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {c9da4633-24be-4964-b2ae-651131d87847}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.1466795872675, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 2.1466795872675, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 4.9737991503207e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + 4.9737991503207e-13, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {4a28d695-a009-42e5-bf1d-498560427d2d}, !- Handle + Zone Outpatient Elec/MechRoom C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {d7edc832-ccf0-4de5-a1cd-8a5f9d428ad2}, !- Zone Air Inlet Port List + {698b8230-49b0-43e7-8313-8e9bf1b7d77f}, !- Zone Air Exhaust Port List + {58d6a495-5bcf-4ca3-9a4a-f8eb8bc088fb}, !- Zone Air Node Name + {3547f551-5e5e-4bd5-ad2d-f197e4e857f1}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {eca85e45-dc31-44ac-bf98-0e5b2657908d}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {db363872-a567-48ea-b6b2-2f20fbc77b9d}, !- Handle + Zone Outpatient Elec/MechRoom C - Story ground Zone Air Node, !- Name + {58d6a495-5bcf-4ca3-9a4a-f8eb8bc088fb}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {58d6a495-5bcf-4ca3-9a4a-f8eb8bc088fb}, !- Handle + {4a28d695-a009-42e5-bf1d-498560427d2d}, !- Source Object + 11, !- Outlet Port + {db363872-a567-48ea-b6b2-2f20fbc77b9d}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {d7edc832-ccf0-4de5-a1cd-8a5f9d428ad2}, !- Handle + {4a28d695-a009-42e5-bf1d-498560427d2d}, !- HVAC Component + {a8f64e0b-de30-4ab3-b917-ecceb4303160}; !- Port 1 + +OS:PortList, + {698b8230-49b0-43e7-8313-8e9bf1b7d77f}, !- Handle + {4a28d695-a009-42e5-bf1d-498560427d2d}, !- HVAC Component + {04bd3b21-37d9-4f88-a0b5-f3ae4f9ecfca}; !- Port 1 + +OS:PortList, + {3547f551-5e5e-4bd5-ad2d-f197e4e857f1}, !- Handle + {4a28d695-a009-42e5-bf1d-498560427d2d}; !- HVAC Component + +OS:Sizing:Zone, + {bd9d958b-7bda-4f89-a9ef-15ebce0de5db}, !- Handle + {4a28d695-a009-42e5-bf1d-498560427d2d}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {f8b7d84a-36b1-484c-970e-f5d4cec8a2fe}, !- Handle + Zone Outpatient Elec/MechRoom C - Story ground Zone HVAC Equipment List, !- Name + {4a28d695-a009-42e5-bf1d-498560427d2d}, !- Thermal Zone + , !- Load Distribution Scheme + {c1f90c93-9c96-4dd1-a856-5b60724d608c}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + +OS:Space, + {0eab7abe-c6e0-41ed-be3b-89dbf7f80039}, !- Handle + Outpatient PreOp A - Story ground, !- Name + {92312da1-9ed9-4fea-82b7-d1ae297e9d8a}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 103.566213641017, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {91a0b6d3-b1fa-44aa-85c1-413300bb5286}; !- Thermal Zone Name + +OS:Surface, + {13ce659f-5731-4567-b1dc-0d9bc31b5a0f}, !- Handle + Surface 419, !- Name + Floor, !- Surface Type + {7bb47267-35ea-4901-9692-cf1d0e607728}, !- Construction Name + {0eab7abe-c6e0-41ed-be3b-89dbf7f80039}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.26849658449646e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + 3.26849658449646e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 2.54056575006832, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 2.54056575006832, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fb84333b-c414-4a67-9bc0-a27776f5fb75}, !- Handle + Surface 420, !- Name + Wall, !- Surface Type + , !- Construction Name + {0eab7abe-c6e0-41ed-be3b-89dbf7f80039}, !- Space Name + Surface, !- Outside Boundary Condition + {806b4de0-5bdc-451a-a205-3993e84ccbf5}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.9737991503207e-13, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 4.9737991503207e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 4.9737991503207e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 4.9737991503207e-13, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fe5ed8fb-aa58-41be-9b5e-6090ae0805d6}, !- Handle + Surface 421, !- Name + Wall, !- Surface Type + , !- Construction Name + {0eab7abe-c6e0-41ed-be3b-89dbf7f80039}, !- Space Name + Surface, !- Outside Boundary Condition + {307bc6d0-6546-4267-8157-bc0cf4b92f84}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.54056575006832, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 2.54056575006832, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 3.26849658449646e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 3.26849658449646e-13, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8d279d07-9cd9-466c-a050-f2fd07329e90}, !- Handle + Surface 422, !- Name + Wall, !- Surface Type + , !- Construction Name + {0eab7abe-c6e0-41ed-be3b-89dbf7f80039}, !- Space Name + Surface, !- Outside Boundary Condition + {5d7a8988-ebc8-4533-87ac-8dc434a4d9fa}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.54056575006832, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.54056575006832, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 2.54056575006832, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 2.54056575006832, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d281c94e-2d9a-481a-95ba-8e0bad2e45c5}, !- Handle + Surface 423, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {0eab7abe-c6e0-41ed-be3b-89dbf7f80039}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.54056575006832, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 3.26849658449646e-13, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 3.26849658449646e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.54056575006832, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {c28b3d1d-7ca4-4ad8-9113-54ca66affbcc}, !- Handle + Surface 424, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {0eab7abe-c6e0-41ed-be3b-89dbf7f80039}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.54056575006832, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.54056575006832, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 3.26849658449646e-13, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + 3.26849658449646e-13, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {91a0b6d3-b1fa-44aa-85c1-413300bb5286}, !- Handle + Zone Outpatient PreOp A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {5765d73b-4d6b-4177-abc3-7b0a484257f0}, !- Zone Air Inlet Port List + {5f14e213-9cba-4ed0-8129-7375f0650f83}, !- Zone Air Exhaust Port List + {434e721a-719d-4c05-9f85-97947912b830}, !- Zone Air Node Name + {b67b23ac-2857-40a9-abb9-e44012fb8c1f}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {63bbb366-386b-4c3f-896a-ca38179f3232}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {8312c9c7-780e-4612-b4a4-ca4731e13bd7}, !- Handle + Zone Outpatient PreOp A - Story ground Zone Air Node, !- Name + {434e721a-719d-4c05-9f85-97947912b830}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {434e721a-719d-4c05-9f85-97947912b830}, !- Handle + {91a0b6d3-b1fa-44aa-85c1-413300bb5286}, !- Source Object + 11, !- Outlet Port + {8312c9c7-780e-4612-b4a4-ca4731e13bd7}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {5765d73b-4d6b-4177-abc3-7b0a484257f0}, !- Handle + {91a0b6d3-b1fa-44aa-85c1-413300bb5286}, !- HVAC Component + {257c2d72-285d-48f1-a290-1fb6728bea1d}, !- Port 1 + {c395ceca-fb02-41c1-89da-264354964a7f}; !- Port 2 + +OS:PortList, + {5f14e213-9cba-4ed0-8129-7375f0650f83}, !- Handle + {91a0b6d3-b1fa-44aa-85c1-413300bb5286}, !- HVAC Component + {e483ff98-5fcd-44b0-8733-7d42e0078f05}; !- Port 1 + +OS:PortList, + {b67b23ac-2857-40a9-abb9-e44012fb8c1f}, !- Handle + {91a0b6d3-b1fa-44aa-85c1-413300bb5286}, !- HVAC Component + {65e986f9-619d-4eda-87d2-d5874debc7b8}; !- Port 1 + +OS:Sizing:Zone, + {a786bcd7-3626-49de-9279-4c65db655e78}, !- Handle + {91a0b6d3-b1fa-44aa-85c1-413300bb5286}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {b39ab062-1590-4832-9727-81d9ed1f1463}, !- Handle + Zone Outpatient PreOp A - Story ground Zone HVAC Equipment List, !- Name + {91a0b6d3-b1fa-44aa-85c1-413300bb5286}, !- Thermal Zone + , !- Load Distribution Scheme + {1527e6e8-0773-4cc1-8da4-516b6d44c8e9}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {e8fa2e56-9046-4f15-817d-420a588accb3}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {09344033-876f-4e13-bd59-d26edf288781}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {1c445b5a-491b-47a3-8486-a5a494d572dc}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {9cf6e6b0-9d71-4410-b574-bc406d044fc9}, !- Handle + Outpatient PreOp B - Story ground, !- Name + {92312da1-9ed9-4fea-82b7-d1ae297e9d8a}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 103.566213641017, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {538235c2-6a4b-4efa-a135-6b406d2680dc}; !- Thermal Zone Name + +OS:Surface, + {b8bb2b3b-fac3-41ce-858d-106a16cf3f6a}, !- Handle + Surface 425, !- Name + Floor, !- Surface Type + {27dcf78f-9de7-4fc9-aa52-5166a148e1f8}, !- Construction Name + {9cf6e6b0-9d71-4410-b574-bc406d044fc9}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.26849658449646e-13, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + 3.26849658449646e-13, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 2.54056575006832, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 2.54056575006832, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {77684031-da41-403e-9538-452a85af1f48}, !- Handle + Surface 426, !- Name + Wall, !- Surface Type + , !- Construction Name + {9cf6e6b0-9d71-4410-b574-bc406d044fc9}, !- Space Name + Surface, !- Outside Boundary Condition + {de02c444-16de-47e0-972c-05a0f0a06d0a}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.9737991503207e-13, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + 4.9737991503207e-13, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 4.9737991503207e-13, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + 4.9737991503207e-13, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {415dac36-829a-4b62-9e52-f96aad32b3bf}, !- Handle + Surface 427, !- Name + Wall, !- Surface Type + , !- Construction Name + {9cf6e6b0-9d71-4410-b574-bc406d044fc9}, !- Space Name + Surface, !- Outside Boundary Condition + {6bb491cb-42c4-4bb5-ac19-dc92d0a8732d}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.54056575006832, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 2.54056575006832, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + 3.26849658449646e-13, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + 3.26849658449646e-13, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {53ddab39-3df4-4840-a896-940f415d2928}, !- Handle + Surface 428, !- Name + Wall, !- Surface Type + , !- Construction Name + {9cf6e6b0-9d71-4410-b574-bc406d044fc9}, !- Space Name + Surface, !- Outside Boundary Condition + {e7a05cfd-b638-44f4-97b0-db00c23528a9}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.54056575006832, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.54056575006832, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 2.54056575006832, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 2.54056575006832, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {307bc6d0-6546-4267-8157-bc0cf4b92f84}, !- Handle + Surface 429, !- Name + Wall, !- Surface Type + , !- Construction Name + {9cf6e6b0-9d71-4410-b574-bc406d044fc9}, !- Space Name + Surface, !- Outside Boundary Condition + {fe5ed8fb-aa58-41be-9b5e-6090ae0805d6}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.26849658449646e-13, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 3.26849658449646e-13, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 2.54056575006832, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.54056575006832, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d3a0baa7-e467-4f75-ae15-98f35d732531}, !- Handle + Surface 430, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {9cf6e6b0-9d71-4410-b574-bc406d044fc9}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.54056575006832, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.54056575006832, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + 3.26849658449646e-13, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + 3.26849658449646e-13, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {538235c2-6a4b-4efa-a135-6b406d2680dc}, !- Handle + Zone Outpatient PreOp B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {d393488a-a56e-4a7a-9f61-1214a5e71e39}, !- Zone Air Inlet Port List + {187b2eee-5726-460a-b934-bc7f8a3ec2af}, !- Zone Air Exhaust Port List + {35afa14c-5c7b-482a-912d-cb264345a312}, !- Zone Air Node Name + {27e46c98-104a-42ef-bd1c-6793bbe16ae2}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {2537a3c5-db35-43ae-a085-fc93d9a32d23}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {8dfde2f5-e003-4a7b-9fc7-8885e20c2634}, !- Handle + Zone Outpatient PreOp B - Story ground Zone Air Node, !- Name + {35afa14c-5c7b-482a-912d-cb264345a312}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {35afa14c-5c7b-482a-912d-cb264345a312}, !- Handle + {538235c2-6a4b-4efa-a135-6b406d2680dc}, !- Source Object + 11, !- Outlet Port + {8dfde2f5-e003-4a7b-9fc7-8885e20c2634}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {d393488a-a56e-4a7a-9f61-1214a5e71e39}, !- Handle + {538235c2-6a4b-4efa-a135-6b406d2680dc}, !- HVAC Component + {606c2820-a09f-4ea5-a681-0ba89f9c1073}, !- Port 1 + {f934ee06-3cf2-40c5-a38f-01bdb090a525}; !- Port 2 + +OS:PortList, + {187b2eee-5726-460a-b934-bc7f8a3ec2af}, !- Handle + {538235c2-6a4b-4efa-a135-6b406d2680dc}, !- HVAC Component + {261b5edc-0bb5-4149-8674-ac64417fb7d5}; !- Port 1 + +OS:PortList, + {27e46c98-104a-42ef-bd1c-6793bbe16ae2}, !- Handle + {538235c2-6a4b-4efa-a135-6b406d2680dc}, !- HVAC Component + {30246f2a-c2df-4833-b0c1-ee77814bfaaf}; !- Port 1 + +OS:Sizing:Zone, + {e7c28461-6851-47d3-90ef-50a4403c8d94}, !- Handle + {538235c2-6a4b-4efa-a135-6b406d2680dc}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {df091cc4-5dc1-4870-b8c6-1ccf0e7e4a5f}, !- Handle + Zone Outpatient PreOp B - Story ground Zone HVAC Equipment List, !- Name + {538235c2-6a4b-4efa-a135-6b406d2680dc}, !- Thermal Zone + , !- Load Distribution Scheme + {c2a79728-55a4-4224-aa76-b2d8416153d4}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {119f800f-a6e5-46ca-b724-48bbd55d0276}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {a174bb2e-5d2a-442f-9400-d3c2bae7e76e}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {ce40930b-4ce6-4975-a438-c70232ddda12}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {e8a67c40-e9cc-4e8f-b151-3a8b38938799}, !- Handle + Outpatient PreOp C - Story ground, !- Name + {92312da1-9ed9-4fea-82b7-d1ae297e9d8a}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 103.566213641017, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {76977c56-da53-4cc8-ab57-3039b02b8357}; !- Thermal Zone Name + +OS:Surface, + {983f7064-ee8c-472e-8de8-df424b1c98ab}, !- Handle + Surface 431, !- Name + Floor, !- Surface Type + {7bb47267-35ea-4901-9692-cf1d0e607728}, !- Construction Name + {e8a67c40-e9cc-4e8f-b151-3a8b38938799}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.26849658449646e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + 3.26849658449646e-13, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 2.54056575006832, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 2.54056575006832, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4761fd0c-b7a3-4506-96ea-5b1ab0be68f3}, !- Handle + Surface 432, !- Name + Wall, !- Surface Type + , !- Construction Name + {e8a67c40-e9cc-4e8f-b151-3a8b38938799}, !- Space Name + Surface, !- Outside Boundary Condition + {0a274767-24a7-42e2-96cc-bcbc43ca7aec}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.9737991503207e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 4.9737991503207e-13, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 4.9737991503207e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 4.9737991503207e-13, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3d45f478-79f3-4f66-8459-ce985935383a}, !- Handle + Surface 433, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {e8a67c40-e9cc-4e8f-b151-3a8b38938799}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.26849658449646e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 2.54056575006832, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 2.54056575006832, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 3.26849658449646e-13, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {cacfb79c-e851-4bdd-87b5-14d111e9d770}, !- Handle + Surface 434, !- Name + Wall, !- Surface Type + , !- Construction Name + {e8a67c40-e9cc-4e8f-b151-3a8b38938799}, !- Space Name + Surface, !- Outside Boundary Condition + {7ba01950-5c44-4b67-9101-809340de8971}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.54056575006832, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 2.54056575006832, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 2.54056575006832, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 2.54056575006832, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {6bb491cb-42c4-4bb5-ac19-dc92d0a8732d}, !- Handle + Surface 435, !- Name + Wall, !- Surface Type + , !- Construction Name + {e8a67c40-e9cc-4e8f-b151-3a8b38938799}, !- Space Name + Surface, !- Outside Boundary Condition + {415dac36-829a-4b62-9e52-f96aad32b3bf}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.26849658449646e-13, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 3.26849658449646e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 2.54056575006832, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 2.54056575006832, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9c372d8f-6183-43a7-8ad0-9d8fa65a4558}, !- Handle + Surface 436, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {e8a67c40-e9cc-4e8f-b151-3a8b38938799}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.54056575006832, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 2.54056575006832, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 3.26849658449646e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + 3.26849658449646e-13, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {76977c56-da53-4cc8-ab57-3039b02b8357}, !- Handle + Zone Outpatient PreOp C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {f5c3143e-e0ea-42f4-8bb0-dff1a25ff6bf}, !- Zone Air Inlet Port List + {88d409a2-0744-46e1-891e-d8d051a8968b}, !- Zone Air Exhaust Port List + {2322230d-b380-4a97-8eb3-5fa57295419d}, !- Zone Air Node Name + {6f1035dc-cc22-49d9-967c-ff52742a3aa8}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {39d514a1-ecc2-480a-b840-0d885eb055d6}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {64569755-e913-428f-a32d-95284e1f908d}, !- Handle + Zone Outpatient PreOp C - Story ground Zone Air Node, !- Name + {2322230d-b380-4a97-8eb3-5fa57295419d}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {2322230d-b380-4a97-8eb3-5fa57295419d}, !- Handle + {76977c56-da53-4cc8-ab57-3039b02b8357}, !- Source Object + 11, !- Outlet Port + {64569755-e913-428f-a32d-95284e1f908d}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {f5c3143e-e0ea-42f4-8bb0-dff1a25ff6bf}, !- Handle + {76977c56-da53-4cc8-ab57-3039b02b8357}, !- HVAC Component + {0ae00769-119d-4ab2-8418-cbfda4166c14}, !- Port 1 + {d7f287f9-a675-4740-9cd8-e3f03bd448d0}; !- Port 2 + +OS:PortList, + {88d409a2-0744-46e1-891e-d8d051a8968b}, !- Handle + {76977c56-da53-4cc8-ab57-3039b02b8357}, !- HVAC Component + {95f7ced6-4637-4d32-ae05-3bc43cb26fa3}; !- Port 1 + +OS:PortList, + {6f1035dc-cc22-49d9-967c-ff52742a3aa8}, !- Handle + {76977c56-da53-4cc8-ab57-3039b02b8357}, !- HVAC Component + {437639c7-9e8b-4d89-bc05-06ccb3dbe5e1}; !- Port 1 + +OS:Sizing:Zone, + {f4913829-76b6-4577-886d-9b658fddf39d}, !- Handle + {76977c56-da53-4cc8-ab57-3039b02b8357}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {a8a3d6cb-6f65-4e84-89f2-d3062780dbff}, !- Handle + Zone Outpatient PreOp C - Story ground Zone HVAC Equipment List, !- Name + {76977c56-da53-4cc8-ab57-3039b02b8357}, !- Thermal Zone + , !- Load Distribution Scheme + {0fa62896-cbfd-4e44-a8ff-d1009c3a03a7}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {56c58c0a-bbf1-4488-98d5-224edde2de42}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {35377e2d-f5e4-48a6-83e1-9b600fda2c90}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {9cd9a9c3-2a1d-4925-b2da-c017cb8748fd}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {481888aa-bd8b-4b40-8221-99cbc36df9ac}, !- Handle + Outpatient Stair A - Story ground, !- Name + {36ea0a66-256f-4bab-bd07-1a8541fc24fb}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 106.106779391085, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {5915c7be-60bd-4f18-9a0b-606fa97e471d}; !- Thermal Zone Name + +OS:Surface, + {706880eb-d0fe-4072-b879-f9a292539d36}, !- Handle + Surface 437, !- Name + Floor, !- Surface Type + {31dfd6ee-c25a-4a15-8c6c-0daf55f32af3}, !- Construction Name + {481888aa-bd8b-4b40-8221-99cbc36df9ac}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.70530256582424e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + -1.70530256582424e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 2.87536898844984, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 2.87536898844984, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5d7a8988-ebc8-4533-87ac-8dc434a4d9fa}, !- Handle + Surface 438, !- Name + Wall, !- Surface Type + , !- Construction Name + {481888aa-bd8b-4b40-8221-99cbc36df9ac}, !- Space Name + Surface, !- Outside Boundary Condition + {8d279d07-9cd9-466c-a050-f2fd07329e90}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.26849658449646e-13, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 3.26849658449646e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 3.26849658449646e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 3.26849658449646e-13, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {29653039-2c1b-496e-870b-ffdaea34731b}, !- Handle + Surface 439, !- Name + Wall, !- Surface Type + , !- Construction Name + {481888aa-bd8b-4b40-8221-99cbc36df9ac}, !- Space Name + Surface, !- Outside Boundary Condition + {6e5bce30-64a3-4266-87bf-3c4e9182a92e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.87536898844984, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 2.87536898844984, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + -1.70530256582424e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + -1.70530256582424e-13, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b1abe06c-a385-4a36-9898-7ce2bb19b501}, !- Handle + Surface 440, !- Name + Wall, !- Surface Type + , !- Construction Name + {481888aa-bd8b-4b40-8221-99cbc36df9ac}, !- Space Name + Surface, !- Outside Boundary Condition + {ab658115-57ce-4cbc-a810-c25723fafee9}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.87536898844984, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.87536898844984, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 2.87536898844984, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 2.87536898844984, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f1f77ae5-6fad-466e-941d-1b1b4674c452}, !- Handle + Surface 441, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {481888aa-bd8b-4b40-8221-99cbc36df9ac}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.87536898844984, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -1.70530256582424e-13, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + -1.70530256582424e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.87536898844984, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {91776d2e-bf6e-45b1-b0ed-894e8b4d9137}, !- Handle + Surface 442, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {481888aa-bd8b-4b40-8221-99cbc36df9ac}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.87536898844984, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.87536898844984, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + -1.70530256582424e-13, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + -1.70530256582424e-13, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {5915c7be-60bd-4f18-9a0b-606fa97e471d}, !- Handle + Zone Outpatient Stair A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {15825351-6da8-430c-b16c-af56bee5aae5}, !- Zone Air Inlet Port List + {afbae12c-84ea-485a-acec-cc8496e88f25}, !- Zone Air Exhaust Port List + {0f0dd3fc-101a-4d2e-a511-362ff62be07f}, !- Zone Air Node Name + {90e34158-ea26-4f1c-bfd2-700189cd06f7}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {443c7d91-9416-4fdb-b00a-8a36dc8fcbc3}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {f3a27d20-85f3-43e0-b23c-4e8a1ef58f94}, !- Handle + Zone Outpatient Stair A - Story ground Zone Air Node, !- Name + {0f0dd3fc-101a-4d2e-a511-362ff62be07f}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {0f0dd3fc-101a-4d2e-a511-362ff62be07f}, !- Handle + {5915c7be-60bd-4f18-9a0b-606fa97e471d}, !- Source Object + 11, !- Outlet Port + {f3a27d20-85f3-43e0-b23c-4e8a1ef58f94}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {15825351-6da8-430c-b16c-af56bee5aae5}, !- Handle + {5915c7be-60bd-4f18-9a0b-606fa97e471d}, !- HVAC Component + {b0f413f6-839e-4f5c-82a3-d0fca08019f7}; !- Port 1 + +OS:PortList, + {afbae12c-84ea-485a-acec-cc8496e88f25}, !- Handle + {5915c7be-60bd-4f18-9a0b-606fa97e471d}, !- HVAC Component + {19e374f8-1dbc-46b8-aeec-dba9ea8a67eb}; !- Port 1 + +OS:PortList, + {90e34158-ea26-4f1c-bfd2-700189cd06f7}, !- Handle + {5915c7be-60bd-4f18-9a0b-606fa97e471d}; !- HVAC Component + +OS:Sizing:Zone, + {1d6e0f35-8734-416f-9fec-74d748cfad45}, !- Handle + {5915c7be-60bd-4f18-9a0b-606fa97e471d}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {619bfa92-9d60-4f8d-929b-f960a43705e2}, !- Handle + Zone Outpatient Stair A - Story ground Zone HVAC Equipment List, !- Name + {5915c7be-60bd-4f18-9a0b-606fa97e471d}, !- Thermal Zone + , !- Load Distribution Scheme + {8d57d6a8-9932-435a-ad7d-3b4dcb970d76}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + +OS:Space, + {feb60575-a4e3-473f-97a3-adc777f0359a}, !- Handle + Outpatient Stair B - Story ground, !- Name + {36ea0a66-256f-4bab-bd07-1a8541fc24fb}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 106.106779391085, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {7c8851c8-3152-476c-bd64-8261cc9e56c1}; !- Thermal Zone Name + +OS:Surface, + {471b5762-f839-41a3-91b1-59757f9ab30a}, !- Handle + Surface 443, !- Name + Floor, !- Surface Type + {1b90ff21-3987-4ccf-888f-35e014036973}, !- Construction Name + {feb60575-a4e3-473f-97a3-adc777f0359a}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.70530256582424e-13, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + -1.70530256582424e-13, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 2.87536898844984, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 2.87536898844984, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {e7a05cfd-b638-44f4-97b0-db00c23528a9}, !- Handle + Surface 444, !- Name + Wall, !- Surface Type + , !- Construction Name + {feb60575-a4e3-473f-97a3-adc777f0359a}, !- Space Name + Surface, !- Outside Boundary Condition + {53ddab39-3df4-4840-a896-940f415d2928}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.26849658449646e-13, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + 3.26849658449646e-13, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 3.26849658449646e-13, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + 3.26849658449646e-13, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d6e2c0ae-49dc-4fa0-8d18-23e2a2e892ce}, !- Handle + Surface 445, !- Name + Wall, !- Surface Type + , !- Construction Name + {feb60575-a4e3-473f-97a3-adc777f0359a}, !- Space Name + Surface, !- Outside Boundary Condition + {49ea502f-2d74-43c2-8aa9-68197e5ad5c4}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.87536898844984, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 2.87536898844984, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + -1.70530256582424e-13, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + -1.70530256582424e-13, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a288c811-e86e-4c62-b6fb-068e8b472295}, !- Handle + Surface 446, !- Name + Wall, !- Surface Type + , !- Construction Name + {feb60575-a4e3-473f-97a3-adc777f0359a}, !- Space Name + Surface, !- Outside Boundary Condition + {0ec9e0c3-42f8-49d5-bf1e-2a21d5bbba3f}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.87536898844984, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.87536898844984, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 2.87536898844984, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 2.87536898844984, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {6e5bce30-64a3-4266-87bf-3c4e9182a92e}, !- Handle + Surface 447, !- Name + Wall, !- Surface Type + , !- Construction Name + {feb60575-a4e3-473f-97a3-adc777f0359a}, !- Space Name + Surface, !- Outside Boundary Condition + {29653039-2c1b-496e-870b-ffdaea34731b}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.70530256582424e-13, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -1.70530256582424e-13, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 2.87536898844984, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.87536898844984, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {6c466408-cffa-42d6-9d41-5b8f14a5a940}, !- Handle + Surface 448, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {feb60575-a4e3-473f-97a3-adc777f0359a}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.87536898844984, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.87536898844984, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + -1.70530256582424e-13, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + -1.70530256582424e-13, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {7c8851c8-3152-476c-bd64-8261cc9e56c1}, !- Handle + Zone Outpatient Stair B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {d0e7f804-5997-460e-b706-fa37e9b4ea96}, !- Zone Air Inlet Port List + {b1c0f678-3c53-4677-86c8-08b9ad1e9b6e}, !- Zone Air Exhaust Port List + {b984029e-3fe7-4cfe-ac33-7a9c68bc3d69}, !- Zone Air Node Name + {17c66df9-8b80-496b-956f-bf3326763a53}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {e479ab8d-9f83-4cc7-82f4-ddb0ffe78950}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {92821c82-2a3f-4987-8554-8d13d663f5b9}, !- Handle + Zone Outpatient Stair B - Story ground Zone Air Node, !- Name + {b984029e-3fe7-4cfe-ac33-7a9c68bc3d69}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {b984029e-3fe7-4cfe-ac33-7a9c68bc3d69}, !- Handle + {7c8851c8-3152-476c-bd64-8261cc9e56c1}, !- Source Object + 11, !- Outlet Port + {92821c82-2a3f-4987-8554-8d13d663f5b9}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {d0e7f804-5997-460e-b706-fa37e9b4ea96}, !- Handle + {7c8851c8-3152-476c-bd64-8261cc9e56c1}, !- HVAC Component + {a05b81c8-d771-489c-bd69-2cc7bb149e53}; !- Port 1 + +OS:PortList, + {b1c0f678-3c53-4677-86c8-08b9ad1e9b6e}, !- Handle + {7c8851c8-3152-476c-bd64-8261cc9e56c1}, !- HVAC Component + {e052e3ff-847a-41c4-9e85-2e7d8bad30e3}; !- Port 1 + +OS:PortList, + {17c66df9-8b80-496b-956f-bf3326763a53}, !- Handle + {7c8851c8-3152-476c-bd64-8261cc9e56c1}; !- HVAC Component + +OS:Sizing:Zone, + {5cf5e3c5-b58f-42d6-9cb5-ee779f5272de}, !- Handle + {7c8851c8-3152-476c-bd64-8261cc9e56c1}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {f04aa521-68f3-4306-b90d-560a0a5a862c}, !- Handle + Zone Outpatient Stair B - Story ground Zone HVAC Equipment List, !- Name + {7c8851c8-3152-476c-bd64-8261cc9e56c1}, !- Thermal Zone + , !- Load Distribution Scheme + {def8a652-7c28-45dd-bef2-ad674e6261d9}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + +OS:Space, + {f9541ccc-4c68-458f-aa32-860b6cc1bc80}, !- Handle + Outpatient Stair C - Story ground, !- Name + {36ea0a66-256f-4bab-bd07-1a8541fc24fb}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 106.106779391085, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {7670e120-eb67-42f2-a751-1fcae0b21cfe}; !- Thermal Zone Name + +OS:Surface, + {1e7775af-88b9-4967-b813-663809c7343a}, !- Handle + Surface 449, !- Name + Floor, !- Surface Type + {31dfd6ee-c25a-4a15-8c6c-0daf55f32af3}, !- Construction Name + {f9541ccc-4c68-458f-aa32-860b6cc1bc80}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.70530256582424e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + -1.70530256582424e-13, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 2.87536898844984, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 2.87536898844984, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7ba01950-5c44-4b67-9101-809340de8971}, !- Handle + Surface 450, !- Name + Wall, !- Surface Type + , !- Construction Name + {f9541ccc-4c68-458f-aa32-860b6cc1bc80}, !- Space Name + Surface, !- Outside Boundary Condition + {cacfb79c-e851-4bdd-87b5-14d111e9d770}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.26849658449646e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 3.26849658449646e-13, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 3.26849658449646e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 3.26849658449646e-13, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8d48227a-29e9-4b60-abe6-a530a7c4a385}, !- Handle + Surface 451, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {f9541ccc-4c68-458f-aa32-860b6cc1bc80}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.70530256582424e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 2.87536898844984, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 2.87536898844984, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + -1.70530256582424e-13, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ba59f777-8e8c-4e50-854c-5afa3e1c73b7}, !- Handle + Surface 452, !- Name + Wall, !- Surface Type + , !- Construction Name + {f9541ccc-4c68-458f-aa32-860b6cc1bc80}, !- Space Name + Surface, !- Outside Boundary Condition + {6aac4f91-e560-4282-9cc1-e8beb92459c3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.87536898844984, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 2.87536898844984, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 2.87536898844984, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 2.87536898844984, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {49ea502f-2d74-43c2-8aa9-68197e5ad5c4}, !- Handle + Surface 453, !- Name + Wall, !- Surface Type + , !- Construction Name + {f9541ccc-4c68-458f-aa32-860b6cc1bc80}, !- Space Name + Surface, !- Outside Boundary Condition + {d6e2c0ae-49dc-4fa0-8d18-23e2a2e892ce}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.70530256582424e-13, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + -1.70530256582424e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 2.87536898844984, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 2.87536898844984, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1d2d063f-9950-4cf6-ad88-812844fd9e8c}, !- Handle + Surface 454, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {f9541ccc-4c68-458f-aa32-860b6cc1bc80}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.87536898844984, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 2.87536898844984, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + -1.70530256582424e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + -1.70530256582424e-13, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {7670e120-eb67-42f2-a751-1fcae0b21cfe}, !- Handle + Zone Outpatient Stair C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {ee0790da-9ae0-40aa-ae34-447f7aaa2ffd}, !- Zone Air Inlet Port List + {b36608ca-c873-4050-8ea2-03c1358a2665}, !- Zone Air Exhaust Port List + {3ddea60e-a029-4c2b-894c-006bdfb546cd}, !- Zone Air Node Name + {719e1811-b51c-4fa8-9f59-983c5bf830bf}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {3d078f87-99a3-41a6-898e-7e57d3ff027c}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {92915f30-7e53-40ac-b5a9-f52b5c16cc39}, !- Handle + Zone Outpatient Stair C - Story ground Zone Air Node, !- Name + {3ddea60e-a029-4c2b-894c-006bdfb546cd}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {3ddea60e-a029-4c2b-894c-006bdfb546cd}, !- Handle + {7670e120-eb67-42f2-a751-1fcae0b21cfe}, !- Source Object + 11, !- Outlet Port + {92915f30-7e53-40ac-b5a9-f52b5c16cc39}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {ee0790da-9ae0-40aa-ae34-447f7aaa2ffd}, !- Handle + {7670e120-eb67-42f2-a751-1fcae0b21cfe}, !- HVAC Component + {24a67da5-4fa8-4930-b603-16bf44d0e448}; !- Port 1 + +OS:PortList, + {b36608ca-c873-4050-8ea2-03c1358a2665}, !- Handle + {7670e120-eb67-42f2-a751-1fcae0b21cfe}, !- HVAC Component + {8d79702c-a948-4367-acd5-e51d518515db}; !- Port 1 + +OS:PortList, + {719e1811-b51c-4fa8-9f59-983c5bf830bf}, !- Handle + {7670e120-eb67-42f2-a751-1fcae0b21cfe}; !- HVAC Component + +OS:Sizing:Zone, + {51dc1b2a-3f83-4d62-86a7-5c16412890ec}, !- Handle + {7670e120-eb67-42f2-a751-1fcae0b21cfe}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {39ba001a-6bdf-47fa-a274-245375d12e2a}, !- Handle + Zone Outpatient Stair C - Story ground Zone HVAC Equipment List, !- Name + {7670e120-eb67-42f2-a751-1fcae0b21cfe}, !- Thermal Zone + , !- Load Distribution Scheme + {2a2aac32-51cf-412f-a048-938c8a2a904c}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + +OS:Space, + {f570382a-efd5-4ffc-8095-a7bced243c99}, !- Handle + Outpatient Lobby A - Story ground, !- Name + {830595d2-f1c6-4a4f-adab-f4229419a49b}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 108.982148379535, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {e86f14e3-2ca0-46d7-8cac-00671ce7b181}; !- Thermal Zone Name + +OS:Surface, + {e15e17d8-23d6-4b7f-99fd-511d7f54ee79}, !- Handle + Surface 455, !- Name + Floor, !- Surface Type + {3f927850-9caf-4662-804c-e57617380ed7}, !- Construction Name + {f570382a-efd5-4ffc-8095-a7bced243c99}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.27373675443232e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + 2.27373675443232e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 2.99353483729023, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 2.99353483729023, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ab658115-57ce-4cbc-a810-c25723fafee9}, !- Handle + Surface 456, !- Name + Wall, !- Surface Type + , !- Construction Name + {f570382a-efd5-4ffc-8095-a7bced243c99}, !- Space Name + Surface, !- Outside Boundary Condition + {b1abe06c-a385-4a36-9898-7ce2bb19b501}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.70530256582424e-13, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + -1.70530256582424e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + -1.70530256582424e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + -1.70530256582424e-13, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9ef9cd18-8201-4f8e-83ef-bf87829bffd3}, !- Handle + Surface 457, !- Name + Wall, !- Surface Type + , !- Construction Name + {f570382a-efd5-4ffc-8095-a7bced243c99}, !- Space Name + Surface, !- Outside Boundary Condition + {2317fa86-02f4-44b3-97ae-a322af106df3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.99353483729023, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 2.99353483729023, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 2.27373675443232e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 2.27373675443232e-13, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {24891c60-b65f-4b32-b86e-4e8b5caada03}, !- Handle + Surface 458, !- Name + Wall, !- Surface Type + , !- Construction Name + {f570382a-efd5-4ffc-8095-a7bced243c99}, !- Space Name + Surface, !- Outside Boundary Condition + {3dca80a2-c9da-469d-8f67-7fdc803838e2}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.99353483729023, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.99353483729023, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 2.99353483729023, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 2.99353483729023, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {85ad94d6-5107-4988-bf72-16d86bb5c863}, !- Handle + Surface 459, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {f570382a-efd5-4ffc-8095-a7bced243c99}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.99353483729023, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.27373675443232e-13, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 2.27373675443232e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.99353483729023, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d05f51ee-8bfa-4ccb-ad79-4b8022f26133}, !- Handle + Surface 460, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {f570382a-efd5-4ffc-8095-a7bced243c99}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.99353483729023, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.99353483729023, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 2.27373675443232e-13, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + 2.27373675443232e-13, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {e86f14e3-2ca0-46d7-8cac-00671ce7b181}, !- Handle + Zone Outpatient Lobby A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {24ab798d-4ba6-47ca-960f-4dbfe7ac0b2b}, !- Zone Air Inlet Port List + {0e0d0360-93f5-4eec-9cf7-7d0e9bb4dc49}, !- Zone Air Exhaust Port List + {27ac219e-b80b-4039-b116-f93a6389f278}, !- Zone Air Node Name + {1005c53e-9164-483b-b4f2-82ad622cd263}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {fbe344e8-fca4-41b8-a2f4-d288bfb2744b}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {38bbac05-7cd3-4db4-a670-c70bf8f66fdc}, !- Handle + Zone Outpatient Lobby A - Story ground Zone Air Node, !- Name + {27ac219e-b80b-4039-b116-f93a6389f278}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {27ac219e-b80b-4039-b116-f93a6389f278}, !- Handle + {e86f14e3-2ca0-46d7-8cac-00671ce7b181}, !- Source Object + 11, !- Outlet Port + {38bbac05-7cd3-4db4-a670-c70bf8f66fdc}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {24ab798d-4ba6-47ca-960f-4dbfe7ac0b2b}, !- Handle + {e86f14e3-2ca0-46d7-8cac-00671ce7b181}, !- HVAC Component + {35feb845-47cf-4146-b365-e0ec40b542f7}, !- Port 1 + {8e8047d7-db00-4d72-9ecc-269975d04296}; !- Port 2 + +OS:PortList, + {0e0d0360-93f5-4eec-9cf7-7d0e9bb4dc49}, !- Handle + {e86f14e3-2ca0-46d7-8cac-00671ce7b181}, !- HVAC Component + {e5a610d1-518b-4ed3-9217-7c518a278311}; !- Port 1 + +OS:PortList, + {1005c53e-9164-483b-b4f2-82ad622cd263}, !- Handle + {e86f14e3-2ca0-46d7-8cac-00671ce7b181}, !- HVAC Component + {b093e06d-2248-41b1-936e-6289f8413ca4}; !- Port 1 + +OS:Sizing:Zone, + {9bcb8330-6952-4263-a8e2-5efd53943636}, !- Handle + {e86f14e3-2ca0-46d7-8cac-00671ce7b181}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {495c4ed8-441f-49b3-a07f-6a8f1620bfa2}, !- Handle + Zone Outpatient Lobby A - Story ground Zone HVAC Equipment List, !- Name + {e86f14e3-2ca0-46d7-8cac-00671ce7b181}, !- Thermal Zone + , !- Load Distribution Scheme + {dfe38005-fa45-4277-93cc-b5180509d052}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {ebfaa2ca-4696-4505-bc63-d80cbe201540}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {d3f79dfc-ca78-4655-aa3a-f66a7561e7d8}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {a4173c7d-eca7-44b7-8385-830bbb449064}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {719f24d0-9546-4147-bd02-4973e1da1b1b}, !- Handle + Outpatient Lobby B - Story ground, !- Name + {830595d2-f1c6-4a4f-adab-f4229419a49b}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 108.982148379535, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {f9062d70-17da-4638-9140-bcdd7c787667}; !- Thermal Zone Name + +OS:Surface, + {0d671e4b-7ba3-4015-b82b-7bdb36f4649a}, !- Handle + Surface 461, !- Name + Floor, !- Surface Type + {82a2bb8c-4133-4c08-bcc1-ea7920293a50}, !- Construction Name + {719f24d0-9546-4147-bd02-4973e1da1b1b}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.27373675443232e-13, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + 2.27373675443232e-13, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 2.99353483729023, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 2.99353483729023, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0ec9e0c3-42f8-49d5-bf1e-2a21d5bbba3f}, !- Handle + Surface 462, !- Name + Wall, !- Surface Type + , !- Construction Name + {719f24d0-9546-4147-bd02-4973e1da1b1b}, !- Space Name + Surface, !- Outside Boundary Condition + {a288c811-e86e-4c62-b6fb-068e8b472295}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.70530256582424e-13, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + -1.70530256582424e-13, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + -1.70530256582424e-13, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + -1.70530256582424e-13, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {69d18445-e0e6-4e71-9710-24996768e674}, !- Handle + Surface 463, !- Name + Wall, !- Surface Type + , !- Construction Name + {719f24d0-9546-4147-bd02-4973e1da1b1b}, !- Space Name + Surface, !- Outside Boundary Condition + {cf90b94d-42a0-4db4-a369-53f31c6b6453}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.99353483729023, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 2.99353483729023, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + 2.27373675443232e-13, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + 2.27373675443232e-13, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7b465ad6-a866-49ce-b1f8-a7035a6dc9fb}, !- Handle + Surface 464, !- Name + Wall, !- Surface Type + , !- Construction Name + {719f24d0-9546-4147-bd02-4973e1da1b1b}, !- Space Name + Surface, !- Outside Boundary Condition + {9711b022-3c3c-4734-b579-88d1ebd6d872}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.99353483729023, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.99353483729023, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 2.99353483729023, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 2.99353483729023, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2317fa86-02f4-44b3-97ae-a322af106df3}, !- Handle + Surface 465, !- Name + Wall, !- Surface Type + , !- Construction Name + {719f24d0-9546-4147-bd02-4973e1da1b1b}, !- Space Name + Surface, !- Outside Boundary Condition + {9ef9cd18-8201-4f8e-83ef-bf87829bffd3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.27373675443232e-13, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.27373675443232e-13, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 2.99353483729023, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.99353483729023, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {6764f002-912d-4636-8d48-4a6642c74585}, !- Handle + Surface 466, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {719f24d0-9546-4147-bd02-4973e1da1b1b}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.99353483729023, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.99353483729023, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + 2.27373675443232e-13, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + 2.27373675443232e-13, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {f9062d70-17da-4638-9140-bcdd7c787667}, !- Handle + Zone Outpatient Lobby B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {f52a2963-36bd-4ac8-a7c1-8fcca792a838}, !- Zone Air Inlet Port List + {02dfd0e4-975b-4cc3-bf87-00da2f558ada}, !- Zone Air Exhaust Port List + {e76b1ec3-024b-434f-9e61-a23e61ba6f57}, !- Zone Air Node Name + {a7772196-586b-47de-a823-af81661d8cea}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {aba38e87-4507-4ce1-9bd8-67b7c5f101e7}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {381d3f58-6106-4c0c-bbfc-c027f46ec819}, !- Handle + Zone Outpatient Lobby B - Story ground Zone Air Node, !- Name + {e76b1ec3-024b-434f-9e61-a23e61ba6f57}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {e76b1ec3-024b-434f-9e61-a23e61ba6f57}, !- Handle + {f9062d70-17da-4638-9140-bcdd7c787667}, !- Source Object + 11, !- Outlet Port + {381d3f58-6106-4c0c-bbfc-c027f46ec819}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {f52a2963-36bd-4ac8-a7c1-8fcca792a838}, !- Handle + {f9062d70-17da-4638-9140-bcdd7c787667}, !- HVAC Component + {ddf2fa6c-6e8d-42c9-9f8c-27a6efff1324}, !- Port 1 + {932d5586-cec3-4328-96ba-5d806a03d995}; !- Port 2 + +OS:PortList, + {02dfd0e4-975b-4cc3-bf87-00da2f558ada}, !- Handle + {f9062d70-17da-4638-9140-bcdd7c787667}, !- HVAC Component + {bc56d3c7-580d-4038-8a91-f69ce8bddbae}; !- Port 1 + +OS:PortList, + {a7772196-586b-47de-a823-af81661d8cea}, !- Handle + {f9062d70-17da-4638-9140-bcdd7c787667}, !- HVAC Component + {4460052e-f73c-4406-bf07-6f1d95cab3bf}; !- Port 1 + +OS:Sizing:Zone, + {2ed00e0e-4a61-40f4-9c23-48f663e9f5fa}, !- Handle + {f9062d70-17da-4638-9140-bcdd7c787667}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {568fa024-168d-4c9f-8927-5d4135f4b833}, !- Handle + Zone Outpatient Lobby B - Story ground Zone HVAC Equipment List, !- Name + {f9062d70-17da-4638-9140-bcdd7c787667}, !- Thermal Zone + , !- Load Distribution Scheme + {517f94db-3611-48f2-bb1b-0452a40e914a}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {85e709c4-c6b1-4c92-a1a7-decc397de56f}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {e478ab5f-1105-4edd-bcfc-531b5f350e2b}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {cc8f4361-a382-4578-b0db-fbc3eac54fe8}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {0cce8e12-d645-4d9a-90fc-367c2d118d54}, !- Handle + Outpatient Lobby C - Story ground, !- Name + {830595d2-f1c6-4a4f-adab-f4229419a49b}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 108.982148379535, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {637a63ab-461c-4a24-acea-351f5ae888e8}; !- Thermal Zone Name + +OS:Surface, + {9aa21d56-5fec-4f16-8318-d351e14bfcd1}, !- Handle + Surface 467, !- Name + Floor, !- Surface Type + {3f927850-9caf-4662-804c-e57617380ed7}, !- Construction Name + {0cce8e12-d645-4d9a-90fc-367c2d118d54}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.27373675443232e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + 2.27373675443232e-13, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 2.99353483729023, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 2.99353483729023, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {6aac4f91-e560-4282-9cc1-e8beb92459c3}, !- Handle + Surface 468, !- Name + Wall, !- Surface Type + , !- Construction Name + {0cce8e12-d645-4d9a-90fc-367c2d118d54}, !- Space Name + Surface, !- Outside Boundary Condition + {ba59f777-8e8c-4e50-854c-5afa3e1c73b7}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.70530256582424e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + -1.70530256582424e-13, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + -1.70530256582424e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + -1.70530256582424e-13, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {247e192e-6bbd-449c-8411-ce520a209c9f}, !- Handle + Surface 469, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {0cce8e12-d645-4d9a-90fc-367c2d118d54}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.27373675443232e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 2.99353483729023, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 2.99353483729023, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 2.27373675443232e-13, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0058b1db-da4e-4bcd-b4e3-00e99ff07a8d}, !- Handle + Surface 470, !- Name + Wall, !- Surface Type + , !- Construction Name + {0cce8e12-d645-4d9a-90fc-367c2d118d54}, !- Space Name + Surface, !- Outside Boundary Condition + {8dec268a-a449-4ad9-883e-b4606caefafb}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.99353483729023, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 2.99353483729023, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 2.99353483729023, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 2.99353483729023, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {cf90b94d-42a0-4db4-a369-53f31c6b6453}, !- Handle + Surface 471, !- Name + Wall, !- Surface Type + , !- Construction Name + {0cce8e12-d645-4d9a-90fc-367c2d118d54}, !- Space Name + Surface, !- Outside Boundary Condition + {69d18445-e0e6-4e71-9710-24996768e674}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.27373675443232e-13, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 2.27373675443232e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 2.99353483729023, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 2.99353483729023, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a8509a8b-aa7f-4c19-a05b-c9974d1cdef0}, !- Handle + Surface 472, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {0cce8e12-d645-4d9a-90fc-367c2d118d54}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.99353483729023, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 2.99353483729023, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 2.27373675443232e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + 2.27373675443232e-13, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {637a63ab-461c-4a24-acea-351f5ae888e8}, !- Handle + Zone Outpatient Lobby C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {7d51cc16-b194-497f-8910-058d8ba8d1fd}, !- Zone Air Inlet Port List + {8a3eec05-ce0c-46cc-acd6-2a3545003d2e}, !- Zone Air Exhaust Port List + {2d92a70a-3fbe-456c-9276-4a7ca1b01708}, !- Zone Air Node Name + {760d5106-074d-4951-a889-a181c73fa583}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {30b6af39-232b-40d0-92aa-e355a022946c}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {77970eb9-b163-4232-bcc0-de9a6aa6bb4a}, !- Handle + Zone Outpatient Lobby C - Story ground Zone Air Node, !- Name + {2d92a70a-3fbe-456c-9276-4a7ca1b01708}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {2d92a70a-3fbe-456c-9276-4a7ca1b01708}, !- Handle + {637a63ab-461c-4a24-acea-351f5ae888e8}, !- Source Object + 11, !- Outlet Port + {77970eb9-b163-4232-bcc0-de9a6aa6bb4a}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {7d51cc16-b194-497f-8910-058d8ba8d1fd}, !- Handle + {637a63ab-461c-4a24-acea-351f5ae888e8}, !- HVAC Component + {1ad2b0a2-46a4-412e-a140-42922fdb3d29}, !- Port 1 + {e788f2d7-f3ce-407e-8125-60a9cb2611a3}; !- Port 2 + +OS:PortList, + {8a3eec05-ce0c-46cc-acd6-2a3545003d2e}, !- Handle + {637a63ab-461c-4a24-acea-351f5ae888e8}, !- HVAC Component + {b47e5d9c-44c4-41a3-a360-e94dc1d3a6ff}; !- Port 1 + +OS:PortList, + {760d5106-074d-4951-a889-a181c73fa583}, !- Handle + {637a63ab-461c-4a24-acea-351f5ae888e8}, !- HVAC Component + {702bb8a7-f0af-4de8-83b2-700e11e32672}; !- Port 1 + +OS:Sizing:Zone, + {66c7f384-bb10-4db4-971e-4739b02c0ee5}, !- Handle + {637a63ab-461c-4a24-acea-351f5ae888e8}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {86dc8a1d-6dd6-4cb0-acb7-aac710ff6c3f}, !- Handle + Zone Outpatient Lobby C - Story ground Zone HVAC Equipment List, !- Name + {637a63ab-461c-4a24-acea-351f5ae888e8}, !- Thermal Zone + , !- Load Distribution Scheme + {1780bfb0-73d1-458d-b470-0d9b83a6a996}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {463054bf-cff9-4973-b8c7-3d2507b51ce8}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {b558cbb2-3d58-457d-a9ee-cc121fbbaef9}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {3016a937-e497-46e0-b3d6-714a4fa45465}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {cb45a6dc-735c-46cc-b8e6-22caaa1477d8}, !- Handle + Outpatient NurseStation A - Story ground, !- Name + {5b09c434-c361-4e51-b3be-21b2f3d26cc3}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 111.975683216825, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {eff73ef0-6b71-4825-acfc-8deb59ae8b28}; !- Thermal Zone Name + +OS:Surface, + {dafb1a89-d069-4e0d-b00b-7d1fbb2cfd4f}, !- Handle + Surface 473, !- Name + Floor, !- Surface Type + {606b7261-3ded-4508-8c2a-7c813bb6d5a8}, !- Construction Name + {cb45a6dc-735c-46cc-b8e6-22caaa1477d8}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.27373675443232e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + 2.27373675443232e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 3.72222423847222, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 3.72222423847222, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3dca80a2-c9da-469d-8f67-7fdc803838e2}, !- Handle + Surface 474, !- Name + Wall, !- Surface Type + , !- Construction Name + {cb45a6dc-735c-46cc-b8e6-22caaa1477d8}, !- Space Name + Surface, !- Outside Boundary Condition + {24891c60-b65f-4b32-b86e-4e8b5caada03}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.27373675443232e-13, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 2.27373675443232e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 2.27373675443232e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.27373675443232e-13, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {76ce7009-0c09-42a2-ae5a-d5dd9bbbf72f}, !- Handle + Surface 475, !- Name + Wall, !- Surface Type + , !- Construction Name + {cb45a6dc-735c-46cc-b8e6-22caaa1477d8}, !- Space Name + Surface, !- Outside Boundary Condition + {2db0cdc4-929f-4539-b511-6c2801d28648}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.72222423847222, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 3.72222423847222, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 2.27373675443232e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 2.27373675443232e-13, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ec307bc9-e549-4125-89e9-7d8c2cd3c220}, !- Handle + Surface 476, !- Name + Wall, !- Surface Type + , !- Construction Name + {cb45a6dc-735c-46cc-b8e6-22caaa1477d8}, !- Space Name + Surface, !- Outside Boundary Condition + {608370d4-7ba9-4c85-a527-7d16a53cb0f0}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.72222423847222, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 3.72222423847222, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 3.72222423847222, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 3.72222423847222, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {10d85641-f5b3-4322-8b93-5606c856dedf}, !- Handle + Surface 477, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {cb45a6dc-735c-46cc-b8e6-22caaa1477d8}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.72222423847222, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.27373675443232e-13, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 2.27373675443232e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 3.72222423847222, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a89c43c4-003f-4b5a-aea2-4f3d0f59ae5c}, !- Handle + Surface 478, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {cb45a6dc-735c-46cc-b8e6-22caaa1477d8}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.72222423847222, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 3.72222423847222, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 2.27373675443232e-13, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + 2.27373675443232e-13, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {eff73ef0-6b71-4825-acfc-8deb59ae8b28}, !- Handle + Zone Outpatient NurseStation A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {f757f7cb-b151-434a-81df-7fff919b5450}, !- Zone Air Inlet Port List + {ffaec863-a539-409a-8408-eeb1ebca06e7}, !- Zone Air Exhaust Port List + {537646cd-5427-4146-8bab-67a91649a062}, !- Zone Air Node Name + {d113988c-9cdc-47ec-9ae1-a8befb1eacc0}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {e49282a5-1993-45d8-ad0c-dc98accfe0b0}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {ce89f8e8-d024-42cf-aa2f-9468f0122682}, !- Handle + Zone Outpatient NurseStation A - Story ground Zone Air Node, !- Name + {537646cd-5427-4146-8bab-67a91649a062}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {537646cd-5427-4146-8bab-67a91649a062}, !- Handle + {eff73ef0-6b71-4825-acfc-8deb59ae8b28}, !- Source Object + 11, !- Outlet Port + {ce89f8e8-d024-42cf-aa2f-9468f0122682}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {f757f7cb-b151-434a-81df-7fff919b5450}, !- Handle + {eff73ef0-6b71-4825-acfc-8deb59ae8b28}, !- HVAC Component + {3a57e031-ccfd-430d-b82c-a1d56ceb4ff4}, !- Port 1 + {73754a26-a668-47d3-900c-88cfd9cba560}; !- Port 2 + +OS:PortList, + {ffaec863-a539-409a-8408-eeb1ebca06e7}, !- Handle + {eff73ef0-6b71-4825-acfc-8deb59ae8b28}, !- HVAC Component + {deee39d8-0aba-4e0d-b439-e0ddfeddcec4}; !- Port 1 + +OS:PortList, + {d113988c-9cdc-47ec-9ae1-a8befb1eacc0}, !- Handle + {eff73ef0-6b71-4825-acfc-8deb59ae8b28}, !- HVAC Component + {63ec979e-77cf-4c73-9028-962b84bc5f84}; !- Port 1 + +OS:Sizing:Zone, + {15e92cd7-5296-4167-831d-63279768d711}, !- Handle + {eff73ef0-6b71-4825-acfc-8deb59ae8b28}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {c2aa33ee-ebd4-492e-a4df-db751f10ab65}, !- Handle + Zone Outpatient NurseStation A - Story ground Zone HVAC Equipment List, !- Name + {eff73ef0-6b71-4825-acfc-8deb59ae8b28}, !- Thermal Zone + , !- Load Distribution Scheme + {42e86628-dcfb-4cab-9dcc-e0008564aeb9}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {ec85ec08-7066-46b2-9f9c-374c0da463ee}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {63dd2413-e628-425a-b77f-cc562ecb847e}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {342d4d88-b00f-4861-87f9-13a7736782cd}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {ab75327c-5484-46da-a711-cf7dce5c0aab}, !- Handle + Outpatient NurseStation B - Story ground, !- Name + {5b09c434-c361-4e51-b3be-21b2f3d26cc3}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 111.975683216825, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {ddffb562-9247-4e4d-a4b4-e5f8f7e7dd2d}; !- Thermal Zone Name + +OS:Surface, + {f7a63011-fff4-4311-bceb-554545dbe658}, !- Handle + Surface 479, !- Name + Floor, !- Surface Type + {0069fbd3-9b29-4404-b5cd-ad88cf27c86f}, !- Construction Name + {ab75327c-5484-46da-a711-cf7dce5c0aab}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.27373675443232e-13, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + 2.27373675443232e-13, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 3.72222423847222, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 3.72222423847222, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9711b022-3c3c-4734-b579-88d1ebd6d872}, !- Handle + Surface 480, !- Name + Wall, !- Surface Type + , !- Construction Name + {ab75327c-5484-46da-a711-cf7dce5c0aab}, !- Space Name + Surface, !- Outside Boundary Condition + {7b465ad6-a866-49ce-b1f8-a7035a6dc9fb}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.27373675443232e-13, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + 2.27373675443232e-13, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 2.27373675443232e-13, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.27373675443232e-13, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8b9f7455-2f03-4a93-99be-921154e56063}, !- Handle + Surface 481, !- Name + Wall, !- Surface Type + , !- Construction Name + {ab75327c-5484-46da-a711-cf7dce5c0aab}, !- Space Name + Surface, !- Outside Boundary Condition + {e4cce233-5dcc-45fb-a2d3-610413fb2eb1}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.72222423847222, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 3.72222423847222, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + 2.27373675443232e-13, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + 2.27373675443232e-13, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7aa94962-3b67-4b36-be1b-df28c63a6d37}, !- Handle + Surface 482, !- Name + Wall, !- Surface Type + , !- Construction Name + {ab75327c-5484-46da-a711-cf7dce5c0aab}, !- Space Name + Surface, !- Outside Boundary Condition + {0533c79b-26d2-4880-ba10-0c44e27646df}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.72222423847222, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 3.72222423847222, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 3.72222423847222, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 3.72222423847222, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2db0cdc4-929f-4539-b511-6c2801d28648}, !- Handle + Surface 483, !- Name + Wall, !- Surface Type + , !- Construction Name + {ab75327c-5484-46da-a711-cf7dce5c0aab}, !- Space Name + Surface, !- Outside Boundary Condition + {76ce7009-0c09-42a2-ae5a-d5dd9bbbf72f}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.27373675443232e-13, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.27373675443232e-13, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 3.72222423847222, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 3.72222423847222, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {298883ec-8fdc-45be-819c-a1e3c5a881ce}, !- Handle + Surface 484, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {ab75327c-5484-46da-a711-cf7dce5c0aab}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.72222423847222, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 3.72222423847222, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + 2.27373675443232e-13, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + 2.27373675443232e-13, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {ddffb562-9247-4e4d-a4b4-e5f8f7e7dd2d}, !- Handle + Zone Outpatient NurseStation B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {f06d42b8-4050-4cf2-8ac4-759a8a4e0f3c}, !- Zone Air Inlet Port List + {5c635f8b-883e-444c-8ab1-fd5b6ec0bc3f}, !- Zone Air Exhaust Port List + {b54cf522-d1dc-4658-92fc-9fd32720a85c}, !- Zone Air Node Name + {0ce83ae5-0643-476f-a462-68a6a62b52a3}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {ee285fb4-2cf9-441e-844f-19ceab5c9634}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {dc0ff93b-a2ae-43e7-900e-f03a9dc4e993}, !- Handle + Zone Outpatient NurseStation B - Story ground Zone Air Node, !- Name + {b54cf522-d1dc-4658-92fc-9fd32720a85c}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {b54cf522-d1dc-4658-92fc-9fd32720a85c}, !- Handle + {ddffb562-9247-4e4d-a4b4-e5f8f7e7dd2d}, !- Source Object + 11, !- Outlet Port + {dc0ff93b-a2ae-43e7-900e-f03a9dc4e993}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {f06d42b8-4050-4cf2-8ac4-759a8a4e0f3c}, !- Handle + {ddffb562-9247-4e4d-a4b4-e5f8f7e7dd2d}, !- HVAC Component + {c7819b3c-10ba-4c54-b1af-a034b705eb5c}, !- Port 1 + {48f0751d-8eb2-49dd-b6d1-809c26f53f3f}; !- Port 2 + +OS:PortList, + {5c635f8b-883e-444c-8ab1-fd5b6ec0bc3f}, !- Handle + {ddffb562-9247-4e4d-a4b4-e5f8f7e7dd2d}, !- HVAC Component + {48614288-0a9c-4426-a47d-b66ed4f9c9c9}; !- Port 1 + +OS:PortList, + {0ce83ae5-0643-476f-a462-68a6a62b52a3}, !- Handle + {ddffb562-9247-4e4d-a4b4-e5f8f7e7dd2d}, !- HVAC Component + {48cb1727-f0f6-4d5d-b2c7-edc2bfd06c8c}; !- Port 1 + +OS:Sizing:Zone, + {bbee0ad4-e15e-4e57-a7c5-8800eb28ca7c}, !- Handle + {ddffb562-9247-4e4d-a4b4-e5f8f7e7dd2d}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {f04e9256-68a0-4e80-9bb6-1f7b6d614bd5}, !- Handle + Zone Outpatient NurseStation B - Story ground Zone HVAC Equipment List, !- Name + {ddffb562-9247-4e4d-a4b4-e5f8f7e7dd2d}, !- Thermal Zone + , !- Load Distribution Scheme + {74593b2c-1122-41c4-959d-ac67b6cb3448}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {773811c0-7d79-4ffa-8049-f6bf5a2419bc}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {332cd2b4-ae39-4fdd-8b91-1ac66176d41f}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {320404b5-cb58-404b-b397-9e17fc635604}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {f3b05715-ee07-48d2-aa80-78bac9b77fe5}, !- Handle + Outpatient NurseStation C - Story ground, !- Name + {5b09c434-c361-4e51-b3be-21b2f3d26cc3}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 111.975683216825, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {e54ef26e-0c98-4827-b9c5-58aacc715cea}; !- Thermal Zone Name + +OS:Surface, + {1210abb6-0926-4cd1-ae1d-9050277c3a38}, !- Handle + Surface 485, !- Name + Floor, !- Surface Type + {606b7261-3ded-4508-8c2a-7c813bb6d5a8}, !- Construction Name + {f3b05715-ee07-48d2-aa80-78bac9b77fe5}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.27373675443232e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + 2.27373675443232e-13, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 3.72222423847222, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 3.72222423847222, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8dec268a-a449-4ad9-883e-b4606caefafb}, !- Handle + Surface 486, !- Name + Wall, !- Surface Type + , !- Construction Name + {f3b05715-ee07-48d2-aa80-78bac9b77fe5}, !- Space Name + Surface, !- Outside Boundary Condition + {0058b1db-da4e-4bcd-b4e3-00e99ff07a8d}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.27373675443232e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 2.27373675443232e-13, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 2.27373675443232e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 2.27373675443232e-13, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {17661622-aec1-49f7-868b-1066a3c16242}, !- Handle + Surface 487, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {f3b05715-ee07-48d2-aa80-78bac9b77fe5}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.27373675443232e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 3.72222423847222, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 3.72222423847222, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 2.27373675443232e-13, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2872c74e-81ea-49b2-a89c-9ed65128fefa}, !- Handle + Surface 488, !- Name + Wall, !- Surface Type + , !- Construction Name + {f3b05715-ee07-48d2-aa80-78bac9b77fe5}, !- Space Name + Surface, !- Outside Boundary Condition + {7faeadaf-d77a-4419-b098-3fedb506e0b3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.72222423847222, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 3.72222423847222, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 3.72222423847222, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 3.72222423847222, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {e4cce233-5dcc-45fb-a2d3-610413fb2eb1}, !- Handle + Surface 489, !- Name + Wall, !- Surface Type + , !- Construction Name + {f3b05715-ee07-48d2-aa80-78bac9b77fe5}, !- Space Name + Surface, !- Outside Boundary Condition + {8b9f7455-2f03-4a93-99be-921154e56063}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.27373675443232e-13, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 2.27373675443232e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 3.72222423847222, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 3.72222423847222, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b25283d0-9ffe-4075-98d3-e2a649646192}, !- Handle + Surface 490, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {f3b05715-ee07-48d2-aa80-78bac9b77fe5}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.72222423847222, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 3.72222423847222, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 2.27373675443232e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + 2.27373675443232e-13, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {e54ef26e-0c98-4827-b9c5-58aacc715cea}, !- Handle + Zone Outpatient NurseStation C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {ac1415c3-3b1f-4c31-be87-1ed1367278fb}, !- Zone Air Inlet Port List + {4f9c6ae1-2371-4685-9dfd-2647c49daf77}, !- Zone Air Exhaust Port List + {36ccd897-cf59-4442-a0e4-204b716cc761}, !- Zone Air Node Name + {67d31c4e-90cb-4abb-8067-70cd58797f63}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {2b99f9a8-b990-4140-bde0-aa8fdfc58812}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {5f318706-4c6a-413e-a3e8-19abe32a1437}, !- Handle + Zone Outpatient NurseStation C - Story ground Zone Air Node, !- Name + {36ccd897-cf59-4442-a0e4-204b716cc761}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {36ccd897-cf59-4442-a0e4-204b716cc761}, !- Handle + {e54ef26e-0c98-4827-b9c5-58aacc715cea}, !- Source Object + 11, !- Outlet Port + {5f318706-4c6a-413e-a3e8-19abe32a1437}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {ac1415c3-3b1f-4c31-be87-1ed1367278fb}, !- Handle + {e54ef26e-0c98-4827-b9c5-58aacc715cea}, !- HVAC Component + {fdc18125-3378-4a8a-9c33-3150f1b96971}, !- Port 1 + {9b026e00-47da-4d8e-b7e2-cef99a136402}; !- Port 2 + +OS:PortList, + {4f9c6ae1-2371-4685-9dfd-2647c49daf77}, !- Handle + {e54ef26e-0c98-4827-b9c5-58aacc715cea}, !- HVAC Component + {f3734de4-e7f0-4789-8e0d-e310b0b08392}; !- Port 1 + +OS:PortList, + {67d31c4e-90cb-4abb-8067-70cd58797f63}, !- Handle + {e54ef26e-0c98-4827-b9c5-58aacc715cea}, !- HVAC Component + {fea64925-a3cd-4cb6-80bc-bf4898f5d083}; !- Port 1 + +OS:Sizing:Zone, + {1af00d0c-f7c8-451b-9a4c-d57c8ea9d6ee}, !- Handle + {e54ef26e-0c98-4827-b9c5-58aacc715cea}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {13b5c159-d03d-4dc1-9672-af1d77b8f122}, !- Handle + Zone Outpatient NurseStation C - Story ground Zone HVAC Equipment List, !- Name + {e54ef26e-0c98-4827-b9c5-58aacc715cea}, !- Thermal Zone + , !- Load Distribution Scheme + {785a98a8-9389-4e2e-81ea-209773c1c3f2}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {2b0f35b9-08b0-4862-8cd4-50fb5473d589}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {c8b4b7c7-4178-4da7-a8ae-955fd9467315}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {5c61002f-d46c-4029-a99d-698ab662b150}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {a3cca4ed-380e-434b-93d2-1ea31beea562}, !- Handle + Outpatient LockerRoom A - Story ground, !- Name + {55e9e53a-8be5-42d7-b81b-a3ad93018a1a}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 115.697907455297, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {292fdede-bc28-438f-8986-ff524eb44d3b}; !- Thermal Zone Name + +OS:Surface, + {cf77425f-a98b-4996-8b11-46e123bd7678}, !- Handle + Surface 491, !- Name + Floor, !- Surface Type + {97be2684-41a1-453c-a5f2-b038092ae764}, !- Construction Name + {a3cca4ed-380e-434b-93d2-1ea31beea562}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.1316282072803e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + -2.1316282072803e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 3.74191854661279, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 3.74191854661279, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {608370d4-7ba9-4c85-a527-7d16a53cb0f0}, !- Handle + Surface 492, !- Name + Wall, !- Surface Type + , !- Construction Name + {a3cca4ed-380e-434b-93d2-1ea31beea562}, !- Space Name + Surface, !- Outside Boundary Condition + {ec307bc9-e549-4125-89e9-7d8c2cd3c220}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.27373675443232e-13, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 2.27373675443232e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 2.27373675443232e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.27373675443232e-13, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {939ca570-33f6-4d0f-8654-b147a14907ca}, !- Handle + Surface 493, !- Name + Wall, !- Surface Type + , !- Construction Name + {a3cca4ed-380e-434b-93d2-1ea31beea562}, !- Space Name + Surface, !- Outside Boundary Condition + {90ef43ed-c747-4adf-b440-69eb2d6c0515}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.74191854661279, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 3.74191854661279, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + -2.1316282072803e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + -2.1316282072803e-13, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8c4ddb66-3236-4c78-999c-0bc8c9579fc3}, !- Handle + Surface 494, !- Name + Wall, !- Surface Type + , !- Construction Name + {a3cca4ed-380e-434b-93d2-1ea31beea562}, !- Space Name + Surface, !- Outside Boundary Condition + {8fdc269d-2a62-4feb-a992-e384080bc1bb}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.74191854661279, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 3.74191854661279, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 3.74191854661279, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 3.74191854661279, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5372e299-aa49-4a83-b281-e18316369bf2}, !- Handle + Surface 495, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {a3cca4ed-380e-434b-93d2-1ea31beea562}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.74191854661279, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -2.1316282072803e-13, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + -2.1316282072803e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 3.74191854661279, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {24b6f72b-9afd-4ee6-a9c2-df49e5ea1f00}, !- Handle + Surface 496, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {a3cca4ed-380e-434b-93d2-1ea31beea562}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.74191854661279, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 3.74191854661279, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + -2.1316282072803e-13, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + -2.1316282072803e-13, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {292fdede-bc28-438f-8986-ff524eb44d3b}, !- Handle + Zone Outpatient LockerRoom A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {65568e6d-ea84-4a3b-a2d1-d1d8a373b253}, !- Zone Air Inlet Port List + {f33f21ef-4e74-4903-8eda-0ee5647c489d}, !- Zone Air Exhaust Port List + {d8a5e2e4-f9ae-474f-ac00-55697834f8b3}, !- Zone Air Node Name + {25915c9f-85a2-4a82-80d7-a91c73cb00d5}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {656f3547-a815-4f61-8eb0-e809cd18cc05}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {a9fd8059-06fb-46e5-902b-a4a93ee0eee5}, !- Handle + Zone Outpatient LockerRoom A - Story ground Zone Air Node, !- Name + {d8a5e2e4-f9ae-474f-ac00-55697834f8b3}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {d8a5e2e4-f9ae-474f-ac00-55697834f8b3}, !- Handle + {292fdede-bc28-438f-8986-ff524eb44d3b}, !- Source Object + 11, !- Outlet Port + {a9fd8059-06fb-46e5-902b-a4a93ee0eee5}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {65568e6d-ea84-4a3b-a2d1-d1d8a373b253}, !- Handle + {292fdede-bc28-438f-8986-ff524eb44d3b}, !- HVAC Component + {e5af7f88-2895-43e6-a282-f1447ef2d05c}, !- Port 1 + {92c764c3-982a-42f0-9821-dda891d3876c}; !- Port 2 + +OS:PortList, + {f33f21ef-4e74-4903-8eda-0ee5647c489d}, !- Handle + {292fdede-bc28-438f-8986-ff524eb44d3b}, !- HVAC Component + {8bc95fb4-8801-4deb-82b5-6d8662a6ca53}; !- Port 1 + +OS:PortList, + {25915c9f-85a2-4a82-80d7-a91c73cb00d5}, !- Handle + {292fdede-bc28-438f-8986-ff524eb44d3b}, !- HVAC Component + {dbfdb4d4-36ce-4224-940e-02f514707213}; !- Port 1 + +OS:Sizing:Zone, + {3b25cf4a-77e4-4d7b-8f82-e2fbc0e08f14}, !- Handle + {292fdede-bc28-438f-8986-ff524eb44d3b}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {28cdad77-bbb0-4d58-af44-8821d0099859}, !- Handle + Zone Outpatient LockerRoom A - Story ground Zone HVAC Equipment List, !- Name + {292fdede-bc28-438f-8986-ff524eb44d3b}, !- Thermal Zone + , !- Load Distribution Scheme + {bc17e8b8-6caa-44f8-ac2e-57af23d5e043}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {cab98441-05c4-48fb-81a9-0e42fd7f5b48}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {34cb2451-5dab-4f5e-8f3e-9b3b107bee30}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {2ab5197b-e987-4332-8279-7997628377b2}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {f1e219bc-e3b6-43a1-9fb1-1a607cb43320}, !- Handle + Outpatient LockerRoom B - Story ground, !- Name + {55e9e53a-8be5-42d7-b81b-a3ad93018a1a}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 115.697907455297, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {855675d5-8d6f-4a85-8c59-87f05aab2e8f}; !- Thermal Zone Name + +OS:Surface, + {f5e490c0-3515-4328-af95-468ca5f0c930}, !- Handle + Surface 497, !- Name + Floor, !- Surface Type + {999a18fa-5df2-4ebb-ae9e-e108c91edaa4}, !- Construction Name + {f1e219bc-e3b6-43a1-9fb1-1a607cb43320}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.1316282072803e-13, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + -2.1316282072803e-13, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 3.74191854661279, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 3.74191854661279, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {0533c79b-26d2-4880-ba10-0c44e27646df}, !- Handle + Surface 498, !- Name + Wall, !- Surface Type + , !- Construction Name + {f1e219bc-e3b6-43a1-9fb1-1a607cb43320}, !- Space Name + Surface, !- Outside Boundary Condition + {7aa94962-3b67-4b36-be1b-df28c63a6d37}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.27373675443232e-13, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + 2.27373675443232e-13, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 2.27373675443232e-13, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.27373675443232e-13, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f06a95df-6dc5-4092-b952-3ac1bb9a44a8}, !- Handle + Surface 499, !- Name + Wall, !- Surface Type + , !- Construction Name + {f1e219bc-e3b6-43a1-9fb1-1a607cb43320}, !- Space Name + Surface, !- Outside Boundary Condition + {c248cb6e-9683-48a5-abf8-4a12ba960fc6}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.74191854661279, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 3.74191854661279, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + -2.1316282072803e-13, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + -2.1316282072803e-13, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {cbef51fb-6850-427c-b83a-7d1ea4d4ac85}, !- Handle + Surface 500, !- Name + Wall, !- Surface Type + , !- Construction Name + {f1e219bc-e3b6-43a1-9fb1-1a607cb43320}, !- Space Name + Surface, !- Outside Boundary Condition + {5588d7d6-ae3a-4c23-947a-4347090b66dd}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.74191854661279, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 3.74191854661279, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 3.74191854661279, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 3.74191854661279, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {90ef43ed-c747-4adf-b440-69eb2d6c0515}, !- Handle + Surface 501, !- Name + Wall, !- Surface Type + , !- Construction Name + {f1e219bc-e3b6-43a1-9fb1-1a607cb43320}, !- Space Name + Surface, !- Outside Boundary Condition + {939ca570-33f6-4d0f-8654-b147a14907ca}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.1316282072803e-13, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -2.1316282072803e-13, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 3.74191854661279, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 3.74191854661279, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {aa55b471-9f0c-4774-a506-82e5f6c1b4bd}, !- Handle + Surface 502, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {f1e219bc-e3b6-43a1-9fb1-1a607cb43320}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.74191854661279, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 3.74191854661279, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + -2.1316282072803e-13, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + -2.1316282072803e-13, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {855675d5-8d6f-4a85-8c59-87f05aab2e8f}, !- Handle + Zone Outpatient LockerRoom B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {576d2b51-93ec-4228-b20f-ec9d4391049a}, !- Zone Air Inlet Port List + {b662991b-b45d-4c0e-a8ef-4499bd6f5cbc}, !- Zone Air Exhaust Port List + {f347058a-838c-495c-ba47-414cf1ff0b36}, !- Zone Air Node Name + {d47d74e3-b779-4120-94d7-71aed0aac4b7}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {014eb179-ca47-4f48-b95e-23b81c28c097}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {f3574184-bc0d-4d00-8c45-8064045a9e7f}, !- Handle + Zone Outpatient LockerRoom B - Story ground Zone Air Node, !- Name + {f347058a-838c-495c-ba47-414cf1ff0b36}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {f347058a-838c-495c-ba47-414cf1ff0b36}, !- Handle + {855675d5-8d6f-4a85-8c59-87f05aab2e8f}, !- Source Object + 11, !- Outlet Port + {f3574184-bc0d-4d00-8c45-8064045a9e7f}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {576d2b51-93ec-4228-b20f-ec9d4391049a}, !- Handle + {855675d5-8d6f-4a85-8c59-87f05aab2e8f}, !- HVAC Component + {6752dba8-0334-4e86-8883-d7e42a97bb35}, !- Port 1 + {e04bd5ed-6f15-4b5c-9499-14a3a954a54b}; !- Port 2 + +OS:PortList, + {b662991b-b45d-4c0e-a8ef-4499bd6f5cbc}, !- Handle + {855675d5-8d6f-4a85-8c59-87f05aab2e8f}, !- HVAC Component + {09aaf369-f730-4b8c-94e9-e8fee970684a}; !- Port 1 + +OS:PortList, + {d47d74e3-b779-4120-94d7-71aed0aac4b7}, !- Handle + {855675d5-8d6f-4a85-8c59-87f05aab2e8f}, !- HVAC Component + {831eecce-cd4c-43e0-8131-4ef7e0f82dda}; !- Port 1 + +OS:Sizing:Zone, + {13d238eb-8fd2-4e91-94b9-359399875e4e}, !- Handle + {855675d5-8d6f-4a85-8c59-87f05aab2e8f}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {5fb7830d-4c6d-4e5f-b733-35195260bb65}, !- Handle + Zone Outpatient LockerRoom B - Story ground Zone HVAC Equipment List, !- Name + {855675d5-8d6f-4a85-8c59-87f05aab2e8f}, !- Thermal Zone + , !- Load Distribution Scheme + {a5082f87-f1c4-4fbf-b5c4-0bc109e1f610}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {d8d8c339-37b1-40f2-ba02-b06252017956}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {78ace420-6632-4762-8b03-7365395b6ba7}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {dfc79d34-a55d-4c4b-9345-9177c366d810}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {699f0c0c-f25b-44a1-9cf1-d2ccf19386e7}, !- Handle + Outpatient LockerRoom C - Story ground, !- Name + {55e9e53a-8be5-42d7-b81b-a3ad93018a1a}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 115.697907455297, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {37545ef1-4fc7-4fe2-8285-35d888c86192}; !- Thermal Zone Name + +OS:Surface, + {bb337f64-7de4-49a5-b818-fe6bc4cce2e5}, !- Handle + Surface 503, !- Name + Floor, !- Surface Type + {97be2684-41a1-453c-a5f2-b038092ae764}, !- Construction Name + {699f0c0c-f25b-44a1-9cf1-d2ccf19386e7}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.1316282072803e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + -2.1316282072803e-13, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 3.74191854661279, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 3.74191854661279, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7faeadaf-d77a-4419-b098-3fedb506e0b3}, !- Handle + Surface 504, !- Name + Wall, !- Surface Type + , !- Construction Name + {699f0c0c-f25b-44a1-9cf1-d2ccf19386e7}, !- Space Name + Surface, !- Outside Boundary Condition + {2872c74e-81ea-49b2-a89c-9ed65128fefa}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.27373675443232e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 2.27373675443232e-13, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 2.27373675443232e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 2.27373675443232e-13, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b43ef40c-1942-4898-9058-aac388ba887e}, !- Handle + Surface 505, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {699f0c0c-f25b-44a1-9cf1-d2ccf19386e7}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.1316282072803e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 3.74191854661279, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 3.74191854661279, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + -2.1316282072803e-13, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ac8bed00-90ad-47e4-8e43-8dbd505c6953}, !- Handle + Surface 506, !- Name + Wall, !- Surface Type + , !- Construction Name + {699f0c0c-f25b-44a1-9cf1-d2ccf19386e7}, !- Space Name + Surface, !- Outside Boundary Condition + {b02323e3-16fd-4f66-9a50-50a77e74dd3e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.74191854661279, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 3.74191854661279, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 3.74191854661279, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 3.74191854661279, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {c248cb6e-9683-48a5-abf8-4a12ba960fc6}, !- Handle + Surface 507, !- Name + Wall, !- Surface Type + , !- Construction Name + {699f0c0c-f25b-44a1-9cf1-d2ccf19386e7}, !- Space Name + Surface, !- Outside Boundary Condition + {f06a95df-6dc5-4092-b952-3ac1bb9a44a8}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.1316282072803e-13, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + -2.1316282072803e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 3.74191854661279, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 3.74191854661279, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {714b1e8a-76f5-4bdf-aedc-4373364fbaea}, !- Handle + Surface 508, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {699f0c0c-f25b-44a1-9cf1-d2ccf19386e7}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.74191854661279, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 3.74191854661279, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + -2.1316282072803e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + -2.1316282072803e-13, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {37545ef1-4fc7-4fe2-8285-35d888c86192}, !- Handle + Zone Outpatient LockerRoom C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {6d0c473a-17d1-4cc3-ba14-cf971214fb23}, !- Zone Air Inlet Port List + {e30cdfd1-8fd8-47d2-9a0c-68070821fbfb}, !- Zone Air Exhaust Port List + {667e701d-9a02-4e47-ad20-f12d40fad676}, !- Zone Air Node Name + {3f30f278-397f-4263-a789-bd9e152def08}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {51b87ba8-a434-4bf6-bd42-e5796d4dadf8}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {4619719e-552a-4c8c-8e2b-152b57f727fd}, !- Handle + Zone Outpatient LockerRoom C - Story ground Zone Air Node, !- Name + {667e701d-9a02-4e47-ad20-f12d40fad676}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {667e701d-9a02-4e47-ad20-f12d40fad676}, !- Handle + {37545ef1-4fc7-4fe2-8285-35d888c86192}, !- Source Object + 11, !- Outlet Port + {4619719e-552a-4c8c-8e2b-152b57f727fd}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {6d0c473a-17d1-4cc3-ba14-cf971214fb23}, !- Handle + {37545ef1-4fc7-4fe2-8285-35d888c86192}, !- HVAC Component + {db19870d-fa09-42b8-b577-940e7b170780}, !- Port 1 + {f02ac398-bf8d-449b-b525-1f94ed4c3036}; !- Port 2 + +OS:PortList, + {e30cdfd1-8fd8-47d2-9a0c-68070821fbfb}, !- Handle + {37545ef1-4fc7-4fe2-8285-35d888c86192}, !- HVAC Component + {37c7d5ea-82f7-4040-89ec-9ee7b69cfb18}; !- Port 1 + +OS:PortList, + {3f30f278-397f-4263-a789-bd9e152def08}, !- Handle + {37545ef1-4fc7-4fe2-8285-35d888c86192}, !- HVAC Component + {dca358a6-e749-48fc-a583-fa3a7fd046d9}; !- Port 1 + +OS:Sizing:Zone, + {23bdaf55-0b39-4368-bb87-dc79a5e271bd}, !- Handle + {37545ef1-4fc7-4fe2-8285-35d888c86192}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {20a9a1f6-2df8-4a75-991e-ebbf3a7176c1}, !- Handle + Zone Outpatient LockerRoom C - Story ground Zone HVAC Equipment List, !- Name + {37545ef1-4fc7-4fe2-8285-35d888c86192}, !- Thermal Zone + , !- Load Distribution Scheme + {eea114e0-d95f-40d5-a565-e8588eba4668}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {df159c58-5d18-48b7-a54e-bbe37063370b}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {0d2ac789-9ade-4221-95bc-a04adb7eecbf}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {9a1e9649-e4bf-40ef-8fe1-4b6fb2234684}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {7bc0f656-994b-4f31-8647-d1e47021afd7}, !- Handle + Outpatient Toilet A - Story ground, !- Name + {10a9958c-5712-4449-9d93-940c14d4492e}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 119.43982600191, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {89c247a2-ec8e-4fc8-be32-4172997327f3}; !- Thermal Zone Name + +OS:Surface, + {7cc193d3-3c52-464d-8006-650b4516e33b}, !- Handle + Surface 509, !- Name + Floor, !- Surface Type + {cd21349b-d066-4ea4-92ff-d9a4a119ee2e}, !- Construction Name + {7bc0f656-994b-4f31-8647-d1e47021afd7}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 3.80100147103228, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 3.80100147103228, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8fdc269d-2a62-4feb-a992-e384080bc1bb}, !- Handle + Surface 510, !- Name + Wall, !- Surface Type + , !- Construction Name + {7bc0f656-994b-4f31-8647-d1e47021afd7}, !- Space Name + Surface, !- Outside Boundary Condition + {8c4ddb66-3236-4c78-999c-0bc8c9579fc3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.1316282072803e-13, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + -2.1316282072803e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + -2.1316282072803e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + -2.1316282072803e-13, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4b92f62a-4a05-4c7b-9fd4-f732b40704d3}, !- Handle + Surface 511, !- Name + Wall, !- Surface Type + , !- Construction Name + {7bc0f656-994b-4f31-8647-d1e47021afd7}, !- Space Name + Surface, !- Outside Boundary Condition + {fa8417b4-92f7-4479-b956-5ef596959820}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.80100147103228, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 3.80100147103228, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-13, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3ffab750-9f9f-4372-b15f-f7109ae6ca1a}, !- Handle + Surface 512, !- Name + Wall, !- Surface Type + , !- Construction Name + {7bc0f656-994b-4f31-8647-d1e47021afd7}, !- Space Name + Surface, !- Outside Boundary Condition + {2bbeed31-d833-41db-9167-727a2651fd75}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.80100147103228, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 3.80100147103228, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 3.80100147103228, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 3.80100147103228, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {00879d14-1534-4070-88dd-778e2355f88f}, !- Handle + Surface 513, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {7bc0f656-994b-4f31-8647-d1e47021afd7}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.80100147103228, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-13, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 3.80100147103228, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4a4f0419-92cd-41aa-b305-0f31d0b4b8bb}, !- Handle + Surface 514, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {7bc0f656-994b-4f31-8647-d1e47021afd7}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.80100147103228, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 3.80100147103228, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-13, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-13, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {89c247a2-ec8e-4fc8-be32-4172997327f3}, !- Handle + Zone Outpatient Toilet A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {1b2a0b80-61ca-47c5-9648-6eb1513632a0}, !- Zone Air Inlet Port List + {76e6fe05-94a7-439d-896b-956c58659b98}, !- Zone Air Exhaust Port List + {e3909b94-f464-46c8-b535-f8d40216e8e6}, !- Zone Air Node Name + {e4e53f85-711d-47c1-badc-25301fb55e77}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {32d37f89-f222-438c-9d2d-f02c6787afba}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {e3d7996b-dda1-4ddc-bb15-38895759d7e5}, !- Handle + Zone Outpatient Toilet A - Story ground Zone Air Node, !- Name + {e3909b94-f464-46c8-b535-f8d40216e8e6}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {e3909b94-f464-46c8-b535-f8d40216e8e6}, !- Handle + {89c247a2-ec8e-4fc8-be32-4172997327f3}, !- Source Object + 11, !- Outlet Port + {e3d7996b-dda1-4ddc-bb15-38895759d7e5}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {1b2a0b80-61ca-47c5-9648-6eb1513632a0}, !- Handle + {89c247a2-ec8e-4fc8-be32-4172997327f3}, !- HVAC Component + {fe480a9e-61a3-4bdf-8a0e-326fb8d43dd4}; !- Port 1 + +OS:PortList, + {76e6fe05-94a7-439d-896b-956c58659b98}, !- Handle + {89c247a2-ec8e-4fc8-be32-4172997327f3}, !- HVAC Component + {60c65d41-dc9b-450d-adf0-e5f24568e0c3}, !- Port 1 + {05c8c441-8ea8-4a5c-bd61-a403ce410c71}; !- Port 2 + +OS:PortList, + {e4e53f85-711d-47c1-badc-25301fb55e77}, !- Handle + {89c247a2-ec8e-4fc8-be32-4172997327f3}; !- HVAC Component + +OS:Sizing:Zone, + {dcca12da-680e-44f5-9452-b9d1cb8de748}, !- Handle + {89c247a2-ec8e-4fc8-be32-4172997327f3}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {1ca28480-3e67-47da-ab14-1f173b8e5ee6}, !- Handle + Zone Outpatient Toilet A - Story ground Zone HVAC Equipment List, !- Name + {89c247a2-ec8e-4fc8-be32-4172997327f3}, !- Thermal Zone + , !- Load Distribution Scheme + {7cf1bff5-e215-4821-9a2e-d2c659c5223e}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {c56ab0b7-c1c3-494f-884d-154ee3d81db3}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {43767cc7-b0f6-47bd-b085-e12a46f00094}, !- Handle + Outpatient Toilet B - Story ground, !- Name + {10a9958c-5712-4449-9d93-940c14d4492e}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 119.43982600191, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {eb77f2cc-5f0a-4148-834c-9292d189239e}; !- Thermal Zone Name + +OS:Surface, + {7fdf0c67-dcc5-4f01-8cec-393e96599477}, !- Handle + Surface 515, !- Name + Floor, !- Surface Type + {376be6a0-b223-45e0-97c6-75d32a8228e0}, !- Construction Name + {43767cc7-b0f6-47bd-b085-e12a46f00094}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-13, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-13, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 3.80100147103228, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 3.80100147103228, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5588d7d6-ae3a-4c23-947a-4347090b66dd}, !- Handle + Surface 516, !- Name + Wall, !- Surface Type + , !- Construction Name + {43767cc7-b0f6-47bd-b085-e12a46f00094}, !- Space Name + Surface, !- Outside Boundary Condition + {cbef51fb-6850-427c-b83a-7d1ea4d4ac85}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.1316282072803e-13, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + -2.1316282072803e-13, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + -2.1316282072803e-13, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + -2.1316282072803e-13, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {bf4d0551-fd00-4218-a606-0e917852406b}, !- Handle + Surface 517, !- Name + Wall, !- Surface Type + , !- Construction Name + {43767cc7-b0f6-47bd-b085-e12a46f00094}, !- Space Name + Surface, !- Outside Boundary Condition + {ced3933c-b912-4a23-8f85-6b7e81251716}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.80100147103228, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 3.80100147103228, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-13, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-13, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {76a6c1d9-5f00-4ed4-ba0d-463f0bd612f8}, !- Handle + Surface 518, !- Name + Wall, !- Surface Type + , !- Construction Name + {43767cc7-b0f6-47bd-b085-e12a46f00094}, !- Space Name + Surface, !- Outside Boundary Condition + {d07fc208-a3b7-4d45-9c3f-f3ccb2d7d702}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.80100147103228, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 3.80100147103228, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 3.80100147103228, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 3.80100147103228, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {fa8417b4-92f7-4479-b956-5ef596959820}, !- Handle + Surface 519, !- Name + Wall, !- Surface Type + , !- Construction Name + {43767cc7-b0f6-47bd-b085-e12a46f00094}, !- Space Name + Surface, !- Outside Boundary Condition + {4b92f62a-4a05-4c7b-9fd4-f732b40704d3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-13, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-13, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 3.80100147103228, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 3.80100147103228, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2056baa9-b245-4a75-bea0-1de726d7e137}, !- Handle + Surface 520, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {43767cc7-b0f6-47bd-b085-e12a46f00094}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.80100147103228, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 3.80100147103228, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-13, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-13, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {eb77f2cc-5f0a-4148-834c-9292d189239e}, !- Handle + Zone Outpatient Toilet B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {bdecbe97-1b00-44e6-b87f-205a51b8c011}, !- Zone Air Inlet Port List + {23d9aeaf-7320-419a-8af6-a1227ea2757b}, !- Zone Air Exhaust Port List + {d0a0ad58-6b88-430f-8374-ce9abc8beb9f}, !- Zone Air Node Name + {1627bd3a-c10f-4b88-a59c-d1b2e7ceae79}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {0042e5af-5183-4fb2-94e1-54a526fb19cc}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {c76e4828-5e7e-48dd-82d4-690491e50e16}, !- Handle + Zone Outpatient Toilet B - Story ground Zone Air Node, !- Name + {d0a0ad58-6b88-430f-8374-ce9abc8beb9f}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {d0a0ad58-6b88-430f-8374-ce9abc8beb9f}, !- Handle + {eb77f2cc-5f0a-4148-834c-9292d189239e}, !- Source Object + 11, !- Outlet Port + {c76e4828-5e7e-48dd-82d4-690491e50e16}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {bdecbe97-1b00-44e6-b87f-205a51b8c011}, !- Handle + {eb77f2cc-5f0a-4148-834c-9292d189239e}, !- HVAC Component + {17c599ed-bd04-4e82-862c-7c963f11e9f5}; !- Port 1 + +OS:PortList, + {23d9aeaf-7320-419a-8af6-a1227ea2757b}, !- Handle + {eb77f2cc-5f0a-4148-834c-9292d189239e}, !- HVAC Component + {b01bfeef-dc24-4888-a8a4-6ddbf704c315}, !- Port 1 + {55c0991c-449b-4749-a671-2974f9288cb8}; !- Port 2 + +OS:PortList, + {1627bd3a-c10f-4b88-a59c-d1b2e7ceae79}, !- Handle + {eb77f2cc-5f0a-4148-834c-9292d189239e}; !- HVAC Component + +OS:Sizing:Zone, + {911452b0-c224-4d43-94d7-7ddc39306e93}, !- Handle + {eb77f2cc-5f0a-4148-834c-9292d189239e}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {a21f0c35-c042-49ee-acc7-296ea88ce9c9}, !- Handle + Zone Outpatient Toilet B - Story ground Zone HVAC Equipment List, !- Name + {eb77f2cc-5f0a-4148-834c-9292d189239e}, !- Thermal Zone + , !- Load Distribution Scheme + {34d6886f-7f80-4804-80cf-933df8eabca7}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {c50202f4-25d7-4389-977d-b40c9fbefe33}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {c88f9c32-e196-4172-975f-53045961e2e3}, !- Handle + Outpatient Toilet C - Story ground, !- Name + {10a9958c-5712-4449-9d93-940c14d4492e}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 119.43982600191, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {d5675863-f7d0-4778-b747-91903bf4bfb4}; !- Thermal Zone Name + +OS:Surface, + {2b1ba35b-b87a-4f40-a567-346dc97307df}, !- Handle + Surface 521, !- Name + Floor, !- Surface Type + {cd21349b-d066-4ea4-92ff-d9a4a119ee2e}, !- Construction Name + {c88f9c32-e196-4172-975f-53045961e2e3}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-13, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 3.80100147103228, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 3.80100147103228, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b02323e3-16fd-4f66-9a50-50a77e74dd3e}, !- Handle + Surface 522, !- Name + Wall, !- Surface Type + , !- Construction Name + {c88f9c32-e196-4172-975f-53045961e2e3}, !- Space Name + Surface, !- Outside Boundary Condition + {ac8bed00-90ad-47e4-8e43-8dbd505c6953}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -2.1316282072803e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + -2.1316282072803e-13, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + -2.1316282072803e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + -2.1316282072803e-13, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d9b8b5f8-009f-4607-96c4-337abbcb6558}, !- Handle + Surface 523, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {c88f9c32-e196-4172-975f-53045961e2e3}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 3.80100147103228, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 3.80100147103228, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-13, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d6d0bd6c-ba3d-4487-a2dc-c6ed8f7b1317}, !- Handle + Surface 524, !- Name + Wall, !- Surface Type + , !- Construction Name + {c88f9c32-e196-4172-975f-53045961e2e3}, !- Space Name + Surface, !- Outside Boundary Condition + {78c74f02-9594-4ea2-8be4-cacdad39693f}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.80100147103228, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 3.80100147103228, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 3.80100147103228, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 3.80100147103228, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {ced3933c-b912-4a23-8f85-6b7e81251716}, !- Handle + Surface 525, !- Name + Wall, !- Surface Type + , !- Construction Name + {c88f9c32-e196-4172-975f-53045961e2e3}, !- Space Name + Surface, !- Outside Boundary Condition + {bf4d0551-fd00-4218-a606-0e917852406b}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-13, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 3.80100147103228, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 3.80100147103228, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {9289d6e2-f245-4374-9b80-10277b83748f}, !- Handle + Surface 526, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {c88f9c32-e196-4172-975f-53045961e2e3}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 3.80100147103228, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 3.80100147103228, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-13, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {d5675863-f7d0-4778-b747-91903bf4bfb4}, !- Handle + Zone Outpatient Toilet C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {6193002e-0af9-4b54-b4bc-f409da914e8a}, !- Zone Air Inlet Port List + {f1e0312d-5b6a-4a73-bb6c-d58d51b89500}, !- Zone Air Exhaust Port List + {c9b85182-ba1d-41db-9ec3-db43a0038d4f}, !- Zone Air Node Name + {417be35f-4eb7-4213-98ec-a2f521450110}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {4babde8a-2dea-40a3-98af-882a080594a9}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {de5c195b-9a7c-4414-8c5e-d37cc03b64f9}, !- Handle + Zone Outpatient Toilet C - Story ground Zone Air Node, !- Name + {c9b85182-ba1d-41db-9ec3-db43a0038d4f}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {c9b85182-ba1d-41db-9ec3-db43a0038d4f}, !- Handle + {d5675863-f7d0-4778-b747-91903bf4bfb4}, !- Source Object + 11, !- Outlet Port + {de5c195b-9a7c-4414-8c5e-d37cc03b64f9}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {6193002e-0af9-4b54-b4bc-f409da914e8a}, !- Handle + {d5675863-f7d0-4778-b747-91903bf4bfb4}, !- HVAC Component + {5fb67329-cf0d-47f5-8bbb-b5fe3898bad0}; !- Port 1 + +OS:PortList, + {f1e0312d-5b6a-4a73-bb6c-d58d51b89500}, !- Handle + {d5675863-f7d0-4778-b747-91903bf4bfb4}, !- HVAC Component + {7514a378-270c-4aac-8d7e-1ad3b70e9077}, !- Port 1 + {44c924e6-b188-472a-a444-a0734281323e}; !- Port 2 + +OS:PortList, + {417be35f-4eb7-4213-98ec-a2f521450110}, !- Handle + {d5675863-f7d0-4778-b747-91903bf4bfb4}; !- HVAC Component + +OS:Sizing:Zone, + {4bb28b08-5233-4262-bf61-5a94fe31da2c}, !- Handle + {d5675863-f7d0-4778-b747-91903bf4bfb4}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {e66bcd2d-d67f-43d9-a985-5cac0402dd9c}, !- Handle + Zone Outpatient Toilet C - Story ground Zone HVAC Equipment List, !- Name + {d5675863-f7d0-4778-b747-91903bf4bfb4}, !- Thermal Zone + , !- Load Distribution Scheme + {bfaf57a7-b042-40b5-83af-50d722ec79ea}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + , !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {ad256a1a-96f4-4769-bead-7183eb5d4175}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {2904ca6c-9c9d-4316-b2e1-957d7f0bb1fe}, !- Handle + Outpatient Xray A - Story ground, !- Name + {8699ada1-ecd3-452b-951b-33b0abe847f3}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 123.240827472942, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {bfe28b7f-30b0-44a7-8355-8b1400c62df2}; !- Thermal Zone Name + +OS:Surface, + {ff810f76-43d5-4366-8047-ff41aedb07e9}, !- Handle + Surface 527, !- Name + Floor, !- Surface Type + {46723c7f-e763-4615-af5d-194e4e7c8d4f}, !- Construction Name + {2904ca6c-9c9d-4316-b2e1-957d7f0bb1fe}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -4.2632564145606e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + -4.2632564145606e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 4.33274779081457, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 4.33274779081457, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2bbeed31-d833-41db-9167-727a2651fd75}, !- Handle + Surface 528, !- Name + Wall, !- Surface Type + , !- Construction Name + {2904ca6c-9c9d-4316-b2e1-957d7f0bb1fe}, !- Space Name + Surface, !- Outside Boundary Condition + {3ffab750-9f9f-4372-b15f-f7109ae6ca1a}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-13, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-13, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {22b69552-309b-437a-a11b-2638c9cec219}, !- Handle + Surface 529, !- Name + Wall, !- Surface Type + , !- Construction Name + {2904ca6c-9c9d-4316-b2e1-957d7f0bb1fe}, !- Space Name + Surface, !- Outside Boundary Condition + {8e9dc628-66c4-4fcc-b394-be039d8a5545}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.33274779081457, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 4.33274779081457, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + -4.2632564145606e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + -4.2632564145606e-13, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4d46e842-eb1d-4517-9299-3896ff4ce37e}, !- Handle + Surface 530, !- Name + Wall, !- Surface Type + , !- Construction Name + {2904ca6c-9c9d-4316-b2e1-957d7f0bb1fe}, !- Space Name + Surface, !- Outside Boundary Condition + {470f083e-9997-4309-9915-0a220a7441e7}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.33274779081457, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 4.33274779081457, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 4.33274779081457, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 4.33274779081457, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2703e4dc-b37a-4042-92b3-5441e1663f9f}, !- Handle + Surface 531, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {2904ca6c-9c9d-4316-b2e1-957d7f0bb1fe}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.33274779081457, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -4.2632564145606e-13, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + -4.2632564145606e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 4.33274779081457, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1b276df1-459a-44da-8974-a06d1115f67e}, !- Handle + Surface 532, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {2904ca6c-9c9d-4316-b2e1-957d7f0bb1fe}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.33274779081457, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 4.33274779081457, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + -4.2632564145606e-13, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + -4.2632564145606e-13, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {bfe28b7f-30b0-44a7-8355-8b1400c62df2}, !- Handle + Zone Outpatient Xray A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {c4d968cf-8147-49ad-adad-62afba2016ea}, !- Zone Air Inlet Port List + {13a157f0-bc52-4fbb-8d06-9eb43607881d}, !- Zone Air Exhaust Port List + {a187c3dd-ceb2-4593-9cbf-4073577e9a03}, !- Zone Air Node Name + {d232cbb9-e969-4a9f-88d0-8d987bd5360e}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {7362913f-1117-4ca8-a4b3-3e6667ae2afc}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {1b0d20dc-c030-4be0-8893-79e51bf7ff73}, !- Handle + Zone Outpatient Xray A - Story ground Zone Air Node, !- Name + {a187c3dd-ceb2-4593-9cbf-4073577e9a03}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {a187c3dd-ceb2-4593-9cbf-4073577e9a03}, !- Handle + {bfe28b7f-30b0-44a7-8355-8b1400c62df2}, !- Source Object + 11, !- Outlet Port + {1b0d20dc-c030-4be0-8893-79e51bf7ff73}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {c4d968cf-8147-49ad-adad-62afba2016ea}, !- Handle + {bfe28b7f-30b0-44a7-8355-8b1400c62df2}, !- HVAC Component + {2fe920f8-6543-470e-93ae-c2def355f813}, !- Port 1 + {23744a4b-19b1-47c7-b0ea-a418aa123e49}; !- Port 2 + +OS:PortList, + {13a157f0-bc52-4fbb-8d06-9eb43607881d}, !- Handle + {bfe28b7f-30b0-44a7-8355-8b1400c62df2}, !- HVAC Component + {e1ca7626-c070-442b-ae06-2d84ea1f98e4}; !- Port 1 + +OS:PortList, + {d232cbb9-e969-4a9f-88d0-8d987bd5360e}, !- Handle + {bfe28b7f-30b0-44a7-8355-8b1400c62df2}, !- HVAC Component + {f285c306-a19a-41b0-954c-fe02b0211d37}; !- Port 1 + +OS:Sizing:Zone, + {c62d7471-4e80-4af8-b478-bc4277ddc609}, !- Handle + {bfe28b7f-30b0-44a7-8355-8b1400c62df2}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {3e5c0e94-22bf-4117-81a2-756f4e35fadb}, !- Handle + Zone Outpatient Xray A - Story ground Zone HVAC Equipment List, !- Name + {bfe28b7f-30b0-44a7-8355-8b1400c62df2}, !- Thermal Zone + , !- Load Distribution Scheme + {e8317f38-8363-49a1-b0f2-6479fab7ec5a}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {759c6ac9-15b7-4046-98ef-4c2765bcedbf}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {435bd13b-c8e7-4eb4-92c8-7adce3f24366}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {0f146c3a-846d-4b82-862f-f1ea632daf56}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {ce947ebc-632b-415a-9f3d-5afa42e13c62}, !- Handle + Outpatient Xray B - Story ground, !- Name + {8699ada1-ecd3-452b-951b-33b0abe847f3}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 123.240827472942, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {de69fc96-51a2-4b70-9a73-5c9ba13fbb27}; !- Thermal Zone Name + +OS:Surface, + {23fbbc50-dddd-4602-b10e-bd65e9abde40}, !- Handle + Surface 533, !- Name + Floor, !- Surface Type + {143c3c76-0afb-4f6a-a0a4-b0f1ae4ed079}, !- Construction Name + {ce947ebc-632b-415a-9f3d-5afa42e13c62}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -4.2632564145606e-13, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + -4.2632564145606e-13, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 4.33274779081457, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 4.33274779081457, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d07fc208-a3b7-4d45-9c3f-f3ccb2d7d702}, !- Handle + Surface 534, !- Name + Wall, !- Surface Type + , !- Construction Name + {ce947ebc-632b-415a-9f3d-5afa42e13c62}, !- Space Name + Surface, !- Outside Boundary Condition + {76a6c1d9-5f00-4ed4-ba0d-463f0bd612f8}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-13, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-13, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-13, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-13, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {42078736-c8ae-4d63-afb2-5dc8ad27cd48}, !- Handle + Surface 535, !- Name + Wall, !- Surface Type + , !- Construction Name + {ce947ebc-632b-415a-9f3d-5afa42e13c62}, !- Space Name + Surface, !- Outside Boundary Condition + {7b46e4c1-5787-475a-8533-3239dd8c0e05}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.33274779081457, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 4.33274779081457, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + -4.2632564145606e-13, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + -4.2632564145606e-13, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {e6440d63-2b76-4cc4-a708-ffcd46438d67}, !- Handle + Surface 536, !- Name + Wall, !- Surface Type + , !- Construction Name + {ce947ebc-632b-415a-9f3d-5afa42e13c62}, !- Space Name + Surface, !- Outside Boundary Condition + {c63669cd-ed4e-464d-9317-c5b9c9b329fc}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.33274779081457, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 4.33274779081457, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 4.33274779081457, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 4.33274779081457, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {8e9dc628-66c4-4fcc-b394-be039d8a5545}, !- Handle + Surface 537, !- Name + Wall, !- Surface Type + , !- Construction Name + {ce947ebc-632b-415a-9f3d-5afa42e13c62}, !- Space Name + Surface, !- Outside Boundary Condition + {22b69552-309b-437a-a11b-2638c9cec219}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -4.2632564145606e-13, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -4.2632564145606e-13, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 4.33274779081457, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 4.33274779081457, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {d19dfd01-3745-4693-aaf1-45e1dc8fd44b}, !- Handle + Surface 538, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {ce947ebc-632b-415a-9f3d-5afa42e13c62}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.33274779081457, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 4.33274779081457, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + -4.2632564145606e-13, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + -4.2632564145606e-13, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {de69fc96-51a2-4b70-9a73-5c9ba13fbb27}, !- Handle + Zone Outpatient Xray B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {45a1ccd6-fc52-412a-b79c-67af6c62a56a}, !- Zone Air Inlet Port List + {11fa6cfa-3b00-4c54-88d7-5414c82b371e}, !- Zone Air Exhaust Port List + {553eb5aa-f2ca-4789-a009-80601cb1eb65}, !- Zone Air Node Name + {ebf16a79-11fb-4b3f-bf65-40ba4cc28796}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {28f1b9bc-103c-4144-ae21-59026f44282f}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {fe0b5ece-247c-4439-a4d9-8d91b96bb142}, !- Handle + Zone Outpatient Xray B - Story ground Zone Air Node, !- Name + {553eb5aa-f2ca-4789-a009-80601cb1eb65}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {553eb5aa-f2ca-4789-a009-80601cb1eb65}, !- Handle + {de69fc96-51a2-4b70-9a73-5c9ba13fbb27}, !- Source Object + 11, !- Outlet Port + {fe0b5ece-247c-4439-a4d9-8d91b96bb142}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {45a1ccd6-fc52-412a-b79c-67af6c62a56a}, !- Handle + {de69fc96-51a2-4b70-9a73-5c9ba13fbb27}, !- HVAC Component + {abdb94be-743f-46f4-b097-3b2509d51651}, !- Port 1 + {accf4f28-e93c-4077-9aff-f70dac02750f}; !- Port 2 + +OS:PortList, + {11fa6cfa-3b00-4c54-88d7-5414c82b371e}, !- Handle + {de69fc96-51a2-4b70-9a73-5c9ba13fbb27}, !- HVAC Component + {a78376a2-4a10-4df5-ba59-f7ad789e7b5a}; !- Port 1 + +OS:PortList, + {ebf16a79-11fb-4b3f-bf65-40ba4cc28796}, !- Handle + {de69fc96-51a2-4b70-9a73-5c9ba13fbb27}, !- HVAC Component + {e63abddb-29b9-4d2c-946e-8945bb9a2257}; !- Port 1 + +OS:Sizing:Zone, + {28267974-2cc2-4083-bee6-55708872c9fd}, !- Handle + {de69fc96-51a2-4b70-9a73-5c9ba13fbb27}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {00198e70-f74c-48b7-97f3-574611ff28eb}, !- Handle + Zone Outpatient Xray B - Story ground Zone HVAC Equipment List, !- Name + {de69fc96-51a2-4b70-9a73-5c9ba13fbb27}, !- Thermal Zone + , !- Load Distribution Scheme + {73211993-2b4d-4a09-843b-0d02a666af22}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {66252360-0ea3-4aa5-9ea6-ba402f352601}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {f02efc45-c58a-4de8-905f-e0ac3ee1397e}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {26c3aab6-c62b-4b2e-aae2-707c970d8d4e}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {bcb954e6-60d6-4118-811c-173a8335bfae}, !- Handle + Outpatient Xray C - Story ground, !- Name + {8699ada1-ecd3-452b-951b-33b0abe847f3}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 123.240827472942, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {bfc5872c-7fe0-4b1d-855e-945b7befeb4e}; !- Thermal Zone Name + +OS:Surface, + {33331081-2ca6-4824-880f-03d66f6f85d4}, !- Handle + Surface 539, !- Name + Floor, !- Surface Type + {46723c7f-e763-4615-af5d-194e4e7c8d4f}, !- Construction Name + {bcb954e6-60d6-4118-811c-173a8335bfae}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -4.2632564145606e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + -4.2632564145606e-13, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 4.33274779081457, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 4.33274779081457, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {78c74f02-9594-4ea2-8be4-cacdad39693f}, !- Handle + Surface 540, !- Name + Wall, !- Surface Type + , !- Construction Name + {bcb954e6-60d6-4118-811c-173a8335bfae}, !- Space Name + Surface, !- Outside Boundary Condition + {d6d0bd6c-ba3d-4487-a2dc-c6ed8f7b1317}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 2.8421709430404e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 2.8421709430404e-13, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 2.8421709430404e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 2.8421709430404e-13, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3779fc13-52d0-46d6-bf28-c464f135bc58}, !- Handle + Surface 541, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {bcb954e6-60d6-4118-811c-173a8335bfae}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -4.2632564145606e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 4.33274779081457, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 4.33274779081457, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + -4.2632564145606e-13, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {aa885458-ff67-4ac1-bffd-f567e92f91c5}, !- Handle + Surface 542, !- Name + Wall, !- Surface Type + , !- Construction Name + {bcb954e6-60d6-4118-811c-173a8335bfae}, !- Space Name + Surface, !- Outside Boundary Condition + {de443a19-31ac-4090-8824-d428585ce533}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.33274779081457, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 4.33274779081457, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 4.33274779081457, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 4.33274779081457, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {7b46e4c1-5787-475a-8533-3239dd8c0e05}, !- Handle + Surface 543, !- Name + Wall, !- Surface Type + , !- Construction Name + {bcb954e6-60d6-4118-811c-173a8335bfae}, !- Space Name + Surface, !- Outside Boundary Condition + {42078736-c8ae-4d63-afb2-5dc8ad27cd48}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -4.2632564145606e-13, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + -4.2632564145606e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 4.33274779081457, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 4.33274779081457, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {2942140d-666e-4b01-8c99-90f7ddb54cc5}, !- Handle + Surface 544, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {bcb954e6-60d6-4118-811c-173a8335bfae}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.33274779081457, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 4.33274779081457, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + -4.2632564145606e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + -4.2632564145606e-13, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {bfc5872c-7fe0-4b1d-855e-945b7befeb4e}, !- Handle + Zone Outpatient Xray C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {d2f868fb-ea1d-4156-abe0-674af0b04b1c}, !- Zone Air Inlet Port List + {6212b48f-63d4-46d4-96a8-3a4ccb3dd97a}, !- Zone Air Exhaust Port List + {5406e666-d7ac-453c-9846-0afa0ab1ca20}, !- Zone Air Node Name + {1b07e3fd-09f6-4fa7-ad23-37ebe04a4d2e}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {9b6600ed-3404-434b-89a7-33e69ef10289}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {cbc244a1-8823-45f2-8dc6-cdec022e48df}, !- Handle + Zone Outpatient Xray C - Story ground Zone Air Node, !- Name + {5406e666-d7ac-453c-9846-0afa0ab1ca20}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {5406e666-d7ac-453c-9846-0afa0ab1ca20}, !- Handle + {bfc5872c-7fe0-4b1d-855e-945b7befeb4e}, !- Source Object + 11, !- Outlet Port + {cbc244a1-8823-45f2-8dc6-cdec022e48df}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {d2f868fb-ea1d-4156-abe0-674af0b04b1c}, !- Handle + {bfc5872c-7fe0-4b1d-855e-945b7befeb4e}, !- HVAC Component + {8dcfc637-9adf-4aeb-969d-8109f91c0f94}, !- Port 1 + {a5633068-05bd-4a4e-ae58-98b92ffdd8ee}; !- Port 2 + +OS:PortList, + {6212b48f-63d4-46d4-96a8-3a4ccb3dd97a}, !- Handle + {bfc5872c-7fe0-4b1d-855e-945b7befeb4e}, !- HVAC Component + {f1360d6c-4e06-4be3-a55c-fe569c2d178f}; !- Port 1 + +OS:PortList, + {1b07e3fd-09f6-4fa7-ad23-37ebe04a4d2e}, !- Handle + {bfc5872c-7fe0-4b1d-855e-945b7befeb4e}, !- HVAC Component + {44cda2ce-2705-4dbe-9d10-78a4602a9158}; !- Port 1 + +OS:Sizing:Zone, + {1163030f-8250-47dd-8b9d-47e2c402d587}, !- Handle + {bfc5872c-7fe0-4b1d-855e-945b7befeb4e}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {a7fcaba4-4314-46d1-979b-27cae5ebde45}, !- Handle + Zone Outpatient Xray C - Story ground Zone HVAC Equipment List, !- Name + {bfc5872c-7fe0-4b1d-855e-945b7befeb4e}, !- Thermal Zone + , !- Load Distribution Scheme + {3eb87cf0-9e9f-4acb-8208-d633fba2b54c}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {4fe1b232-0e42-4aa3-ad9d-36ff1d6e51fd}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {b5429267-1121-4f5b-9b38-a6fd53b3a54f}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {f3aa6c01-5af1-4d40-b1ed-aafca0eacac2}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {c3024915-c047-4fc8-9646-11c39d8548f1}, !- Handle + Outpatient PACU A - Story ground, !- Name + {171a2876-5f59-46c1-9438-827411e98017}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 127.573575263757, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {de9515d3-5da8-402f-ad79-6adf09261543}; !- Thermal Zone Name + +OS:Surface, + {e8cf95b9-959d-40c3-9cc7-37ccdf7f53bf}, !- Handle + Surface 545, !- Name + Floor, !- Surface Type + {7639bb46-5a71-4dcf-8833-bd46abad1522}, !- Construction Name + {c3024915-c047-4fc8-9646-11c39d8548f1}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.5265128291212e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + 8.5265128291212e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 4.56907948849511, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 4.56907948849511, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {470f083e-9997-4309-9915-0a220a7441e7}, !- Handle + Surface 546, !- Name + Wall, !- Surface Type + , !- Construction Name + {c3024915-c047-4fc8-9646-11c39d8548f1}, !- Space Name + Surface, !- Outside Boundary Condition + {4d46e842-eb1d-4517-9299-3896ff4ce37e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -4.2632564145606e-13, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + -4.2632564145606e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + -4.2632564145606e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + -4.2632564145606e-13, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f39029c3-26dc-4ff2-b993-4d7fe9e50e8c}, !- Handle + Surface 547, !- Name + Wall, !- Surface Type + , !- Construction Name + {c3024915-c047-4fc8-9646-11c39d8548f1}, !- Space Name + Surface, !- Outside Boundary Condition + {4eb6d478-a072-4fd9-b1cf-fe2ab13700b6}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.56907948849511, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 4.56907948849511, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 8.5265128291212e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 8.5265128291212e-14, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {177ffa71-b4ef-464c-ad85-e10e36bd0835}, !- Handle + Surface 548, !- Name + Wall, !- Surface Type + , !- Construction Name + {c3024915-c047-4fc8-9646-11c39d8548f1}, !- Space Name + Surface, !- Outside Boundary Condition + {6f973a69-52b6-4301-818a-0b2c0c28c1e3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.56907948849511, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 4.56907948849511, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 2 {m} + 4.56907948849511, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 4.56907948849511, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {eaa43305-5d0f-4cb3-94a9-70502cb6421f}, !- Handle + Surface 549, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {c3024915-c047-4fc8-9646-11c39d8548f1}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.56907948849511, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 8.5265128291212e-14, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 8.5265128291212e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 4.56907948849511, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {778c9e41-6751-4d7c-8b28-0acdf20dfa3e}, !- Handle + Surface 550, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {c3024915-c047-4fc8-9646-11c39d8548f1}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.56907948849511, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 4.56907948849511, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + 8.5265128291212e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + 8.5265128291212e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {de9515d3-5da8-402f-ad79-6adf09261543}, !- Handle + Zone Outpatient PACU A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {0d896ef0-9a49-4793-9373-955dd8a83a46}, !- Zone Air Inlet Port List + {9794e398-72ad-40a7-a6e4-8b3fdff62383}, !- Zone Air Exhaust Port List + {f293ebb0-316d-4911-ac50-b476625b1f8d}, !- Zone Air Node Name + {a3321745-6994-45dc-8e77-541c1ae04e60}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {5beae7af-3725-474f-8fec-670b1b245a5c}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {5e9dcadc-30bc-47f3-8e1b-8bc776a2d8ba}, !- Handle + Zone Outpatient PACU A - Story ground Zone Air Node, !- Name + {f293ebb0-316d-4911-ac50-b476625b1f8d}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {f293ebb0-316d-4911-ac50-b476625b1f8d}, !- Handle + {de9515d3-5da8-402f-ad79-6adf09261543}, !- Source Object + 11, !- Outlet Port + {5e9dcadc-30bc-47f3-8e1b-8bc776a2d8ba}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {0d896ef0-9a49-4793-9373-955dd8a83a46}, !- Handle + {de9515d3-5da8-402f-ad79-6adf09261543}, !- HVAC Component + {d8d06540-be68-4aab-8161-f92affa4fb69}, !- Port 1 + {32f3aaef-a4a3-48fc-b819-7b09ab3d72cb}; !- Port 2 + +OS:PortList, + {9794e398-72ad-40a7-a6e4-8b3fdff62383}, !- Handle + {de9515d3-5da8-402f-ad79-6adf09261543}, !- HVAC Component + {7d381938-7627-447a-9c6d-c96daf92e789}; !- Port 1 + +OS:PortList, + {a3321745-6994-45dc-8e77-541c1ae04e60}, !- Handle + {de9515d3-5da8-402f-ad79-6adf09261543}, !- HVAC Component + {98bbf961-9012-4426-8454-1084fc624419}; !- Port 1 + +OS:Sizing:Zone, + {ca84b721-cd07-4fa9-92b0-0b7e9e048db8}, !- Handle + {de9515d3-5da8-402f-ad79-6adf09261543}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {6cdfd18d-7bf4-40ef-aa02-fd386da51da2}, !- Handle + Zone Outpatient PACU A - Story ground Zone HVAC Equipment List, !- Name + {de9515d3-5da8-402f-ad79-6adf09261543}, !- Thermal Zone + , !- Load Distribution Scheme + {9d9984f1-fdb1-4d8f-991a-9bcff9a5fb41}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {5a7e5da0-a315-4308-84c7-49e59b0bae45}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {823c68aa-8514-447b-b0bc-1eec915b4d17}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {a3b73039-6f60-4dfe-9d0a-e2c6b9d9f53a}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {6da9c991-5f0d-43e7-ac30-e33f3cc5a855}, !- Handle + Outpatient PACU B - Story ground, !- Name + {171a2876-5f59-46c1-9438-827411e98017}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 127.573575263757, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {133b0946-c166-49b6-ac7d-7d9a4a92a3c0}; !- Thermal Zone Name + +OS:Surface, + {2393f7d4-a881-41a3-a7e9-1009b4408e03}, !- Handle + Surface 551, !- Name + Floor, !- Surface Type + {0984dc4d-b293-4d94-a340-574632533382}, !- Construction Name + {6da9c991-5f0d-43e7-ac30-e33f3cc5a855}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.5265128291212e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + 8.5265128291212e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 4.56907948849511, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 4.56907948849511, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {c63669cd-ed4e-464d-9317-c5b9c9b329fc}, !- Handle + Surface 552, !- Name + Wall, !- Surface Type + , !- Construction Name + {6da9c991-5f0d-43e7-ac30-e33f3cc5a855}, !- Space Name + Surface, !- Outside Boundary Condition + {e6440d63-2b76-4cc4-a708-ffcd46438d67}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -4.2632564145606e-13, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + -4.2632564145606e-13, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + -4.2632564145606e-13, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + -4.2632564145606e-13, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {b47869d0-81f3-4974-aecb-68ebd2795b74}, !- Handle + Surface 553, !- Name + Wall, !- Surface Type + , !- Construction Name + {6da9c991-5f0d-43e7-ac30-e33f3cc5a855}, !- Space Name + Surface, !- Outside Boundary Condition + {cda5603d-92d1-4dda-974e-04b127ec3cc3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.56907948849511, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 4.56907948849511, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + 8.5265128291212e-14, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + 8.5265128291212e-14, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {59298f52-5e2b-48b7-85a6-0eba4982c126}, !- Handle + Surface 554, !- Name + Wall, !- Surface Type + , !- Construction Name + {6da9c991-5f0d-43e7-ac30-e33f3cc5a855}, !- Space Name + Surface, !- Outside Boundary Condition + {60f166e4-c7d9-41aa-a626-7233b211348e}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.56907948849511, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 4.56907948849511, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 2 {m} + 4.56907948849511, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 4.56907948849511, 37.1792729627082, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {4eb6d478-a072-4fd9-b1cf-fe2ab13700b6}, !- Handle + Surface 555, !- Name + Wall, !- Surface Type + , !- Construction Name + {6da9c991-5f0d-43e7-ac30-e33f3cc5a855}, !- Space Name + Surface, !- Outside Boundary Condition + {f39029c3-26dc-4ff2-b993-4d7fe9e50e8c}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.5265128291212e-14, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 8.5265128291212e-14, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 4.56907948849511, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 4.56907948849511, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {179735cc-9134-4e4b-9500-567559501d4c}, !- Handle + Surface 556, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {6da9c991-5f0d-43e7-ac30-e33f3cc5a855}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.56907948849511, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 4.56907948849511, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + 8.5265128291212e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + 8.5265128291212e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {133b0946-c166-49b6-ac7d-7d9a4a92a3c0}, !- Handle + Zone Outpatient PACU B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {7adce419-80a1-4c73-bf4a-df76b9234a03}, !- Zone Air Inlet Port List + {d275d732-8e90-4ade-abb7-a85fca28855d}, !- Zone Air Exhaust Port List + {24c50f84-5c49-44a1-b043-6f90763cc55c}, !- Zone Air Node Name + {2189b3a7-a01a-4e9d-86f2-f62bf94dadc5}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {ca350a47-0bbd-4fd5-8d27-43601c3ea43f}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {2ca14b44-224a-4262-afac-4fc485e38a1a}, !- Handle + Zone Outpatient PACU B - Story ground Zone Air Node, !- Name + {24c50f84-5c49-44a1-b043-6f90763cc55c}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {24c50f84-5c49-44a1-b043-6f90763cc55c}, !- Handle + {133b0946-c166-49b6-ac7d-7d9a4a92a3c0}, !- Source Object + 11, !- Outlet Port + {2ca14b44-224a-4262-afac-4fc485e38a1a}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {7adce419-80a1-4c73-bf4a-df76b9234a03}, !- Handle + {133b0946-c166-49b6-ac7d-7d9a4a92a3c0}, !- HVAC Component + {99790d0e-6a87-40c0-bcb9-aac238c556ff}, !- Port 1 + {7c70c7c9-d036-4493-bae0-2d08ec61e540}; !- Port 2 + +OS:PortList, + {d275d732-8e90-4ade-abb7-a85fca28855d}, !- Handle + {133b0946-c166-49b6-ac7d-7d9a4a92a3c0}, !- HVAC Component + {f6b5e7c8-3b25-425f-9cc6-5320c6779ffd}; !- Port 1 + +OS:PortList, + {2189b3a7-a01a-4e9d-86f2-f62bf94dadc5}, !- Handle + {133b0946-c166-49b6-ac7d-7d9a4a92a3c0}, !- HVAC Component + {c4efce12-f77b-4b96-8b92-88b42d05eccf}; !- Port 1 + +OS:Sizing:Zone, + {49dfa970-1b37-49d8-8b30-dd54f6ff88d2}, !- Handle + {133b0946-c166-49b6-ac7d-7d9a4a92a3c0}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {35542426-8bc2-4b8c-b6ff-85fd0e3ee3fc}, !- Handle + Zone Outpatient PACU B - Story ground Zone HVAC Equipment List, !- Name + {133b0946-c166-49b6-ac7d-7d9a4a92a3c0}, !- Thermal Zone + , !- Load Distribution Scheme + {d68665e7-082d-4941-9018-fc9bb923e926}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {eaf7cacd-af08-4b8c-bd2d-c65a7f4f714b}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {82b735f6-7c08-4943-bc50-b67bb574fe97}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {979feccc-0b1b-425e-9736-b40388b31087}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {1e18da95-5cb4-40d3-9a81-fe5e67e03b16}, !- Handle + Outpatient PACU C - Story ground, !- Name + {171a2876-5f59-46c1-9438-827411e98017}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 127.573575263757, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {15c96e93-0df7-4099-9ec9-9b153e0bd337}; !- Thermal Zone Name + +OS:Surface, + {1232f7f9-3881-43d5-98ee-b8e6eb777213}, !- Handle + Surface 557, !- Name + Floor, !- Surface Type + {7639bb46-5a71-4dcf-8833-bd46abad1522}, !- Construction Name + {1e18da95-5cb4-40d3-9a81-fe5e67e03b16}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.5265128291212e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + 8.5265128291212e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 4.56907948849511, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 4.56907948849511, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {de443a19-31ac-4090-8824-d428585ce533}, !- Handle + Surface 558, !- Name + Wall, !- Surface Type + , !- Construction Name + {1e18da95-5cb4-40d3-9a81-fe5e67e03b16}, !- Space Name + Surface, !- Outside Boundary Condition + {aa885458-ff67-4ac1-bffd-f567e92f91c5}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -4.2632564145606e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + -4.2632564145606e-13, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + -4.2632564145606e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + -4.2632564145606e-13, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {a93b797d-d5d4-4726-ba99-2af290beac56}, !- Handle + Surface 559, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {1e18da95-5cb4-40d3-9a81-fe5e67e03b16}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.5265128291212e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 4.56907948849511, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 4.56907948849511, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 8.5265128291212e-14, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {f8113751-9979-481e-a629-e20237dfc40d}, !- Handle + Surface 560, !- Name + Wall, !- Surface Type + , !- Construction Name + {1e18da95-5cb4-40d3-9a81-fe5e67e03b16}, !- Space Name + Surface, !- Outside Boundary Condition + {5c28b486-3ddd-435b-95cd-d46735ecc091}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.56907948849511, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 4.56907948849511, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 4.56907948849511, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 4.56907948849511, 4.57199999999976, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {cda5603d-92d1-4dda-974e-04b127ec3cc3}, !- Handle + Surface 561, !- Name + Wall, !- Surface Type + , !- Construction Name + {1e18da95-5cb4-40d3-9a81-fe5e67e03b16}, !- Space Name + Surface, !- Outside Boundary Condition + {b47869d0-81f3-4974-aecb-68ebd2795b74}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.5265128291212e-14, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 8.5265128291212e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 4.56907948849511, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 4.56907948849511, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {355f87bf-918a-483c-8bbe-f9b9b46025ee}, !- Handle + Surface 562, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {1e18da95-5cb4-40d3-9a81-fe5e67e03b16}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 4.56907948849511, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 4.56907948849511, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 8.5265128291212e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + 8.5265128291212e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {15c96e93-0df7-4099-9ec9-9b153e0bd337}, !- Handle + Zone Outpatient PACU C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {0117bc38-3393-423e-aedd-b224a0495cf6}, !- Zone Air Inlet Port List + {bfa479ce-cf0f-4184-8a0a-96c71c176b5d}, !- Zone Air Exhaust Port List + {7b36b746-86e3-49bc-ae8e-17f56cbb1c00}, !- Zone Air Node Name + {d1781b8f-222d-4e0a-9eb9-bc0b9273cc82}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {7c08fae6-0481-45aa-9cdf-7a477be13ffc}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {001a3228-bdb9-415d-b4c5-31fedade7bdb}, !- Handle + Zone Outpatient PACU C - Story ground Zone Air Node, !- Name + {7b36b746-86e3-49bc-ae8e-17f56cbb1c00}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {7b36b746-86e3-49bc-ae8e-17f56cbb1c00}, !- Handle + {15c96e93-0df7-4099-9ec9-9b153e0bd337}, !- Source Object + 11, !- Outlet Port + {001a3228-bdb9-415d-b4c5-31fedade7bdb}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {0117bc38-3393-423e-aedd-b224a0495cf6}, !- Handle + {15c96e93-0df7-4099-9ec9-9b153e0bd337}, !- HVAC Component + {0c263043-ea60-4a13-b0af-de0e6905690d}, !- Port 1 + {d3d8af3f-c6ba-49c7-9a7e-1eadb1e0af3f}; !- Port 2 + +OS:PortList, + {bfa479ce-cf0f-4184-8a0a-96c71c176b5d}, !- Handle + {15c96e93-0df7-4099-9ec9-9b153e0bd337}, !- HVAC Component + {3be126bf-d99f-4f73-bd88-0cb7ea48b387}; !- Port 1 + +OS:PortList, + {d1781b8f-222d-4e0a-9eb9-bc0b9273cc82}, !- Handle + {15c96e93-0df7-4099-9ec9-9b153e0bd337}, !- HVAC Component + {1fcd76ec-4b8d-491a-8958-0afe9d0a5554}; !- Port 1 + +OS:Sizing:Zone, + {83ed4f53-beeb-4053-8034-857314a2fcd5}, !- Handle + {15c96e93-0df7-4099-9ec9-9b153e0bd337}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {806ac62d-0113-47ab-9371-88b986f64ed6}, !- Handle + Zone Outpatient PACU C - Story ground Zone HVAC Equipment List, !- Name + {15c96e93-0df7-4099-9ec9-9b153e0bd337}, !- Thermal Zone + , !- Load Distribution Scheme + {3f1fc3b9-36c8-4b60-a466-3310d58cc97b}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {1002a7ba-3d48-4fb0-8f22-9b233ff2aecb}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {25307552-6154-4b42-8490-0006399feda4}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {05bfd489-f900-4898-94ae-e042646a9501}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {49dad92d-accf-443a-a6de-2727d958c0e0}, !- Handle + Outpatient Lounge A - Story ground, !- Name + {e67caa29-7f43-467d-9e61-3b46df30c822}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 132.142654752252, !- X Origin {m} + 58.5704835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {0156493d-4c54-4989-b6f9-aaf27ba92f2c}; !- Thermal Zone Name + +OS:Surface, + {dcdabd24-63d4-474f-9157-bcee091e51b6}, !- Handle + Surface 563, !- Name + Floor, !- Surface Type + {4dff2269-e71c-4844-8670-ce439446f189}, !- Construction Name + {49dad92d-accf-443a-a6de-2727d958c0e0}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.70530256582424e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 1 {m} + -1.70530256582424e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 5.77043228503882, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + 5.77043228503882, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {6f973a69-52b6-4301-818a-0b2c0c28c1e3}, !- Handle + Surface 564, !- Name + Wall, !- Surface Type + , !- Construction Name + {49dad92d-accf-443a-a6de-2727d958c0e0}, !- Space Name + Surface, !- Outside Boundary Condition + {177ffa71-b4ef-464c-ad85-e10e36bd0835}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.5265128291212e-14, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 8.5265128291212e-14, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + 8.5265128291212e-14, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 8.5265128291212e-14, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {278eb9ca-ed9a-4dff-8d2b-cd92c46d2864}, !- Handle + Surface 565, !- Name + Wall, !- Surface Type + , !- Construction Name + {49dad92d-accf-443a-a6de-2727d958c0e0}, !- Space Name + Surface, !- Outside Boundary Condition + {916955a0-d95e-4d3a-a8f0-7d69500f068c}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5.77043228503882, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 5.77043228503882, 4.57200000000005, 0, !- X,Y,Z Vertex 2 {m} + -1.70530256582424e-13, 4.57200000000005, 0, !- X,Y,Z Vertex 3 {m} + -1.70530256582424e-13, 4.57200000000005, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {c4e3f9a5-a76c-4bdd-89cf-a71d4160cd5e}, !- Handle + Surface 566, !- Name + Wall, !- Surface Type + , !- Construction Name + {49dad92d-accf-443a-a6de-2727d958c0e0}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5.77043228503882, 4.57200000000005, 3.048, !- X,Y,Z Vertex 1 {m} + 5.77043228503882, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 5.77043228503882, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 5.77043228503882, 4.57200000000005, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {74af8f5a-d2ec-4f50-bab0-9261f4612a64}, !- Handle + Surface 567, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {49dad92d-accf-443a-a6de-2727d958c0e0}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5.77043228503882, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -1.70530256582424e-13, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 2 {m} + -1.70530256582424e-13, 4.9737991503207e-14, 0, !- X,Y,Z Vertex 3 {m} + 5.77043228503882, 4.9737991503207e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {073bf2c8-5caf-49ed-8dc4-6ccc2b8508d3}, !- Handle + Surface 568, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {49dad92d-accf-443a-a6de-2727d958c0e0}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5.77043228503882, 4.9737991503207e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 5.77043228503882, 4.57200000000005, 3.048, !- X,Y,Z Vertex 2 {m} + -1.70530256582424e-13, 4.57200000000005, 3.048, !- X,Y,Z Vertex 3 {m} + -1.70530256582424e-13, 4.9737991503207e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {0156493d-4c54-4989-b6f9-aaf27ba92f2c}, !- Handle + Zone Outpatient Lounge A - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {e667c3f1-e117-4434-9ed8-53015a4efe74}, !- Zone Air Inlet Port List + {9b03f00f-21be-474e-99fb-3602b8962dcb}, !- Zone Air Exhaust Port List + {428943e0-7625-41aa-ab99-df6e4921d785}, !- Zone Air Node Name + {cf07274e-0f02-429a-9085-bbd9db851ded}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {ae188e8d-5fbc-418e-b98d-752b6d7e8473}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {4b54c278-a810-432b-8019-eaa84d43ff4b}, !- Handle + Zone Outpatient Lounge A - Story ground Zone Air Node, !- Name + {428943e0-7625-41aa-ab99-df6e4921d785}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {428943e0-7625-41aa-ab99-df6e4921d785}, !- Handle + {0156493d-4c54-4989-b6f9-aaf27ba92f2c}, !- Source Object + 11, !- Outlet Port + {4b54c278-a810-432b-8019-eaa84d43ff4b}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {e667c3f1-e117-4434-9ed8-53015a4efe74}, !- Handle + {0156493d-4c54-4989-b6f9-aaf27ba92f2c}, !- HVAC Component + {3fcf4769-5ebe-4da1-bb5f-b7fc0b578806}, !- Port 1 + {64140af7-fe0b-4564-a0c5-5cfe7f6148ae}; !- Port 2 + +OS:PortList, + {9b03f00f-21be-474e-99fb-3602b8962dcb}, !- Handle + {0156493d-4c54-4989-b6f9-aaf27ba92f2c}, !- HVAC Component + {e6ff863a-0b0c-4286-ac3f-c67fe4854879}; !- Port 1 + +OS:PortList, + {cf07274e-0f02-429a-9085-bbd9db851ded}, !- Handle + {0156493d-4c54-4989-b6f9-aaf27ba92f2c}, !- HVAC Component + {1f9a5c38-e2bc-44b1-8a34-090ed298d0da}; !- Port 1 + +OS:Sizing:Zone, + {fc54c3a2-11e7-4a7b-9cfe-0e025053a472}, !- Handle + {0156493d-4c54-4989-b6f9-aaf27ba92f2c}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {4c00bbf0-f630-4846-a1ed-dcd04bdd3569}, !- Handle + Zone Outpatient Lounge A - Story ground Zone HVAC Equipment List, !- Name + {0156493d-4c54-4989-b6f9-aaf27ba92f2c}, !- Thermal Zone + , !- Load Distribution Scheme + {86fc0f31-9e7e-48e7-8fbb-82fc4ca20a2d}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {febb2601-22c0-4e4e-a098-904d3f746455}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {8e89b047-2584-4016-924b-65548dedfcb5}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {7777a5e8-c814-4daf-b0ba-ec4b7b8b72b4}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {f8b7515e-aa35-4e1e-a411-e3223567f7a8}, !- Handle + Outpatient Lounge B - Story ground, !- Name + {e67caa29-7f43-467d-9e61-3b46df30c822}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 132.142654752252, !- X Origin {m} + 63.1424835186458, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {91ffe4d1-dbd2-4dd2-ac4c-1434f853d219}; !- Thermal Zone Name + +OS:Surface, + {b392a699-a308-40fa-b41d-8d8fca5b62e1}, !- Handle + Surface 569, !- Name + Floor, !- Surface Type + {f127d923-9e94-42ff-8d0b-f2dabd821d07}, !- Construction Name + {f8b7515e-aa35-4e1e-a411-e3223567f7a8}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.70530256582424e-13, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 1 {m} + -1.70530256582424e-13, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 5.77043228503882, 37.1792729627082, 0, !- X,Y,Z Vertex 3 {m} + 5.77043228503882, 4.2632564145606e-14, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {60f166e4-c7d9-41aa-a626-7233b211348e}, !- Handle + Surface 570, !- Name + Wall, !- Surface Type + , !- Construction Name + {f8b7515e-aa35-4e1e-a411-e3223567f7a8}, !- Space Name + Surface, !- Outside Boundary Condition + {59298f52-5e2b-48b7-85a6-0eba4982c126}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.5265128291212e-14, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + 8.5265128291212e-14, 37.1792729627082, 0, !- X,Y,Z Vertex 2 {m} + 8.5265128291212e-14, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + 8.5265128291212e-14, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5509f8a9-cd68-40ed-89ed-462edc7995af}, !- Handle + Surface 571, !- Name + Wall, !- Surface Type + , !- Construction Name + {f8b7515e-aa35-4e1e-a411-e3223567f7a8}, !- Space Name + Surface, !- Outside Boundary Condition + {adaf8b7b-daa1-41b9-8f5a-13bc34ff91d3}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5.77043228503882, 37.179272962708, 3.048, !- X,Y,Z Vertex 1 {m} + 5.77043228503882, 37.179272962708, 0, !- X,Y,Z Vertex 2 {m} + -1.70530256582424e-13, 37.179272962708, 0, !- X,Y,Z Vertex 3 {m} + -1.70530256582424e-13, 37.179272962708, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {3250e016-bf27-4d57-b430-adb4f182ffb7}, !- Handle + Surface 572, !- Name + Wall, !- Surface Type + , !- Construction Name + {f8b7515e-aa35-4e1e-a411-e3223567f7a8}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5.77043228503882, 37.1792729627082, 3.048, !- X,Y,Z Vertex 1 {m} + 5.77043228503882, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 2 {m} + 5.77043228503882, 4.2632564145606e-14, 0, !- X,Y,Z Vertex 3 {m} + 5.77043228503882, 37.1792729627082, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {916955a0-d95e-4d3a-a8f0-7d69500f068c}, !- Handle + Surface 573, !- Name + Wall, !- Surface Type + , !- Construction Name + {f8b7515e-aa35-4e1e-a411-e3223567f7a8}, !- Space Name + Surface, !- Outside Boundary Condition + {278eb9ca-ed9a-4dff-8d2b-cd92c46d2864}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.70530256582424e-13, 5.6843418860808e-14, 3.048, !- X,Y,Z Vertex 1 {m} + -1.70530256582424e-13, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 2 {m} + 5.77043228503882, 5.6843418860808e-14, 0, !- X,Y,Z Vertex 3 {m} + 5.77043228503882, 5.6843418860808e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1f9e0a42-2850-4919-8149-82334791cc57}, !- Handle + Surface 574, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {f8b7515e-aa35-4e1e-a411-e3223567f7a8}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5.77043228503882, 4.2632564145606e-14, 3.048, !- X,Y,Z Vertex 1 {m} + 5.77043228503882, 37.1792729627082, 3.048, !- X,Y,Z Vertex 2 {m} + -1.70530256582424e-13, 37.1792729627082, 3.048, !- X,Y,Z Vertex 3 {m} + -1.70530256582424e-13, 4.2632564145606e-14, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {91ffe4d1-dbd2-4dd2-ac4c-1434f853d219}, !- Handle + Zone Outpatient Lounge B - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {68296f38-1685-4424-a076-531352871c44}, !- Zone Air Inlet Port List + {79e4e0ea-18e2-40e6-b022-db997a4ef79c}, !- Zone Air Exhaust Port List + {24d24dc2-b425-4dbf-882e-91529231729b}, !- Zone Air Node Name + {301c4ac7-d06e-4a6c-b4c7-71463d606d1a}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {dda68162-68ff-47de-9e5f-fdefd17ac3b6}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {e475dfc4-2ad8-4715-91a2-b98624ed9437}, !- Handle + Zone Outpatient Lounge B - Story ground Zone Air Node, !- Name + {24d24dc2-b425-4dbf-882e-91529231729b}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {24d24dc2-b425-4dbf-882e-91529231729b}, !- Handle + {91ffe4d1-dbd2-4dd2-ac4c-1434f853d219}, !- Source Object + 11, !- Outlet Port + {e475dfc4-2ad8-4715-91a2-b98624ed9437}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {68296f38-1685-4424-a076-531352871c44}, !- Handle + {91ffe4d1-dbd2-4dd2-ac4c-1434f853d219}, !- HVAC Component + {6098e443-9cf0-409d-a46b-5f5fbedb8d05}, !- Port 1 + {d809ab38-cd86-4ba0-b410-451ab4c8e79b}; !- Port 2 + +OS:PortList, + {79e4e0ea-18e2-40e6-b022-db997a4ef79c}, !- Handle + {91ffe4d1-dbd2-4dd2-ac4c-1434f853d219}, !- HVAC Component + {316e5c89-d404-428d-84d7-ac7f80bd1d11}; !- Port 1 + +OS:PortList, + {301c4ac7-d06e-4a6c-b4c7-71463d606d1a}, !- Handle + {91ffe4d1-dbd2-4dd2-ac4c-1434f853d219}, !- HVAC Component + {fca5077b-6210-45be-823a-9bb323b6c23a}; !- Port 1 + +OS:Sizing:Zone, + {db0e36fa-c73a-49a5-a504-a945c75abfb4}, !- Handle + {91ffe4d1-dbd2-4dd2-ac4c-1434f853d219}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {dd95440f-bbc2-475c-80f9-f00ad8af692b}, !- Handle + Zone Outpatient Lounge B - Story ground Zone HVAC Equipment List, !- Name + {91ffe4d1-dbd2-4dd2-ac4c-1434f853d219}, !- Thermal Zone + , !- Load Distribution Scheme + {88f63901-5b95-4e8c-a8f3-6205410d6312}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {290d72b8-3861-4d93-bc76-08ab252705f5}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {d9b1b3a3-9f87-498e-91ab-34191aa021ba}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {70775bbc-6ece-4ec5-8652-9c352e6fed1d}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:Space, + {3868ff9d-9a90-4997-afe7-1670c60677e0}, !- Handle + Outpatient Lounge C - Story ground, !- Name + {e67caa29-7f43-467d-9e61-3b46df30c822}, !- Space Type Name + , !- Default Construction Set Name + , !- Default Schedule Set Name + -0, !- Direction of Relative North {deg} + 132.142654752252, !- X Origin {m} + 100.321756481354, !- Y Origin {m} + 0, !- Z Origin {m} + {860257e3-c48d-4876-a91e-92023e9305dc}, !- Building Story Name + {07b7eb12-243e-4a44-b7a6-01328a62ee7a}; !- Thermal Zone Name + +OS:Surface, + {eed47ae5-ac00-42df-ac44-529434286562}, !- Handle + Surface 575, !- Name + Floor, !- Surface Type + {4dff2269-e71c-4844-8670-ce439446f189}, !- Construction Name + {3868ff9d-9a90-4997-afe7-1670c60677e0}, !- Space Name + GroundFCfactorMethod, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.70530256582424e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 1 {m} + -1.70530256582424e-13, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 5.77043228503882, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + 5.77043228503882, -2.41584530158434e-13, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {5c28b486-3ddd-435b-95cd-d46735ecc091}, !- Handle + Surface 576, !- Name + Wall, !- Surface Type + , !- Construction Name + {3868ff9d-9a90-4997-afe7-1670c60677e0}, !- Space Name + Surface, !- Outside Boundary Condition + {f8113751-9979-481e-a629-e20237dfc40d}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 8.5265128291212e-14, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 8.5265128291212e-14, 4.57199999999976, 0, !- X,Y,Z Vertex 2 {m} + 8.5265128291212e-14, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 8.5265128291212e-14, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {205ca3e6-54ad-43ec-a347-53ae605f4753}, !- Handle + Surface 577, !- Name + Wall, !- Surface Type + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + {3868ff9d-9a90-4997-afe7-1670c60677e0}, !- Space Name + Adiabatic, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.70530256582424e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 5.77043228503882, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + 5.77043228503882, 4.57199999999976, 0, !- X,Y,Z Vertex 3 {m} + -1.70530256582424e-13, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {e4493ecf-6152-4b60-8d64-c23f9ae80569}, !- Handle + Surface 578, !- Name + Wall, !- Surface Type + , !- Construction Name + {3868ff9d-9a90-4997-afe7-1670c60677e0}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5.77043228503882, 4.57199999999976, 3.048, !- X,Y,Z Vertex 1 {m} + 5.77043228503882, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 2 {m} + 5.77043228503882, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 5.77043228503882, 4.57199999999976, 0; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {adaf8b7b-daa1-41b9-8f5a-13bc34ff91d3}, !- Handle + Surface 579, !- Name + Wall, !- Surface Type + , !- Construction Name + {3868ff9d-9a90-4997-afe7-1670c60677e0}, !- Space Name + Surface, !- Outside Boundary Condition + {5509f8a9-cd68-40ed-89ed-462edc7995af}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + -1.70530256582424e-13, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + -1.70530256582424e-13, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 2 {m} + 5.77043228503882, -2.41584530158434e-13, 0, !- X,Y,Z Vertex 3 {m} + 5.77043228503882, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:Surface, + {1c0cc5bc-ea81-4438-a207-9cd0bce18e96}, !- Handle + Surface 580, !- Name + RoofCeiling, !- Surface Type + , !- Construction Name + {3868ff9d-9a90-4997-afe7-1670c60677e0}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + , !- View Factor to Ground + , !- Number of Vertices + 5.77043228503882, -2.41584530158434e-13, 3.048, !- X,Y,Z Vertex 1 {m} + 5.77043228503882, 4.57199999999976, 3.048, !- X,Y,Z Vertex 2 {m} + -1.70530256582424e-13, 4.57199999999976, 3.048, !- X,Y,Z Vertex 3 {m} + -1.70530256582424e-13, -2.41584530158434e-13, 3.048; !- X,Y,Z Vertex 4 {m} + +OS:ThermalZone, + {07b7eb12-243e-4a44-b7a6-01328a62ee7a}, !- Handle + Zone Outpatient Lounge C - Story ground, !- Name + 1, !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {b69da898-2f64-46d1-b60a-3fc751d64f14}, !- Zone Air Inlet Port List + {97412dab-d2ee-4a19-8fa9-cf1e7d455707}, !- Zone Air Exhaust Port List + {2dfe3eed-de57-46e5-82cf-91c1f98802d3}, !- Zone Air Node Name + {7c92c411-bc96-46f1-a103-11b7b0c7712e}, !- Zone Return Air Port List + , !- Primary Daylighting Control Name + , !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + , !- Illuminance Map Name + , !- Group Rendering Name + {051ac48a-966a-4508-b075-e3fc2280d3a1}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {e74033d8-5582-4d1c-8e4e-2e1eef507903}, !- Handle + Zone Outpatient Lounge C - Story ground Zone Air Node, !- Name + {2dfe3eed-de57-46e5-82cf-91c1f98802d3}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {2dfe3eed-de57-46e5-82cf-91c1f98802d3}, !- Handle + {07b7eb12-243e-4a44-b7a6-01328a62ee7a}, !- Source Object + 11, !- Outlet Port + {e74033d8-5582-4d1c-8e4e-2e1eef507903}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {b69da898-2f64-46d1-b60a-3fc751d64f14}, !- Handle + {07b7eb12-243e-4a44-b7a6-01328a62ee7a}, !- HVAC Component + {c06852f6-a8e3-46a6-a538-726563f8dd68}, !- Port 1 + {16eadbb1-b2d0-4786-a392-28afd8481568}; !- Port 2 + +OS:PortList, + {97412dab-d2ee-4a19-8fa9-cf1e7d455707}, !- Handle + {07b7eb12-243e-4a44-b7a6-01328a62ee7a}, !- HVAC Component + {3dc49d67-3f67-4cb5-96be-2e70f54efccb}; !- Port 1 + +OS:PortList, + {7c92c411-bc96-46f1-a103-11b7b0c7712e}, !- Handle + {07b7eb12-243e-4a44-b7a6-01328a62ee7a}, !- HVAC Component + {4d8cb2de-40c4-4fbb-900a-90a2cd81c1c3}; !- Port 1 + +OS:Sizing:Zone, + {32c4b6c8-008a-40b0-a3e8-af8f35fb66be}, !- Handle + {07b7eb12-243e-4a44-b7a6-01328a62ee7a}, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 14, !- Zone Cooling Design Supply Air Temperature {C} + 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 40, !- Zone Heating Design Supply Air Temperature {C} + 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air} + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + Yes, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + 15.556, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + 21.111, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + +OS:ZoneHVAC:EquipmentList, + {a9122a58-8f1e-4ba1-a59e-8080f5ead945}, !- Handle + Zone Outpatient Lounge C - Story ground Zone HVAC Equipment List, !- Name + {07b7eb12-243e-4a44-b7a6-01328a62ee7a}, !- Thermal Zone + , !- Load Distribution Scheme + {5c6d4730-87a7-402c-8d2d-55fe1a32aca9}, !- Zone Equipment 1 + 1, !- Zone Equipment Cooling Sequence 1 + 1, !- Zone Equipment Heating or No-Load Sequence 1 + {d6f4446d-1fc4-4d83-bda5-2c05174d4598}, !- Zone Equipment Sequential Cooling Fraction Schedule Name 1 + {2357d25b-7cde-444a-964d-654a08dcb2a4}, !- Zone Equipment Sequential Heating Fraction Schedule Name 1 + {1676a82e-d8e2-4791-9524-d93c31958956}, !- Zone Equipment 2 + 2, !- Zone Equipment Cooling Sequence 2 + 2, !- Zone Equipment Heating or No-Load Sequence 2 + , !- Zone Equipment Sequential Cooling Fraction Schedule Name 2 + ; !- Zone Equipment Sequential Heating Fraction Schedule Name 2 + +OS:SubSurface, + {00fa94a8-cb8c-430b-81c6-1725010e9396}, !- Handle + Sub Surface 23, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {8f50827e-9070-4f9c-a9c2-464e4270b541}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0, 4.54660000000005, 3.0226, !- X,Y,Z Vertex 1 {m} + 0, 4.54660000000005, 0.310222471910113, !- X,Y,Z Vertex 2 {m} + 0, 0.0254000000000492, 0.310222471910113, !- X,Y,Z Vertex 3 {m} + 0, 0.0254000000000492, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {fb296237-0169-4612-8515-e05375d491c0}, !- Handle + Sub Surface 24, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {25d48384-d54a-4685-b5c1-2ee1d7169912}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0, 4.54659999999976, 3.0226, !- X,Y,Z Vertex 1 {m} + 0, 4.54659999999976, 0.310222471910112, !- X,Y,Z Vertex 2 {m} + 0, 0.0253999999997578, 0.310222471910112, !- X,Y,Z Vertex 3 {m} + 0, 0.0253999999997578, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {cbdfc5da-381c-4062-83d0-a1fa7c4a975b}, !- Handle + Sub Surface 25, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {8561fd74-ebbf-4d0e-bc51-96c45b7cac4a}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 0, 37.1538729627082, 3.0226, !- X,Y,Z Vertex 1 {m} + 0, 37.1538729627082, 0.336690099755601, !- X,Y,Z Vertex 2 {m} + 0, 0.0254000000000474, 0.336690099755601, !- X,Y,Z Vertex 3 {m} + 0, 0.0254000000000474, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {5b3190d7-9557-4af6-931c-7fc0f1bff6df}, !- Handle + Sub Surface 26, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {c4e3f9a5-a76c-4bdd-89cf-a71d4160cd5e}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 5.77043228503882, 0.0254000000000497, 3.0226, !- X,Y,Z Vertex 1 {m} + 5.77043228503882, 0.0254000000000497, 0.310222471910113, !- X,Y,Z Vertex 2 {m} + 5.77043228503882, 4.54660000000005, 0.310222471910113, !- X,Y,Z Vertex 3 {m} + 5.77043228503882, 4.54660000000005, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {0651f0e4-5c35-4cb8-93fb-6e616158e7ac}, !- Handle + Sub Surface 27, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {e4493ecf-6152-4b60-8d64-c23f9ae80569}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 5.77043228503882, 0.0253999999997584, 3.0226, !- X,Y,Z Vertex 1 {m} + 5.77043228503882, 0.0253999999997584, 0.310222471910112, !- X,Y,Z Vertex 2 {m} + 5.77043228503882, 4.54659999999976, 0.310222471910112, !- X,Y,Z Vertex 3 {m} + 5.77043228503882, 4.54659999999976, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:SubSurface, + {8af4a314-eeeb-4df4-8aaa-826be8ffaa87}, !- Handle + Sub Surface 28, !- Name + FixedWindow, !- Sub Surface Type + , !- Construction Name + {3250e016-bf27-4d57-b430-adb4f182ffb7}, !- Surface Name + , !- Outside Boundary Condition Object + , !- View Factor to Ground + , !- Frame and Divider Name + , !- Multiplier + , !- Number of Vertices + 5.77043228503882, 0.0254000000000426, 3.0226, !- X,Y,Z Vertex 1 {m} + 5.77043228503882, 0.0254000000000426, 0.336690099755601, !- X,Y,Z Vertex 2 {m} + 5.77043228503882, 37.1538729627082, 0.336690099755601, !- X,Y,Z Vertex 3 {m} + 5.77043228503882, 37.1538729627082, 3.0226; !- X,Y,Z Vertex 4 {m} + +OS:Lights:Definition, + {8d1ce256-6cee-483a-989e-4cff669e13e9}, !- Handle + Outpatient Anesthesia Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 22.6042118750904, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.642335, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {55587424-dc9e-4daa-bc3d-0e12acf7b458}, !- Handle + {8d1ce256-6cee-483a-989e-4cff669e13e9}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.87250000000000005, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.094, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0293, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0041999999999999997; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {fc2c9496-9888-41be-89d6-c64ff8e41049}, !- Handle + Outpatient Anesthesia Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 21.5278208334194, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {8c144831-c1c4-4c60-a55e-b8ba97e8b1cc}, !- Handle + Outpatient Anesthesia Elec Equip, !- Name + {fc2c9496-9888-41be-89d6-c64ff8e41049}, !- Electric Equipment Definition Name + {8c151d9d-16aa-4372-a68e-592d90c257bc}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {30fae86d-8404-4155-9dcf-c503dcfa5922}, !- Handle + Outpatient Anesthesia Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.002286, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {bc94fa66-d803-4363-b5fc-d427752417e6}, !- Handle + Outpatient Anesthesia Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Schedule:Ruleset, + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Handle + Outpatient Bldg Occ, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + {b0640a8c-8711-4b91-8e89-4008471147ee}, !- Default Day Schedule Name + {1a2006a3-eb34-4fca-977a-6afafe00ef3b}, !- Summer Design Day Schedule Name + {49418bcb-3ea8-4bc0-b6e4-b5412eb7d345}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {b0640a8c-8711-4b91-8e89-4008471147ee}, !- Handle + Outpatient Bldg Occ Default, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 7, !- Hour 1 + 15, !- Minute 1 + 0.05, !- Value Until Time 1 + 7, !- Hour 2 + 30, !- Minute 2 + 0.06875, !- Value Until Time 2 + 7, !- Hour 3 + 45, !- Minute 3 + 0.0875, !- Value Until Time 3 + 8, !- Hour 4 + 0, !- Minute 4 + 0.10625, !- Value Until Time 4 + 8, !- Hour 5 + 15, !- Minute 5 + 0.125, !- Value Until Time 5 + 8, !- Hour 6 + 30, !- Minute 6 + 0.14375, !- Value Until Time 6 + 8, !- Hour 7 + 45, !- Minute 7 + 0.1625, !- Value Until Time 7 + 9, !- Hour 8 + 0, !- Minute 8 + 0.18125, !- Value Until Time 8 + 9, !- Hour 9 + 15, !- Minute 9 + 0.2, !- Value Until Time 9 + 9, !- Hour 10 + 45, !- Minute 10 + 0.2, !- Value Until Time 10 + 10, !- Hour 11 + 0, !- Minute 11 + 0.275, !- Value Until Time 11 + 10, !- Hour 12 + 15, !- Minute 12 + 0.35, !- Value Until Time 12 + 10, !- Hour 13 + 30, !- Minute 13 + 0.425, !- Value Until Time 13 + 10, !- Hour 14 + 45, !- Minute 14 + 0.5, !- Value Until Time 14 + 11, !- Hour 15 + 0, !- Minute 15 + 0.6, !- Value Until Time 15 + 11, !- Hour 16 + 15, !- Minute 16 + 0.7, !- Value Until Time 16 + 11, !- Hour 17 + 30, !- Minute 17 + 0.8, !- Value Until Time 17 + 11, !- Hour 18 + 45, !- Minute 18 + 0.9, !- Value Until Time 18 + 13, !- Hour 19 + 15, !- Minute 19 + 0.9, !- Value Until Time 19 + 13, !- Hour 20 + 30, !- Minute 20 + 0.85, !- Value Until Time 20 + 13, !- Hour 21 + 45, !- Minute 21 + 0.8, !- Value Until Time 21 + 14, !- Hour 22 + 0, !- Minute 22 + 0.75, !- Value Until Time 22 + 14, !- Hour 23 + 15, !- Minute 23 + 0.7, !- Value Until Time 23 + 14, !- Hour 24 + 30, !- Minute 24 + 0.65, !- Value Until Time 24 + 14, !- Hour 25 + 45, !- Minute 25 + 0.6, !- Value Until Time 25 + 15, !- Hour 26 + 0, !- Minute 26 + 0.55, !- Value Until Time 26 + 15, !- Hour 27 + 15, !- Minute 27 + 0.5, !- Value Until Time 27 + 15, !- Hour 28 + 30, !- Minute 28 + 0.4625, !- Value Until Time 28 + 15, !- Hour 29 + 45, !- Minute 29 + 0.425, !- Value Until Time 29 + 16, !- Hour 30 + 0, !- Minute 30 + 0.3875, !- Value Until Time 30 + 16, !- Hour 31 + 15, !- Minute 31 + 0.35, !- Value Until Time 31 + 16, !- Hour 32 + 30, !- Minute 32 + 0.3125, !- Value Until Time 32 + 16, !- Hour 33 + 45, !- Minute 33 + 0.275, !- Value Until Time 33 + 17, !- Hour 34 + 0, !- Minute 34 + 0.2375, !- Value Until Time 34 + 17, !- Hour 35 + 15, !- Minute 35 + 0.2, !- Value Until Time 35 + 17, !- Hour 36 + 30, !- Minute 36 + 0.18125, !- Value Until Time 36 + 17, !- Hour 37 + 45, !- Minute 37 + 0.1625, !- Value Until Time 37 + 18, !- Hour 38 + 0, !- Minute 38 + 0.14375, !- Value Until Time 38 + 18, !- Hour 39 + 15, !- Minute 39 + 0.125, !- Value Until Time 39 + 18, !- Hour 40 + 30, !- Minute 40 + 0.10625, !- Value Until Time 40 + 18, !- Hour 41 + 45, !- Minute 41 + 0.0875, !- Value Until Time 41 + 19, !- Hour 42 + 0, !- Minute 42 + 0.06875, !- Value Until Time 42 + 19, !- Hour 43 + 15, !- Minute 43 + 0.05, !- Value Until Time 43 + 24, !- Hour 44 + 0, !- Minute 44 + 0.05; !- Value Until Time 44 + +OS:Schedule:Day, + {1a2006a3-eb34-4fca-977a-6afafe00ef3b}, !- Handle + Outpatient Bldg Occ Summer Design Day, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 4, !- Hour 1 + 0, !- Minute 1 + 0.05, !- Value Until Time 1 + 6, !- Hour 2 + 0, !- Minute 2 + 0.2, !- Value Until Time 2 + 7, !- Hour 3 + 0, !- Minute 3 + 0.5, !- Value Until Time 3 + 18, !- Hour 4 + 0, !- Minute 4 + 0.9, !- Value Until Time 4 + 20, !- Hour 5 + 0, !- Minute 5 + 0.5, !- Value Until Time 5 + 22, !- Hour 6 + 0, !- Minute 6 + 0.2, !- Value Until Time 6 + 24, !- Hour 7 + 0, !- Minute 7 + 0.05; !- Value Until Time 7 + +OS:Schedule:Rule, + {9ab33a1f-94a8-4b57-8974-0a8c749d2841}, !- Handle + Schedule Rule 1, !- Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Schedule Ruleset Name + 1, !- Rule Order + {88e69f36-344b-472a-90d2-ca62d66f9d49}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {88e69f36-344b-472a-90d2-ca62d66f9d49}, !- Handle + Outpatient Bldg Occ Sat Day, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 8, !- Hour 1 + 45, !- Minute 1 + 0.05, !- Value Until Time 1 + 9, !- Hour 2 + 0, !- Minute 2 + 0.06875, !- Value Until Time 2 + 9, !- Hour 3 + 15, !- Minute 3 + 0.0875, !- Value Until Time 3 + 9, !- Hour 4 + 30, !- Minute 4 + 0.10625, !- Value Until Time 4 + 9, !- Hour 5 + 45, !- Minute 5 + 0.125, !- Value Until Time 5 + 10, !- Hour 6 + 0, !- Minute 6 + 0.14375, !- Value Until Time 6 + 10, !- Hour 7 + 15, !- Minute 7 + 0.1625, !- Value Until Time 7 + 10, !- Hour 8 + 30, !- Minute 8 + 0.18125, !- Value Until Time 8 + 10, !- Hour 9 + 45, !- Minute 9 + 0.2, !- Value Until Time 9 + 11, !- Hour 10 + 0, !- Minute 10 + 0.214285714285714, !- Value Until Time 10 + 11, !- Hour 11 + 15, !- Minute 11 + 0.228571428571429, !- Value Until Time 11 + 11, !- Hour 12 + 30, !- Minute 12 + 0.242857142857143, !- Value Until Time 12 + 11, !- Hour 13 + 45, !- Minute 13 + 0.257142857142857, !- Value Until Time 13 + 12, !- Hour 14 + 0, !- Minute 14 + 0.271428571428571, !- Value Until Time 14 + 12, !- Hour 15 + 15, !- Minute 15 + 0.285714285714286, !- Value Until Time 15 + 12, !- Hour 16 + 30, !- Minute 16 + 0.3, !- Value Until Time 16 + 12, !- Hour 17 + 45, !- Minute 17 + 0.266666666666667, !- Value Until Time 17 + 13, !- Hour 18 + 0, !- Minute 18 + 0.233333333333333, !- Value Until Time 18 + 13, !- Hour 19 + 15, !- Minute 19 + 0.2, !- Value Until Time 19 + 14, !- Hour 20 + 15, !- Minute 20 + 0.2, !- Value Until Time 20 + 14, !- Hour 21 + 30, !- Minute 21 + 0.190625, !- Value Until Time 21 + 14, !- Hour 22 + 45, !- Minute 22 + 0.18125, !- Value Until Time 22 + 15, !- Hour 23 + 0, !- Minute 23 + 0.171875, !- Value Until Time 23 + 15, !- Hour 24 + 15, !- Minute 24 + 0.1625, !- Value Until Time 24 + 15, !- Hour 25 + 30, !- Minute 25 + 0.153125, !- Value Until Time 25 + 15, !- Hour 26 + 45, !- Minute 26 + 0.14375, !- Value Until Time 26 + 16, !- Hour 27 + 0, !- Minute 27 + 0.134375, !- Value Until Time 27 + 16, !- Hour 28 + 15, !- Minute 28 + 0.125, !- Value Until Time 28 + 16, !- Hour 29 + 30, !- Minute 29 + 0.115625, !- Value Until Time 29 + 16, !- Hour 30 + 45, !- Minute 30 + 0.10625, !- Value Until Time 30 + 17, !- Hour 31 + 0, !- Minute 31 + 0.096875, !- Value Until Time 31 + 17, !- Hour 32 + 15, !- Minute 32 + 0.0875, !- Value Until Time 32 + 17, !- Hour 33 + 30, !- Minute 33 + 0.078125, !- Value Until Time 33 + 17, !- Hour 34 + 45, !- Minute 34 + 0.06875, !- Value Until Time 34 + 18, !- Hour 35 + 0, !- Minute 35 + 0.059375, !- Value Until Time 35 + 18, !- Hour 36 + 15, !- Minute 36 + 0.05, !- Value Until Time 36 + 24, !- Hour 37 + 0, !- Minute 37 + 0.05; !- Value Until Time 37 + +OS:Schedule:Day, + {49418bcb-3ea8-4bc0-b6e4-b5412eb7d345}, !- Handle + Outpatient Bldg Occ Winter Design Day, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 17, !- Hour 2 + 0, !- Minute 2 + 0.05, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Rule, + {367dd621-cd02-4c1c-bb2c-dbc4339d9d7c}, !- Handle + Schedule Rule 2, !- Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Schedule Ruleset Name + 0, !- Rule Order + {bd976fb7-20a8-4b31-985a-18bdf5fdc490}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {bd976fb7-20a8-4b31-985a-18bdf5fdc490}, !- Handle + Outpatient Bldg Occ WntrDsn|Sun Day, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 9, !- Hour 1 + 45, !- Minute 1 + 0, !- Value Until Time 1 + 16, !- Hour 2 + 15, !- Minute 2 + 0.05, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:ScheduleTypeLimits, + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Handle + Fractional, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Continuous; !- Numeric Type + +OS:Schedule:Ruleset, + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- Handle + Outpatient Activity, !- Name + {cd37eae1-ef04-45e1-ac7c-f85a9c973f19}, !- Schedule Type Limits Name + {10c7b2d6-4f91-41c4-9b68-b7e5d3c30473}, !- Default Day Schedule Name + {7c212331-b49c-4296-b246-851ffc741c04}, !- Summer Design Day Schedule Name + {c965b71b-9d3b-4994-95e9-4e04dea8edfe}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {10c7b2d6-4f91-41c4-9b68-b7e5d3c30473}, !- Handle + Outpatient Activity Default, !- Name + {cd37eae1-ef04-45e1-ac7c-f85a9c973f19}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 20, !- Hour 1 + 15, !- Minute 1 + 120, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 120; !- Value Until Time 2 + +OS:Schedule:Day, + {c965b71b-9d3b-4994-95e9-4e04dea8edfe}, !- Handle + Outpatient Activity Winter Design Day, !- Name + {cd37eae1-ef04-45e1-ac7c-f85a9c973f19}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 120; !- Value Until Time 1 + +OS:Schedule:Day, + {7c212331-b49c-4296-b246-851ffc741c04}, !- Handle + Outpatient Activity Summer Design Day, !- Name + {cd37eae1-ef04-45e1-ac7c-f85a9c973f19}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 120; !- Value Until Time 1 + +OS:ScheduleTypeLimits, + {cd37eae1-ef04-45e1-ac7c-f85a9c973f19}, !- Handle + ActivityLevel, !- Name + 0, !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + ActivityLevel; !- Unit Type + +OS:Schedule:Ruleset, + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Handle + Outpatient Bldg Light, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + {092ea8d7-0c3f-4e54-aa04-6a48611c9deb}, !- Default Day Schedule Name + {cb56be6c-c9f5-418b-a74d-5e36d97f5ad1}, !- Summer Design Day Schedule Name + {078fae19-505a-45b6-8c73-a982ba03a62c}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {092ea8d7-0c3f-4e54-aa04-6a48611c9deb}, !- Handle + Outpatient Bldg Light Default, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 7, !- Hour 1 + 15, !- Minute 1 + 0.1, !- Value Until Time 1 + 7, !- Hour 2 + 30, !- Minute 2 + 0.125, !- Value Until Time 2 + 7, !- Hour 3 + 45, !- Minute 3 + 0.15, !- Value Until Time 3 + 8, !- Hour 4 + 0, !- Minute 4 + 0.175, !- Value Until Time 4 + 8, !- Hour 5 + 15, !- Minute 5 + 0.2, !- Value Until Time 5 + 8, !- Hour 6 + 30, !- Minute 6 + 0.225, !- Value Until Time 6 + 8, !- Hour 7 + 45, !- Minute 7 + 0.25, !- Value Until Time 7 + 9, !- Hour 8 + 0, !- Minute 8 + 0.275, !- Value Until Time 8 + 9, !- Hour 9 + 15, !- Minute 9 + 0.3, !- Value Until Time 9 + 9, !- Hour 10 + 45, !- Minute 10 + 0.3, !- Value Until Time 10 + 10, !- Hour 11 + 0, !- Minute 11 + 0.375, !- Value Until Time 11 + 10, !- Hour 12 + 15, !- Minute 12 + 0.45, !- Value Until Time 12 + 10, !- Hour 13 + 30, !- Minute 13 + 0.525, !- Value Until Time 13 + 10, !- Hour 14 + 45, !- Minute 14 + 0.6, !- Value Until Time 14 + 11, !- Hour 15 + 0, !- Minute 15 + 0.675, !- Value Until Time 15 + 11, !- Hour 16 + 15, !- Minute 16 + 0.75, !- Value Until Time 16 + 11, !- Hour 17 + 30, !- Minute 17 + 0.825, !- Value Until Time 17 + 11, !- Hour 18 + 45, !- Minute 18 + 0.9, !- Value Until Time 18 + 13, !- Hour 19 + 15, !- Minute 19 + 0.9, !- Value Until Time 19 + 13, !- Hour 20 + 30, !- Minute 20 + 0.8625, !- Value Until Time 20 + 13, !- Hour 21 + 45, !- Minute 21 + 0.825, !- Value Until Time 21 + 14, !- Hour 22 + 0, !- Minute 22 + 0.7875, !- Value Until Time 22 + 14, !- Hour 23 + 15, !- Minute 23 + 0.75, !- Value Until Time 23 + 14, !- Hour 24 + 30, !- Minute 24 + 0.7125, !- Value Until Time 24 + 14, !- Hour 25 + 45, !- Minute 25 + 0.675, !- Value Until Time 25 + 15, !- Hour 26 + 0, !- Minute 26 + 0.6375, !- Value Until Time 26 + 15, !- Hour 27 + 15, !- Minute 27 + 0.6, !- Value Until Time 27 + 15, !- Hour 28 + 30, !- Minute 28 + 0.5625, !- Value Until Time 28 + 15, !- Hour 29 + 45, !- Minute 29 + 0.525, !- Value Until Time 29 + 16, !- Hour 30 + 0, !- Minute 30 + 0.4875, !- Value Until Time 30 + 16, !- Hour 31 + 15, !- Minute 31 + 0.45, !- Value Until Time 31 + 16, !- Hour 32 + 30, !- Minute 32 + 0.4125, !- Value Until Time 32 + 16, !- Hour 33 + 45, !- Minute 33 + 0.375, !- Value Until Time 33 + 17, !- Hour 34 + 0, !- Minute 34 + 0.3375, !- Value Until Time 34 + 17, !- Hour 35 + 15, !- Minute 35 + 0.3, !- Value Until Time 35 + 17, !- Hour 36 + 30, !- Minute 36 + 0.275, !- Value Until Time 36 + 17, !- Hour 37 + 45, !- Minute 37 + 0.25, !- Value Until Time 37 + 18, !- Hour 38 + 0, !- Minute 38 + 0.225, !- Value Until Time 38 + 18, !- Hour 39 + 15, !- Minute 39 + 0.2, !- Value Until Time 39 + 18, !- Hour 40 + 30, !- Minute 40 + 0.175, !- Value Until Time 40 + 18, !- Hour 41 + 45, !- Minute 41 + 0.15, !- Value Until Time 41 + 19, !- Hour 42 + 0, !- Minute 42 + 0.125, !- Value Until Time 42 + 19, !- Hour 43 + 15, !- Minute 43 + 0.1, !- Value Until Time 43 + 24, !- Hour 44 + 0, !- Minute 44 + 0.1; !- Value Until Time 44 + +OS:Schedule:Day, + {cb56be6c-c9f5-418b-a74d-5e36d97f5ad1}, !- Handle + Outpatient Bldg Light Summer Design Day, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 4, !- Hour 1 + 0, !- Minute 1 + 0.1, !- Value Until Time 1 + 6, !- Hour 2 + 0, !- Minute 2 + 0.3, !- Value Until Time 2 + 7, !- Hour 3 + 0, !- Minute 3 + 0.6, !- Value Until Time 3 + 18, !- Hour 4 + 0, !- Minute 4 + 0.9, !- Value Until Time 4 + 20, !- Hour 5 + 0, !- Minute 5 + 0.6, !- Value Until Time 5 + 22, !- Hour 6 + 0, !- Minute 6 + 0.3, !- Value Until Time 6 + 24, !- Hour 7 + 0, !- Minute 7 + 0.1; !- Value Until Time 7 + +OS:Schedule:Rule, + {9fd0ca94-89b7-4472-a3bc-c59f6b0afb91}, !- Handle + Schedule Rule 3, !- Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Schedule Ruleset Name + 1, !- Rule Order + {86a67b46-e1e5-4a76-9765-5a5f6f30929b}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {86a67b46-e1e5-4a76-9765-5a5f6f30929b}, !- Handle + Outpatient Bldg Light Sat Day, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 8, !- Hour 1 + 45, !- Minute 1 + 0.1, !- Value Until Time 1 + 9, !- Hour 2 + 0, !- Minute 2 + 0.125, !- Value Until Time 2 + 9, !- Hour 3 + 15, !- Minute 3 + 0.15, !- Value Until Time 3 + 9, !- Hour 4 + 30, !- Minute 4 + 0.175, !- Value Until Time 4 + 9, !- Hour 5 + 45, !- Minute 5 + 0.2, !- Value Until Time 5 + 10, !- Hour 6 + 0, !- Minute 6 + 0.225, !- Value Until Time 6 + 10, !- Hour 7 + 15, !- Minute 7 + 0.25, !- Value Until Time 7 + 10, !- Hour 8 + 30, !- Minute 8 + 0.275, !- Value Until Time 8 + 10, !- Hour 9 + 45, !- Minute 9 + 0.3, !- Value Until Time 9 + 11, !- Hour 10 + 0, !- Minute 10 + 0.314285714285714, !- Value Until Time 10 + 11, !- Hour 11 + 15, !- Minute 11 + 0.328571428571429, !- Value Until Time 11 + 11, !- Hour 12 + 30, !- Minute 12 + 0.342857142857143, !- Value Until Time 12 + 11, !- Hour 13 + 45, !- Minute 13 + 0.357142857142857, !- Value Until Time 13 + 12, !- Hour 14 + 0, !- Minute 14 + 0.371428571428571, !- Value Until Time 14 + 12, !- Hour 15 + 15, !- Minute 15 + 0.385714285714286, !- Value Until Time 15 + 12, !- Hour 16 + 30, !- Minute 16 + 0.4, !- Value Until Time 16 + 12, !- Hour 17 + 45, !- Minute 17 + 0.366666666666667, !- Value Until Time 17 + 13, !- Hour 18 + 0, !- Minute 18 + 0.333333333333333, !- Value Until Time 18 + 13, !- Hour 19 + 15, !- Minute 19 + 0.3, !- Value Until Time 19 + 14, !- Hour 20 + 15, !- Minute 20 + 0.3, !- Value Until Time 20 + 14, !- Hour 21 + 30, !- Minute 21 + 0.2875, !- Value Until Time 21 + 14, !- Hour 22 + 45, !- Minute 22 + 0.275, !- Value Until Time 22 + 15, !- Hour 23 + 0, !- Minute 23 + 0.2625, !- Value Until Time 23 + 15, !- Hour 24 + 15, !- Minute 24 + 0.25, !- Value Until Time 24 + 15, !- Hour 25 + 30, !- Minute 25 + 0.2375, !- Value Until Time 25 + 15, !- Hour 26 + 45, !- Minute 26 + 0.225, !- Value Until Time 26 + 16, !- Hour 27 + 0, !- Minute 27 + 0.2125, !- Value Until Time 27 + 16, !- Hour 28 + 15, !- Minute 28 + 0.2, !- Value Until Time 28 + 16, !- Hour 29 + 30, !- Minute 29 + 0.1875, !- Value Until Time 29 + 16, !- Hour 30 + 45, !- Minute 30 + 0.175, !- Value Until Time 30 + 17, !- Hour 31 + 0, !- Minute 31 + 0.1625, !- Value Until Time 31 + 17, !- Hour 32 + 15, !- Minute 32 + 0.15, !- Value Until Time 32 + 17, !- Hour 33 + 30, !- Minute 33 + 0.1375, !- Value Until Time 33 + 17, !- Hour 34 + 45, !- Minute 34 + 0.125, !- Value Until Time 34 + 18, !- Hour 35 + 0, !- Minute 35 + 0.1125, !- Value Until Time 35 + 18, !- Hour 36 + 15, !- Minute 36 + 0.1, !- Value Until Time 36 + 24, !- Hour 37 + 0, !- Minute 37 + 0.1; !- Value Until Time 37 + +OS:Schedule:Day, + {078fae19-505a-45b6-8c73-a982ba03a62c}, !- Handle + Outpatient Bldg Light Winter Design Day, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0.05, !- Value Until Time 1 + 17, !- Hour 2 + 0, !- Minute 2 + 0.1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0.05; !- Value Until Time 3 + +OS:Schedule:Rule, + {e1a5672b-322c-492a-aa2b-d70eb3005058}, !- Handle + Schedule Rule 4, !- Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Schedule Ruleset Name + 0, !- Rule Order + {fa329e44-495a-4b5f-b5d7-6fc2d3bcc775}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {fa329e44-495a-4b5f-b5d7-6fc2d3bcc775}, !- Handle + Outpatient Bldg Light WntrDsn|Sun Day, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 9, !- Hour 1 + 45, !- Minute 1 + 0.05, !- Value Until Time 1 + 16, !- Hour 2 + 15, !- Minute 2 + 0.1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0.05; !- Value Until Time 3 + +OS:Schedule:Ruleset, + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Handle + Outpatient Bldg Equip, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + {86df08e7-5758-4419-823a-772709ecc497}, !- Default Day Schedule Name + {34bb342b-053c-4d36-9ccb-757a903e4f78}, !- Summer Design Day Schedule Name + {1df8756a-fa92-4fda-aebd-0ed8187c4a02}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {86df08e7-5758-4419-823a-772709ecc497}, !- Handle + Outpatient Bldg Equip Default, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 7, !- Hour 1 + 15, !- Minute 1 + 0.3, !- Value Until Time 1 + 7, !- Hour 2 + 30, !- Minute 2 + 0.325, !- Value Until Time 2 + 7, !- Hour 3 + 45, !- Minute 3 + 0.35, !- Value Until Time 3 + 8, !- Hour 4 + 0, !- Minute 4 + 0.375, !- Value Until Time 4 + 8, !- Hour 5 + 15, !- Minute 5 + 0.4, !- Value Until Time 5 + 8, !- Hour 6 + 30, !- Minute 6 + 0.425, !- Value Until Time 6 + 8, !- Hour 7 + 45, !- Minute 7 + 0.45, !- Value Until Time 7 + 9, !- Hour 8 + 0, !- Minute 8 + 0.475, !- Value Until Time 8 + 9, !- Hour 9 + 15, !- Minute 9 + 0.5, !- Value Until Time 9 + 9, !- Hour 10 + 30, !- Minute 10 + 0.5625, !- Value Until Time 10 + 9, !- Hour 11 + 45, !- Minute 11 + 0.625, !- Value Until Time 11 + 10, !- Hour 12 + 0, !- Minute 12 + 0.6875, !- Value Until Time 12 + 10, !- Hour 13 + 15, !- Minute 13 + 0.75, !- Value Until Time 13 + 10, !- Hour 14 + 30, !- Minute 14 + 0.8125, !- Value Until Time 14 + 10, !- Hour 15 + 45, !- Minute 15 + 0.875, !- Value Until Time 15 + 11, !- Hour 16 + 0, !- Minute 16 + 0.9375, !- Value Until Time 16 + 11, !- Hour 17 + 15, !- Minute 17 + 1, !- Value Until Time 17 + 13, !- Hour 18 + 15, !- Minute 18 + 1, !- Value Until Time 18 + 13, !- Hour 19 + 30, !- Minute 19 + 0.9375, !- Value Until Time 19 + 13, !- Hour 20 + 45, !- Minute 20 + 0.875, !- Value Until Time 20 + 14, !- Hour 21 + 0, !- Minute 21 + 0.8125, !- Value Until Time 21 + 14, !- Hour 22 + 15, !- Minute 22 + 0.75, !- Value Until Time 22 + 14, !- Hour 23 + 30, !- Minute 23 + 0.6875, !- Value Until Time 23 + 14, !- Hour 24 + 45, !- Minute 24 + 0.625, !- Value Until Time 24 + 15, !- Hour 25 + 0, !- Minute 25 + 0.5625, !- Value Until Time 25 + 15, !- Hour 26 + 15, !- Minute 26 + 0.5, !- Value Until Time 26 + 15, !- Hour 27 + 30, !- Minute 27 + 0.475, !- Value Until Time 27 + 15, !- Hour 28 + 45, !- Minute 28 + 0.45, !- Value Until Time 28 + 16, !- Hour 29 + 0, !- Minute 29 + 0.425, !- Value Until Time 29 + 16, !- Hour 30 + 15, !- Minute 30 + 0.4, !- Value Until Time 30 + 16, !- Hour 31 + 30, !- Minute 31 + 0.375, !- Value Until Time 31 + 16, !- Hour 32 + 45, !- Minute 32 + 0.35, !- Value Until Time 32 + 17, !- Hour 33 + 0, !- Minute 33 + 0.325, !- Value Until Time 33 + 17, !- Hour 34 + 15, !- Minute 34 + 0.3, !- Value Until Time 34 + 24, !- Hour 35 + 0, !- Minute 35 + 0.3; !- Value Until Time 35 + +OS:Schedule:Day, + {34bb342b-053c-4d36-9ccb-757a903e4f78}, !- Handle + Outpatient Bldg Equip Summer Design Day, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 4, !- Hour 1 + 0, !- Minute 1 + 0.3, !- Value Until Time 1 + 6, !- Hour 2 + 0, !- Minute 2 + 0.5, !- Value Until Time 2 + 18, !- Hour 3 + 0, !- Minute 3 + 1, !- Value Until Time 3 + 20, !- Hour 4 + 0, !- Minute 4 + 0.5, !- Value Until Time 4 + 24, !- Hour 5 + 0, !- Minute 5 + 0.3; !- Value Until Time 5 + +OS:Schedule:Rule, + {cfd80ebb-e6cc-4fd4-babf-2aa339eab8c9}, !- Handle + Schedule Rule 5, !- Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Schedule Ruleset Name + 1, !- Rule Order + {b2e29cf0-be8e-4930-8c2c-928540a42a9a}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {b2e29cf0-be8e-4930-8c2c-928540a42a9a}, !- Handle + Outpatient Bldg Equip Sat Day, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 8, !- Hour 1 + 45, !- Minute 1 + 0.3, !- Value Until Time 1 + 9, !- Hour 2 + 0, !- Minute 2 + 0.325, !- Value Until Time 2 + 9, !- Hour 3 + 15, !- Minute 3 + 0.35, !- Value Until Time 3 + 9, !- Hour 4 + 30, !- Minute 4 + 0.375, !- Value Until Time 4 + 9, !- Hour 5 + 45, !- Minute 5 + 0.4, !- Value Until Time 5 + 10, !- Hour 6 + 0, !- Minute 6 + 0.425, !- Value Until Time 6 + 10, !- Hour 7 + 15, !- Minute 7 + 0.45, !- Value Until Time 7 + 10, !- Hour 8 + 30, !- Minute 8 + 0.475, !- Value Until Time 8 + 10, !- Hour 9 + 45, !- Minute 9 + 0.5, !- Value Until Time 9 + 11, !- Hour 10 + 0, !- Minute 10 + 0.542857142857143, !- Value Until Time 10 + 11, !- Hour 11 + 15, !- Minute 11 + 0.585714285714286, !- Value Until Time 11 + 11, !- Hour 12 + 30, !- Minute 12 + 0.628571428571429, !- Value Until Time 12 + 11, !- Hour 13 + 45, !- Minute 13 + 0.671428571428571, !- Value Until Time 13 + 12, !- Hour 14 + 0, !- Minute 14 + 0.714285714285714, !- Value Until Time 14 + 12, !- Hour 15 + 15, !- Minute 15 + 0.757142857142857, !- Value Until Time 15 + 12, !- Hour 16 + 30, !- Minute 16 + 0.8, !- Value Until Time 16 + 12, !- Hour 17 + 45, !- Minute 17 + 0.7, !- Value Until Time 17 + 13, !- Hour 18 + 0, !- Minute 18 + 0.6, !- Value Until Time 18 + 13, !- Hour 19 + 15, !- Minute 19 + 0.5, !- Value Until Time 19 + 14, !- Hour 20 + 15, !- Minute 20 + 0.5, !- Value Until Time 20 + 14, !- Hour 21 + 30, !- Minute 21 + 0.4875, !- Value Until Time 21 + 14, !- Hour 22 + 45, !- Minute 22 + 0.475, !- Value Until Time 22 + 15, !- Hour 23 + 0, !- Minute 23 + 0.4625, !- Value Until Time 23 + 15, !- Hour 24 + 15, !- Minute 24 + 0.45, !- Value Until Time 24 + 15, !- Hour 25 + 30, !- Minute 25 + 0.4375, !- Value Until Time 25 + 15, !- Hour 26 + 45, !- Minute 26 + 0.425, !- Value Until Time 26 + 16, !- Hour 27 + 0, !- Minute 27 + 0.4125, !- Value Until Time 27 + 16, !- Hour 28 + 15, !- Minute 28 + 0.4, !- Value Until Time 28 + 16, !- Hour 29 + 30, !- Minute 29 + 0.3875, !- Value Until Time 29 + 16, !- Hour 30 + 45, !- Minute 30 + 0.375, !- Value Until Time 30 + 17, !- Hour 31 + 0, !- Minute 31 + 0.3625, !- Value Until Time 31 + 17, !- Hour 32 + 15, !- Minute 32 + 0.35, !- Value Until Time 32 + 17, !- Hour 33 + 30, !- Minute 33 + 0.3375, !- Value Until Time 33 + 17, !- Hour 34 + 45, !- Minute 34 + 0.325, !- Value Until Time 34 + 18, !- Hour 35 + 0, !- Minute 35 + 0.3125, !- Value Until Time 35 + 18, !- Hour 36 + 15, !- Minute 36 + 0.3, !- Value Until Time 36 + 24, !- Hour 37 + 0, !- Minute 37 + 0.3; !- Value Until Time 37 + +OS:Schedule:Day, + {1df8756a-fa92-4fda-aebd-0ed8187c4a02}, !- Handle + Outpatient Bldg Equip Winter Design Day, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0.3, !- Value Until Time 1 + 17, !- Hour 2 + 0, !- Minute 2 + 0.5, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0.3; !- Value Until Time 3 + +OS:Schedule:Rule, + {a6c8e08b-235c-4174-a221-070535b5129e}, !- Handle + Schedule Rule 6, !- Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Schedule Ruleset Name + 0, !- Rule Order + {a0e600be-0f67-4992-90ac-15e5c411010f}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {a0e600be-0f67-4992-90ac-15e5c411010f}, !- Handle + Outpatient Bldg Equip WntrDsn|Sun Day, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 9, !- Hour 1 + 45, !- Minute 1 + 0.3, !- Value Until Time 1 + 16, !- Hour 2 + 15, !- Minute 2 + 0.5, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0.3; !- Value Until Time 3 + +OS:Schedule:Ruleset, + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Handle + Outpatient Infil, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + {80dad3c0-7180-4069-a540-0e4e71cf78eb}, !- Default Day Schedule Name + {9abd1f62-45f5-4410-94c0-8564f0a659ef}, !- Summer Design Day Schedule Name + {94d6fbba-0e1c-4168-aa7a-e6544dcb642d}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {80dad3c0-7180-4069-a540-0e4e71cf78eb}, !- Handle + Outpatient Infil Default, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0.5; !- Value Until Time 1 + +OS:Schedule:Day, + {94d6fbba-0e1c-4168-aa7a-e6544dcb642d}, !- Handle + Outpatient Infil Winter Design Day, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {9abd1f62-45f5-4410-94c0-8564f0a659ef}, !- Handle + Outpatient Infil Summer Design Day, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Lights:Definition, + {109fb854-8a02-44f2-89df-ea8c8f3804bc}, !- Handle + Outpatient BioHazard Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.7639104167097, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.642335, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {5d2dae29-b999-4662-a719-b91320243cfe}, !- Handle + {109fb854-8a02-44f2-89df-ea8c8f3804bc}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.87250000000000005, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.094, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0293, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0041999999999999997; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {9038634c-0a37-4aba-8ddc-f3bf6b80b785}, !- Handle + Outpatient BioHazard Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 1.07639104167097, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {9490303d-fbfb-4cbf-b465-ec9564e6b04e}, !- Handle + Outpatient BioHazard Elec Equip, !- Name + {9038634c-0a37-4aba-8ddc-f3bf6b80b785}, !- Electric Equipment Definition Name + {7b20985f-3aeb-492d-93f8-a179c637cd44}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {dc80397e-87cc-4a74-a34e-a33d5ec333dc}, !- Handle + Outpatient BioHazard Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000762, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {28ee29c2-85dd-4f35-bf30-1e629f45d725}, !- Handle + Outpatient BioHazard Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {5c1e52ad-06bb-4e42-8db6-998bdeb0722d}, !- Handle + Outpatient Cafe People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.999967277712333, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {2c542492-cf2c-4b84-b8e8-770deddb73f2}, !- Handle + Outpatient Cafe People, !- Name + {5c1e52ad-06bb-4e42-8db6-998bdeb0722d}, !- People Definition Name + {3ed95ffb-bc8e-4422-ae67-017cf6f15a1e}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Schedule:Ruleset, + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Handle + Clothing Schedule, !- Name + {e0b850b7-e342-4e1d-99b2-b13ea8f3561d}, !- Schedule Type Limits Name + {e0c353ef-4cf1-4846-9aaf-0e17fa490bb0}; !- Default Day Schedule Name + +OS:Schedule:Day, + {e0c353ef-4cf1-4846-9aaf-0e17fa490bb0}, !- Handle + Clothing Schedule Default Winter Clothes, !- Name + {e0b850b7-e342-4e1d-99b2-b13ea8f3561d}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Rule, + {1968f19e-6e43-48a2-8fca-cb482e421c68}, !- Handle + Schedule Rule 7, !- Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Schedule Ruleset Name + 0, !- Rule Order + {12e48ec1-40ed-45ff-9739-756ae10e85d5}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 5, !- Start Month + 1, !- Start Day + 9, !- End Month + 30; !- End Day + +OS:Schedule:Day, + {12e48ec1-40ed-45ff-9739-756ae10e85d5}, !- Handle + Clothing Schedule Summer Clothes, !- Name + {e0b850b7-e342-4e1d-99b2-b13ea8f3561d}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0.5; !- Value Until Time 1 + +OS:ScheduleTypeLimits, + {e0b850b7-e342-4e1d-99b2-b13ea8f3561d}, !- Handle + ClothingInsulation, !- Name + 0, !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + ClothingInsulation; !- Unit Type + +OS:Schedule:Ruleset, + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Handle + Air Velocity Schedule, !- Name + {d28694de-8ad6-4c26-b0de-796814ae7a67}, !- Schedule Type Limits Name + {f0c51707-8ceb-44eb-bbfa-75e960049c93}; !- Default Day Schedule Name + +OS:Schedule:Day, + {f0c51707-8ceb-44eb-bbfa-75e960049c93}, !- Handle + Air Velocity Schedule Default, !- Name + {d28694de-8ad6-4c26-b0de-796814ae7a67}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0.2; !- Value Until Time 1 + +OS:ScheduleTypeLimits, + {d28694de-8ad6-4c26-b0de-796814ae7a67}, !- Handle + Velocity, !- Name + 0, !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + Velocity; !- Unit Type + +OS:Schedule:Ruleset, + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Handle + Work Efficiency Schedule, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + {4bdeb6d1-1b08-45fc-9e4d-ec6d59d54129}; !- Default Day Schedule Name + +OS:Schedule:Day, + {4bdeb6d1-1b08-45fc-9e4d-ec6d59d54129}, !- Handle + Work Efficiency Schedule Default, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Lights:Definition, + {0c0380ed-5a0b-4708-81b4-48495f9c5bf0}, !- Handle + Outpatient Cafe Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 13.9930835417226, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.580141, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {3f17cbac-3c98-4978-b011-51fd51c4eebd}, !- Handle + {0c0380ed-5a0b-4708-81b4-48495f9c5bf0}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.76919999999999999, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.2079, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0189, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0040000000000000001; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {0b702c08-3c8b-4894-adea-49adad70cb72}, !- Handle + Outpatient Cafe Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.7639104167097, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {9e091a85-3737-47ee-914d-9eaf879d66fd}, !- Handle + Outpatient Cafe Elec Equip, !- Name + {0b702c08-3c8b-4894-adea-49adad70cb72}, !- Electric Equipment Definition Name + {3ed95ffb-bc8e-4422-ae67-017cf6f15a1e}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {5da48930-2245-4a26-800d-cdacb30c5e9b}, !- Handle + Outpatient Cafe Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {578759d7-d3b3-4192-ab76-c372138c0599}, !- Handle + Outpatient Cafe Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {dc7a7d69-5e5b-47bb-9270-3ecd3c0bfdae}, !- Handle + Outpatient CleanWork People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.199993455542467, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {4a29d3de-4f9a-449b-8171-1ddd68afcf41}, !- Handle + Outpatient CleanWork People, !- Name + {dc7a7d69-5e5b-47bb-9270-3ecd3c0bfdae}, !- People Definition Name + {132d8eeb-89bc-4975-9e9d-32758ae60fe3}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {72c6a53f-0390-4776-985d-a9035d89597d}, !- Handle + Outpatient CleanWork Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 13.9930835417226, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.580141, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {164cb8fc-594e-4bdd-8029-4c42a42c17db}, !- Handle + {72c6a53f-0390-4776-985d-a9035d89597d}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.3846, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.2079, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0.3846, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0189, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0040000000000000001; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {ad9a8659-ea67-4a86-ba37-7ea30705afed}, !- Handle + Outpatient CleanWork Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 21.5278208334194, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {1954f499-55db-41d2-8ca8-cbdca0ae119a}, !- Handle + Outpatient CleanWork Elec Equip, !- Name + {ad9a8659-ea67-4a86-ba37-7ea30705afed}, !- Electric Equipment Definition Name + {132d8eeb-89bc-4975-9e9d-32758ae60fe3}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {5acc61d9-373f-4040-b1a6-7709c4974d5e}, !- Handle + Outpatient CleanWork Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.001524, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {1c18f57d-77de-4b46-8daf-cea17bfefb32}, !- Handle + Outpatient CleanWork Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {0e0413fe-eb26-4609-af2e-7ab6794c07e0}, !- Handle + Outpatient Conference People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.499983638856167, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {18a660a5-77f0-4e80-9868-751f2899b994}, !- Handle + Outpatient Conference People, !- Name + {0e0413fe-eb26-4609-af2e-7ab6794c07e0}, !- People Definition Name + {93b236bb-87a7-4e13-8625-9c2aa92c03be}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {1d71bd1c-31bd-42c3-837d-1b21807bae9c}, !- Handle + Outpatient Conference Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 19.3750387500775, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.580141, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {52159edc-b831-4b74-ae3c-316e25a3e2d7}, !- Handle + {1d71bd1c-31bd-42c3-837d-1b21807bae9c}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.76919999999999999, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.2079, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0189, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0040000000000000001; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {f5b4be5c-a12a-4fcd-801a-9cdbf423da5b}, !- Handle + Outpatient Conference Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 10.7639104167097, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {46209003-8710-411c-8905-9294eb2d273c}, !- Handle + Outpatient Conference Elec Equip, !- Name + {f5b4be5c-a12a-4fcd-801a-9cdbf423da5b}, !- Electric Equipment Definition Name + {93b236bb-87a7-4e13-8625-9c2aa92c03be}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {ad3b198a-9d94-4a48-9c9f-a27af8edabc0}, !- Handle + Outpatient Conference Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {6941d3ca-d55f-4808-967c-9123a15f6b3a}, !- Handle + Outpatient Conference Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {39c60c15-4f54-41d7-9124-24d132823750}, !- Handle + Outpatient DressingRoom People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0500521834377002, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {ed099239-d933-467a-b3d7-e03f9b722979}, !- Handle + Outpatient DressingRoom People, !- Name + {39c60c15-4f54-41d7-9124-24d132823750}, !- People Definition Name + {186554b7-5d4c-463b-8382-6d118c7366be}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {2c946d99-8c8a-493d-9725-1a405e0fee11}, !- Handle + Outpatient DressingRoom Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 19.3750387500775, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.642335, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {4486eece-e938-436f-9036-17257ff102ed}, !- Handle + {2c946d99-8c8a-493d-9725-1a405e0fee11}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.87250000000000005, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.094, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0293, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0041999999999999997; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {ac9ccc6d-f336-44e5-b68c-c4255903b864}, !- Handle + Outpatient DressingRoom Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 11.8403014583807, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {3a59b8a3-76e1-4810-8a21-34796ae8927f}, !- Handle + Outpatient DressingRoom Elec Equip, !- Name + {ac9ccc6d-f336-44e5-b68c-c4255903b864}, !- Electric Equipment Definition Name + {186554b7-5d4c-463b-8382-6d118c7366be}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {26fc7edc-ab95-48e3-92a9-2588ef1d1073}, !- Handle + Outpatient DressingRoom Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {d5c15cd8-10ae-49de-b7d7-f1abe8aaedf5}, !- Handle + Outpatient DressingRoom Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {46d20f79-5a55-44ca-a8b6-8e50240fd10b}, !- Handle + Outpatient Elec/MechRoom Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.53473729169681, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.580141, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {49fdc5bb-5ea2-4874-9482-f6f5e878f497}, !- Handle + {46d20f79-5a55-44ca-a8b6-8e50240fd10b}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.76919999999999999, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.2079, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0189, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0040000000000000001; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {c1ad2ed5-6c76-4b11-a28c-455659a4c958}, !- Handle + Outpatient Elec/MechRoom Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 53.8195520835486, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {57038bda-2379-4b26-95ab-c32daddfc891}, !- Handle + Outpatient Elec/MechRoom Elec Equip, !- Name + {c1ad2ed5-6c76-4b11-a28c-455659a4c958}, !- Electric Equipment Definition Name + {2ddb316f-6ad1-4b05-9092-190cb98dab70}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {2fa04005-ea9b-4401-bdd1-b16c9d4eef68}, !- Handle + Outpatient Elec/MechRoom Ventilation, !- Name + , !- Outdoor Air Method + 0, !- Outdoor Air Flow per Person {m3/s-person} + 0, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + 0, !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {4ef9f89b-96b0-492d-9194-1ac72fa35828}, !- Handle + Outpatient Elec/MechRoom Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {e8a69713-14b0-4132-890d-aa1eb2fb8f09}, !- Handle + Outpatient ElevatorPumpRoom Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 7.53473729169681, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.642335, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {432f3308-84fc-439a-b72f-b1e470602406}, !- Handle + {e8a69713-14b0-4132-890d-aa1eb2fb8f09}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.87250000000000005, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.094, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0293, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0041999999999999997; !- Feature Value 5 + +OS:DesignSpecification:OutdoorAir, + {3a78f790-6c52-42ce-aa83-5087f8b21451}, !- Handle + Outpatient ElevatorPumpRoom Ventilation, !- Name + , !- Outdoor Air Method + 0, !- Outdoor Air Flow per Person {m3/s-person} + 0, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + 0, !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {c5acdcca-f533-4334-b3fb-185be125b0ec}, !- Handle + Outpatient ElevatorPumpRoom Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {512e2304-58a2-4dd3-9152-1dec5614414c}, !- Handle + Outpatient Exam People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.199993455542467, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {a70f2f17-068b-42e7-ae6b-1dccc41328a7}, !- Handle + Outpatient Exam People, !- Name + {512e2304-58a2-4dd3-9152-1dec5614414c}, !- People Definition Name + {c912bf90-f212-44be-bcc8-1e25d4bd9d5f}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {c24ae018-c60f-4b95-bc61-b60d68ae031e}, !- Handle + Outpatient Exam Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 17.2222566667356, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.642335, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {2dc1377c-c894-4d02-b326-d6aae1b1c788}, !- Handle + {c24ae018-c60f-4b95-bc61-b60d68ae031e}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.87250000000000005, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.094, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0293, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0041999999999999997; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {024dc258-2bec-47f3-b0e1-b3362d780bd1}, !- Handle + Outpatient Exam Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 11.8403014583807, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {99a246d9-6291-44c9-aa85-6a2bddc990c4}, !- Handle + Outpatient Exam Elec Equip, !- Name + {024dc258-2bec-47f3-b0e1-b3362d780bd1}, !- Electric Equipment Definition Name + {c912bf90-f212-44be-bcc8-1e25d4bd9d5f}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {9751cc7e-a381-41ad-ac4d-80ceb3bf63ce}, !- Handle + Outpatient Exam Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.001524, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {c86ad63d-8b46-4de7-a815-29cc6e31fec6}, !- Handle + Outpatient Exam Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {3abcc544-d6f1-4ab7-891f-4195a7b3d21d}, !- Handle + Outpatient Hall Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 8.61112833336778, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.580141, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {1877bee5-6c45-484b-9907-789a0c36b50f}, !- Handle + {3abcc544-d6f1-4ab7-891f-4195a7b3d21d}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.76919999999999999, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.2079, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0189, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0040000000000000001; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {a86ed3f5-14f5-4ca8-9461-e22e952f5131}, !- Handle + Outpatient Hall Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 4.30556416668389, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {94c2bdca-7e3b-46fd-8632-90ebfabcdafa}, !- Handle + Outpatient Hall Elec Equip, !- Name + {a86ed3f5-14f5-4ca8-9461-e22e952f5131}, !- Electric Equipment Definition Name + {6e2bb69a-5a51-4d2e-a996-f562611bd2cb}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {5d1e8026-005b-49ea-af5b-0aab6e34277c}, !- Handle + Outpatient Hall Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000254, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {e160eb2b-4050-46d0-aabb-7c63d3b8877c}, !- Handle + Outpatient Hall Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {e63ab9aa-7490-4f48-8a11-a89c6ecbd75c}, !- Handle + Outpatient IT_Room People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0500521834377002, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {ed4fd161-be8a-4028-b4c1-5ee0efc0918d}, !- Handle + Outpatient IT_Room People, !- Name + {e63ab9aa-7490-4f48-8a11-a89c6ecbd75c}, !- People Definition Name + {4b9df3de-a3d0-4438-acca-986ad88544a1}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {a4047f9f-c9a6-4f81-8b23-8a99d3894f0c}, !- Handle + Outpatient IT_Room Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 19.3750387500775, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.580141, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {ac2cafe9-1411-4ce7-8da8-0dd075ff059e}, !- Handle + {a4047f9f-c9a6-4f81-8b23-8a99d3894f0c}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.76919999999999999, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.2079, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0189, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0040000000000000001; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {be28beea-158b-4819-8121-eafa3cad5a5a}, !- Handle + Outpatient IT_Room Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 11.8403014583807, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {6fb50f6f-33de-49d4-a3bb-1b127efa3230}, !- Handle + Outpatient IT_Room Elec Equip, !- Name + {be28beea-158b-4819-8121-eafa3cad5a5a}, !- Electric Equipment Definition Name + {4b9df3de-a3d0-4438-acca-986ad88544a1}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {d96f747f-d25a-4c94-9fd5-ab079a846c46}, !- Handle + Outpatient IT_Room Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {06d598ea-1915-46b4-95c2-164255d100d3}, !- Handle + Outpatient IT_Room Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {a208bb3f-dbe4-427d-9fd4-357b948f4659}, !- Handle + Outpatient Janitor Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.7639104167097, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.580141, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {5a0d99de-c988-4257-8065-75b06b6969eb}, !- Handle + {a208bb3f-dbe4-427d-9fd4-357b948f4659}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.76919999999999999, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.2079, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0189, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0040000000000000001; !- Feature Value 5 + +OS:DesignSpecification:OutdoorAir, + {37f67386-1b05-4340-be70-c7e5e38add30}, !- Handle + Outpatient Janitor Ventilation, !- Name + , !- Outdoor Air Method + 0, !- Outdoor Air Flow per Person {m3/s-person} + 0, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + 0, !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {ab8bcc8a-2906-4baf-a59f-cd99ff31db46}, !- Handle + Outpatient Janitor Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {a874341b-d067-43e8-b93e-7bbfd6514350}, !- Handle + Outpatient Lobby People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.300313100626201, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {862f0fd3-b805-4668-8e1a-4da1e9dc8f47}, !- Handle + Outpatient Lobby People, !- Name + {a874341b-d067-43e8-b93e-7bbfd6514350}, !- People Definition Name + {830595d2-f1c6-4a4f-adab-f4229419a49b}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {4765bae1-2fc3-45a6-9771-e5586969e837}, !- Handle + Outpatient Lobby Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.7639104167097, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.580141, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {77d268f1-549d-46c2-8ad5-5e721767ac08}, !- Handle + {4765bae1-2fc3-45a6-9771-e5586969e837}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.76919999999999999, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.2079, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0189, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0040000000000000001; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {b82d7664-4075-439d-9aaa-e533a1c9dbd0}, !- Handle + Outpatient Lobby Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 11.8403014583807, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {53aef5b7-b8cd-4136-8fc3-0647e0eadd05}, !- Handle + Outpatient Lobby Elec Equip, !- Name + {b82d7664-4075-439d-9aaa-e533a1c9dbd0}, !- Electric Equipment Definition Name + {830595d2-f1c6-4a4f-adab-f4229419a49b}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {c87bdf82-5e9b-4662-90c1-f1c5c3e0da71}, !- Handle + Outpatient Lobby Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.007079211648, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {2e1988de-7aeb-4611-a7ca-646aafe3122b}, !- Handle + Outpatient Lobby Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {94e7e2be-6a6f-4e0c-bbc3-01706427461a}, !- Handle + Outpatient LockerRoom People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.149941272104766, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {27c72020-311b-4770-adc2-c3a1f7c43521}, !- Handle + Outpatient LockerRoom People, !- Name + {94e7e2be-6a6f-4e0c-bbc3-01706427461a}, !- People Definition Name + {55e9e53a-8be5-42d7-b81b-a3ad93018a1a}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {6e42123b-e291-48f0-9968-771af62f84ec}, !- Handle + Outpatient LockerRoom Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.68751937503875, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.642335, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {03f53297-9cc3-4af4-ada4-334a143abc24}, !- Handle + {6e42123b-e291-48f0-9968-771af62f84ec}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.87250000000000005, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.094, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0293, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0041999999999999997; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {22e7121e-f07e-470b-a9df-999576100a43}, !- Handle + Outpatient LockerRoom Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 32.2917312501292, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {0aa67769-d400-49ec-903a-2aace60eb801}, !- Handle + Outpatient LockerRoom Elec Equip, !- Name + {22e7121e-f07e-470b-a9df-999576100a43}, !- Electric Equipment Definition Name + {55e9e53a-8be5-42d7-b81b-a3ad93018a1a}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {b27e3888-00f1-42de-8175-d25d47acbe0b}, !- Handle + Outpatient LockerRoom Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.007079211648, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {6851e67d-e392-4717-91f7-42bb7700359b}, !- Handle + Outpatient LockerRoom Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {71ee18f6-9967-4678-be48-a293c6d4c5a0}, !- Handle + Outpatient Lounge People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.149941272104766, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {3ee86855-69f0-4f21-a85b-7f5899b38e39}, !- Handle + Outpatient Lounge People, !- Name + {71ee18f6-9967-4678-be48-a293c6d4c5a0}, !- People Definition Name + {e67caa29-7f43-467d-9e61-3b46df30c822}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {f0e24b52-79c7-4ffa-9271-5712223c6606}, !- Handle + Outpatient Lounge Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.68751937503875, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.580141, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {7a8c6cf3-9727-47b2-865a-c4d21fd9741e}, !- Handle + {f0e24b52-79c7-4ffa-9271-5712223c6606}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.76919999999999999, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.2079, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0189, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0040000000000000001; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {c6252afe-cf27-4f97-9d89-f400bc30e95c}, !- Handle + Outpatient Lounge Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 32.2917312501292, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {077dd1e9-ee87-42f2-b8e8-33c7838bf109}, !- Handle + Outpatient Lounge Elec Equip, !- Name + {c6252afe-cf27-4f97-9d89-f400bc30e95c}, !- Electric Equipment Definition Name + {e67caa29-7f43-467d-9e61-3b46df30c822}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {a0bae964-694b-4674-a18b-0be1d70446c5}, !- Handle + Outpatient Lounge Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.007079211648, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {0332f57a-d6e1-4ec9-a7d8-9ae2b5b269cb}, !- Handle + Outpatient Lounge Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {5465d166-ebd8-4a1a-8abc-d1c3fc5cb3b3}, !- Handle + Outpatient MedGas Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.7639104167097, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.642335, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {bd0a8dac-6534-4c67-8865-af78fef17313}, !- Handle + {5465d166-ebd8-4a1a-8abc-d1c3fc5cb3b3}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.87250000000000005, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.094, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0293, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0041999999999999997; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {02ad06ae-c533-4200-af9b-3839953cc1a8}, !- Handle + Outpatient MedGas Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 1.07639104167097, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {399e202b-2d0f-49f2-be37-ea37b13202bc}, !- Handle + Outpatient MedGas Elec Equip, !- Name + {02ad06ae-c533-4200-af9b-3839953cc1a8}, !- Electric Equipment Definition Name + {117f4d87-7bb7-4e81-9561-b5cd18d45f9d}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {7ebad170-8320-4b4e-98cc-f8b6c533c3b0}, !- Handle + Outpatient MedGas Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.000762, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {8d507d8a-2e04-4902-8371-8778b2dd729a}, !- Handle + Outpatient MedGas Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {8ce84e33-edc7-41ed-88ad-8bd5b0ef9d41}, !- Handle + Outpatient MRI People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.199993455542467, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {4679256d-f21e-472c-b9c2-15e04288694d}, !- Handle + Outpatient MRI People, !- Name + {8ce84e33-edc7-41ed-88ad-8bd5b0ef9d41}, !- People Definition Name + {a0d541c6-3262-49a8-96cb-668f335a0ac4}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {5d7d6666-b977-4301-b4e5-77320d88049e}, !- Handle + Outpatient MRI Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 22.6042118750904, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.642335, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {fc7b7ded-c5fd-47c6-96b0-944dec1bc7ae}, !- Handle + {5d7d6666-b977-4301-b4e5-77320d88049e}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.87250000000000005, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.094, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0293, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0041999999999999997; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {48ad30c5-d709-4ee6-8614-10201ca67e49}, !- Handle + Outpatient MRI Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 573.716425210628, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {66d6a264-c9c9-47cf-9e86-96f4d8930264}, !- Handle + Outpatient MRI Elec Equip, !- Name + {48ad30c5-d709-4ee6-8614-10201ca67e49}, !- Electric Equipment Definition Name + {a0d541c6-3262-49a8-96cb-668f335a0ac4}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {b7818e03-80e3-474f-9a6f-f9f4db74485d}, !- Handle + Outpatient MRI Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.001524, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {a52c37f8-665f-4030-a000-e8b4179eb3d1}, !- Handle + Outpatient MRI Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {9cfa7b9e-a7bb-4182-a7bc-52ebd5e6e02c}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Schedule:Ruleset, + {9cfa7b9e-a7bb-4182-a7bc-52ebd5e6e02c}, !- Handle + Outpatient Radiology Equip, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + {053af880-881f-4f0d-9fb6-d7bb62769c07}, !- Default Day Schedule Name + {4b3b6f50-08d9-4d46-9662-fdd134e023de}, !- Summer Design Day Schedule Name + {0632d021-11f9-4e8c-b2b7-2c6ea1907944}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {053af880-881f-4f0d-9fb6-d7bb62769c07}, !- Handle + Outpatient Radiology Equip Default, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 10, !- Hour 1 + 15, !- Minute 1 + 0.01, !- Value Until Time 1 + 14, !- Hour 2 + 15, !- Minute 2 + 0.96, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0.01; !- Value Until Time 3 + +OS:Schedule:Day, + {4b3b6f50-08d9-4d46-9662-fdd134e023de}, !- Handle + Outpatient Radiology Equip Summer Design Day, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0.01, !- Value Until Time 1 + 18, !- Hour 2 + 0, !- Minute 2 + 0.96, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0.01; !- Value Until Time 3 + +OS:Schedule:Day, + {0632d021-11f9-4e8c-b2b7-2c6ea1907944}, !- Handle + Outpatient Radiology Equip Winter Design Day, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0.01; !- Value Until Time 1 + +OS:Schedule:Rule, + {81466ef3-6300-4847-b1af-568b5e4374e9}, !- Handle + Schedule Rule 8, !- Name + {9cfa7b9e-a7bb-4182-a7bc-52ebd5e6e02c}, !- Schedule Ruleset Name + 1, !- Rule Order + {f2b01fd8-45aa-449d-b290-050083199c51}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {f2b01fd8-45aa-449d-b290-050083199c51}, !- Handle + Outpatient Radiology Equip WntrDsn|Sun Day, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 23, !- Hour 1 + 15, !- Minute 1 + 0.01, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 0.01; !- Value Until Time 2 + +OS:People:Definition, + {f330bd0f-d65b-41cc-a970-2eb169bd5f27}, !- Handle + Outpatient MRI_Control People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.199993455542467, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {6fecb8df-01f2-4dbd-bef3-08bc90f38cf8}, !- Handle + Outpatient MRI_Control People, !- Name + {f330bd0f-d65b-41cc-a970-2eb169bd5f27}, !- People Definition Name + {bcd0ccb4-07a2-483e-8764-49c9a286542d}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {156c5aa5-9035-4ec7-8a4f-dfcbcacd69f4}, !- Handle + Outpatient MRI_Control Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 22.6042118750904, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.642335, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {52f2c84d-f7c1-4ce4-a580-94c88675dd5b}, !- Handle + {156c5aa5-9035-4ec7-8a4f-dfcbcacd69f4}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.87250000000000005, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.094, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0293, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0041999999999999997; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {6eb05865-d9a4-4ca2-ad37-771726124159}, !- Handle + Outpatient MRI_Control Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 11.8403014583807, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {bca790d0-be0f-4e93-a0d9-a8c7d3be6000}, !- Handle + Outpatient MRI_Control Elec Equip, !- Name + {6eb05865-d9a4-4ca2-ad37-771726124159}, !- Electric Equipment Definition Name + {bcd0ccb4-07a2-483e-8764-49c9a286542d}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {9cc899cb-9d84-49b3-afee-b54198a4fe22}, !- Handle + Outpatient MRI_Control Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.001524, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {2a727310-2d42-436a-bfb0-1e5fd62f783f}, !- Handle + Outpatient MRI_Control Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {2c4526f0-242c-4910-80b5-b2777ed25a02}, !- Handle + Outpatient NurseStation People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.199993455542467, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {849b8e43-5e6c-4cbb-ae2e-bcf0112cdd09}, !- Handle + Outpatient NurseStation People, !- Name + {2c4526f0-242c-4910-80b5-b2777ed25a02}, !- People Definition Name + {5b09c434-c361-4e51-b3be-21b2f3d26cc3}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {4e2d6415-8170-4eed-b38d-bcd573504894}, !- Handle + Outpatient NurseStation Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 22.6042118750904, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.642335, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {3518363f-3f87-41fd-a3fe-475fd3762956}, !- Handle + {4e2d6415-8170-4eed-b38d-bcd573504894}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.87250000000000005, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.094, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0293, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0041999999999999997; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {43a598bf-35c5-4976-87b3-a8d7dc59d851}, !- Handle + Outpatient NurseStation Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 21.5278208334194, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {b5387451-05dc-4983-9647-15c5cec1f9cd}, !- Handle + Outpatient NurseStation Elec Equip, !- Name + {43a598bf-35c5-4976-87b3-a8d7dc59d851}, !- Electric Equipment Definition Name + {5b09c434-c361-4e51-b3be-21b2f3d26cc3}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {2fa19651-554f-4cff-a3ec-846501f487ff}, !- Handle + Outpatient NurseStation Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {60852758-95d0-4718-ab5f-5abe40ff6f70}, !- Handle + Outpatient NurseStation Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {6dc45607-bc26-44ea-8b89-252ff8806fee}, !- Handle + Outpatient Office People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0500521834377002, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {0f2e6ae2-823f-444b-a846-59aebfb4e35c}, !- Handle + Outpatient Office People, !- Name + {6dc45607-bc26-44ea-8b89-252ff8806fee}, !- People Definition Name + {c886771f-d399-4984-b712-aefe78a14e4c}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {09393f83-c80f-473a-b530-e0922daa0699}, !- Handle + Outpatient Office Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 19.3750387500775, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.580141, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {598ae221-b367-4ea6-a097-a49377980c0a}, !- Handle + {09393f83-c80f-473a-b530-e0922daa0699}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.76919999999999999, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.2079, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0189, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0040000000000000001; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {e900304d-76a0-43a8-b9e9-9fb418633865}, !- Handle + Outpatient Office Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 11.8403014583807, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {ab187eb1-7c08-4eee-82b0-ee63fa139802}, !- Handle + Outpatient Office Elec Equip, !- Name + {e900304d-76a0-43a8-b9e9-9fb418633865}, !- Electric Equipment Definition Name + {c886771f-d399-4984-b712-aefe78a14e4c}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {38fcebe4-7229-44e7-acd2-871357897539}, !- Handle + Outpatient Office Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.009438948864, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {b6e41542-fdf5-4455-b524-5f9ac4c7d72c}, !- Handle + Outpatient Office Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {3a763c97-953e-4444-b464-01b65a13bd32}, !- Handle + Outpatient OR People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.199993455542467, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {93e3d36e-ad69-4cc8-a223-fcc339a7bb5c}, !- Handle + Outpatient OR People, !- Name + {3a763c97-953e-4444-b464-01b65a13bd32}, !- People Definition Name + {5fb014fb-6043-4a5b-b056-a124c49bf50e}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {f80a29dd-e2bd-4974-b708-3f305b56073f}, !- Handle + Outpatient OR Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 75.3473729169681, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.642335, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {4bd92c43-189a-4e57-ac51-5d911bd9928c}, !- Handle + {f80a29dd-e2bd-4974-b708-3f305b56073f}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.87250000000000005, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.094, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0293, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0041999999999999997; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {2679c712-1599-4091-a28f-da15becb459c}, !- Handle + Outpatient OR Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 43.0556416668389, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {bfc75956-d8e1-4ded-a733-b7c92de3498f}, !- Handle + Outpatient OR Elec Equip, !- Name + {2679c712-1599-4091-a28f-da15becb459c}, !- Electric Equipment Definition Name + {5fb014fb-6043-4a5b-b056-a124c49bf50e}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:GasEquipment:Definition, + {feab894a-9726-4228-b3ab-08193d0c20f7}, !- Handle + Outpatient OR Gas Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 75.300081084655, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/Person} + 0, !- Fraction Latent + 0, !- Fraction Radiant + 0.5; !- Fraction Lost + +OS:GasEquipment, + {f1ead4f5-ea6c-45f1-9cb1-33e1c75bcf48}, !- Handle + Outpatient OR Gas Equip, !- Name + {feab894a-9726-4228-b3ab-08193d0c20f7}, !- Gas Equipment Definition Name + {5fb014fb-6043-4a5b-b056-a124c49bf50e}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {2e6999a8-dd65-4180-b436-1d007afe7184}, !- Handle + Outpatient OR Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.0023876, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {8a6cc611-218c-486f-b986-5dcd7b9073ed}, !- Handle + Outpatient OR Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {0eaf1fbb-4930-413f-8c99-0470615c6a11}, !- Handle + Outpatient PACU People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.199993455542467, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {2332c965-711d-4f47-aad3-fb7a64e09552}, !- Handle + Outpatient PACU People, !- Name + {0eaf1fbb-4930-413f-8c99-0470615c6a11}, !- People Definition Name + {171a2876-5f59-46c1-9438-827411e98017}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {4882802d-4588-44bb-9ca5-3fc5bffbe8ca}, !- Handle + Outpatient PACU Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 24.7569939584324, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.642335, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {d110c840-4573-4b84-a35d-169397938197}, !- Handle + {4882802d-4588-44bb-9ca5-3fc5bffbe8ca}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.87250000000000005, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.094, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0293, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0041999999999999997; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {1e8bdc35-2e93-42b1-8239-72964e28325f}, !- Handle + Outpatient PACU Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 32.2917312501292, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {63f60d4c-25ff-4176-ade8-122fc37ac39a}, !- Handle + Outpatient PACU Elec Equip, !- Name + {1e8bdc35-2e93-42b1-8239-72964e28325f}, !- Electric Equipment Definition Name + {171a2876-5f59-46c1-9438-827411e98017}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {cbe97760-2cac-4e84-b72e-fa82cec3a302}, !- Handle + Outpatient PACU Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00169164, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {7821f414-86cb-4dc1-9704-5aa7e6062a05}, !- Handle + Outpatient PACU Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {0aad4683-9ce7-4026-8fce-ec284137e6ef}, !- Handle + Outpatient PhysicalTherapy People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.199993455542467, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {0c88fbec-586d-4f61-971d-d90803cfa8b1}, !- Handle + Outpatient PhysicalTherapy People, !- Name + {0aad4683-9ce7-4026-8fce-ec284137e6ef}, !- People Definition Name + {2d20a7e4-e28e-45fe-b57b-4ce2154fb88e}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {f81440f4-2c6f-4395-bc11-963cce87185d}, !- Handle + Outpatient PhysicalTherapy Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 17.2222566667356, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.642335, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {b7425151-5f58-486c-a5b9-20424c713943}, !- Handle + {f81440f4-2c6f-4395-bc11-963cce87185d}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.87250000000000005, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.094, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0293, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0041999999999999997; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {9b323672-6015-439d-8cd0-21a55897f33b}, !- Handle + Outpatient PhysicalTherapy Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 16.1458656250646, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {c3c04d14-a192-454d-b10e-644021669c61}, !- Handle + Outpatient PhysicalTherapy Elec Equip, !- Name + {9b323672-6015-439d-8cd0-21a55897f33b}, !- Electric Equipment Definition Name + {2d20a7e4-e28e-45fe-b57b-4ce2154fb88e}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {16fe58f0-5137-49a1-aa98-998e3ec554b8}, !- Handle + Outpatient PhysicalTherapy Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.0023876, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {a899d6e7-b2bf-4a63-9f9e-fb7111c8db17}, !- Handle + Outpatient PhysicalTherapy Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {f51399dc-726d-4b4b-81ab-096eaad3dc75}, !- Handle + Outpatient PreOp People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.0999967277712333, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {732dffcd-bcb2-4fc7-87f2-0d36d9e00770}, !- Handle + Outpatient PreOp People, !- Name + {f51399dc-726d-4b4b-81ab-096eaad3dc75}, !- People Definition Name + {92312da1-9ed9-4fea-82b7-d1ae297e9d8a}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {e281e880-55bc-4be2-b44a-e1140b8a3394}, !- Handle + Outpatient PreOp Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 15.0694745833936, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.642335, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {55a223e8-904d-4fe3-bcde-0e13b158064d}, !- Handle + {e281e880-55bc-4be2-b44a-e1140b8a3394}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.87250000000000005, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.094, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0293, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0041999999999999997; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {7274ad22-6f4c-49c3-98fb-6b6028b08fd7}, !- Handle + Outpatient PreOp Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 21.5278208334194, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {3e1b763e-0adb-4e1d-af6b-a1b0cd373259}, !- Handle + Outpatient PreOp Elec Equip, !- Name + {7274ad22-6f4c-49c3-98fb-6b6028b08fd7}, !- Electric Equipment Definition Name + {92312da1-9ed9-4fea-82b7-d1ae297e9d8a}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {9e179e3c-76d1-4aed-acbb-143665179566}, !- Handle + Outpatient PreOp Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00169164, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {c8f9e156-7c70-4f4f-a2f1-58f48a0c4fa4}, !- Handle + Outpatient PreOp Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {2145a6c3-1c83-45a0-86fd-75ae34c21d42}, !- Handle + Outpatient ProcedureRoom People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.199993455542467, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {1acce4eb-7fa7-4d5f-a1e1-b95402ed792a}, !- Handle + Outpatient ProcedureRoom People, !- Name + {2145a6c3-1c83-45a0-86fd-75ae34c21d42}, !- People Definition Name + {864ed981-cdc7-451f-8bef-1ea81ff2d854}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {6eb667d8-7a2f-412c-88c0-282a9f2c5609}, !- Handle + Outpatient ProcedureRoom Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 17.2222566667356, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.642335, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {f204ecf2-43eb-4024-8b10-ee576cd9fcc9}, !- Handle + {6eb667d8-7a2f-412c-88c0-282a9f2c5609}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.87250000000000005, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.094, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0293, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0041999999999999997; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {4cedfec4-0fff-4463-b12d-8592672cedfc}, !- Handle + Outpatient ProcedureRoom Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 32.2917312501292, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {51471cf5-5690-4d34-a10d-537c3a28b860}, !- Handle + Outpatient ProcedureRoom Elec Equip, !- Name + {4cedfec4-0fff-4463-b12d-8592672cedfc}, !- Electric Equipment Definition Name + {864ed981-cdc7-451f-8bef-1ea81ff2d854}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {647a0866-3738-4779-9626-81c5b6ead260}, !- Handle + Outpatient ProcedureRoom Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.0023876, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {e567e17e-81fc-4abc-8b85-35e005f1eccf}, !- Handle + Outpatient ProcedureRoom Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {1d1d6ac1-2fbc-4df0-883c-3edb91dac272}, !- Handle + Outpatient Reception People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.300313100626201, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {f540e565-77f4-4c36-924f-74e3f068c242}, !- Handle + Outpatient Reception People, !- Name + {1d1d6ac1-2fbc-4df0-883c-3edb91dac272}, !- People Definition Name + {b0858a9c-8d82-4ec2-b1e5-e4c1bbd82d0e}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {9011cee7-ad6e-4335-adad-9e3b82b22b07}, !- Handle + Outpatient Reception Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.7639104167097, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.580141, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {ba40bcaf-7e36-4555-a4c6-f3d7a6badb3d}, !- Handle + {9011cee7-ad6e-4335-adad-9e3b82b22b07}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.76919999999999999, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.2079, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0189, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0040000000000000001; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {9a803f7b-f772-4402-a89f-3cd3aa8493c0}, !- Handle + Outpatient Reception Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 11.8403014583807, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {f998e6fb-b234-42ce-8151-a88aa936e457}, !- Handle + Outpatient Reception Elec Equip, !- Name + {9a803f7b-f772-4402-a89f-3cd3aa8493c0}, !- Electric Equipment Definition Name + {b0858a9c-8d82-4ec2-b1e5-e4c1bbd82d0e}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {5f0a6ce4-ce95-4103-b122-bb857893f018}, !- Handle + Outpatient Reception Ventilation, !- Name + Sum, !- Outdoor Air Method + 0.007079211648, !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {81b0c1d8-8641-4a56-bfa2-dc6989af6b04}, !- Handle + Outpatient Reception Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {35c2ac1b-579b-407c-95d3-1f7a6eb137ac}, !- Handle + Outpatient Soil Work People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.199993455542467, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {92f27ee5-e539-4cdc-af24-4f22945c2797}, !- Handle + Outpatient Soil Work People, !- Name + {35c2ac1b-579b-407c-95d3-1f7a6eb137ac}, !- People Definition Name + {d0eedb12-8aab-42b8-8864-4ef144c40d57}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {ff476cca-8ccf-4ffa-aaf9-9f88a54a7152}, !- Handle + Outpatient Soil Work Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 9.68751937503875, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.642335, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {fa67c095-61f8-4471-8647-fe2aab27ea7f}, !- Handle + {ff476cca-8ccf-4ffa-aaf9-9f88a54a7152}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.87250000000000005, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.094, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0293, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0041999999999999997; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {8c64b45f-02ec-475b-a455-7aba65a669ca}, !- Handle + Outpatient Soil Work Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 21.5278208334194, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {d0c61a12-277f-42b5-96be-9285966d6e48}, !- Handle + Outpatient Soil Work Elec Equip, !- Name + {8c64b45f-02ec-475b-a455-7aba65a669ca}, !- Electric Equipment Definition Name + {d0eedb12-8aab-42b8-8864-4ef144c40d57}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {2ff355d4-7bc6-4159-9a6d-7686f6ed2044}, !- Handle + Outpatient Soil Work Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.00282448, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {c93e04d6-a60b-461c-9b26-b716e91dd67a}, !- Handle + Outpatient Soil Work Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {4f87ad34-90f5-4682-882d-e054c2e31665}, !- Handle + Outpatient Stair Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 8.61112833336778, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.580141, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {b5933e72-2754-43e0-a562-acd754f55926}, !- Handle + {4f87ad34-90f5-4682-882d-e054c2e31665}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.76919999999999999, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.2079, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0189, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0040000000000000001; !- Feature Value 5 + +OS:DesignSpecification:OutdoorAir, + {766ffa18-8b6c-4bc9-9dbf-bf5f2f914268}, !- Handle + Outpatient Stair Ventilation, !- Name + , !- Outdoor Air Method + 0, !- Outdoor Air Flow per Person {m3/s-person} + 0, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + 0, !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {d0aa80c8-d643-42d9-b085-386e3dc3c088}, !- Handle + Outpatient Stair Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Lights:Definition, + {d7c28450-1b5c-40e8-9454-d512584ec0fb}, !- Handle + Outpatient Toilet Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 8.61112833336778, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.580141, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {b45e45fd-022b-4257-948c-58c7c04be46f}, !- Handle + {d7c28450-1b5c-40e8-9454-d512584ec0fb}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.76919999999999999, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.2079, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0189, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0040000000000000001; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {bf9147c8-ad44-4e29-8da9-72bb6565aa0a}, !- Handle + Outpatient Toilet Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 7.53473729169681, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3, !- Fraction Radiant + 0.7; !- Fraction Lost + +OS:ElectricEquipment, + {819a5f85-3385-44ce-b0a0-7f90c8a09a9e}, !- Handle + Outpatient Toilet Elec Equip, !- Name + {bf9147c8-ad44-4e29-8da9-72bb6565aa0a}, !- Electric Equipment Definition Name + {10a9958c-5712-4449-9d93-940c14d4492e}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {43ed8193-26aa-4ca8-8d94-77c9fc2436da}, !- Handle + Outpatient Toilet Ventilation, !- Name + , !- Outdoor Air Method + 0, !- Outdoor Air Flow per Person {m3/s-person} + 0, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + 0, !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {2279af71-0fe1-4d88-95cf-f12441dab22f}, !- Handle + Outpatient Toilet Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:People:Definition, + {8707c802-15d4-40ac-812c-0e208bb9f8ac}, !- Handle + Outpatient Xray People Definition, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.199993455542467, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {acf0e6d5-0e27-4fe2-957e-feee49605978}, !- Handle + Outpatient Xray People, !- Name + {8707c802-15d4-40ac-812c-0e208bb9f8ac}, !- People Definition Name + {8699ada1-ecd3-452b-951b-33b0abe847f3}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + {93c75b77-f871-4a39-a055-f7382dd183a4}, !- Work Efficiency Schedule Name + {c7883d44-b835-47bc-9318-50e081a8705a}, !- Clothing Insulation Schedule Name + {e042fcd4-61a2-4715-ac23-1af3761bb536}, !- Air Velocity Schedule Name + 1; !- Multiplier + +OS:Lights:Definition, + {61c63bb3-da9f-4e3e-add3-6510d6e4e87b}, !- Handle + Outpatient Xray Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 22.6042118750904, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.642335, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {7f69cfd3-ede5-4cfe-84ab-b2d1495c576d}, !- Handle + {61c63bb3-da9f-4e3e-add3-6510d6e4e87b}, !- Object Name + lpd_fraction_linear_fluorescent, !- Feature Name 1 + Double, !- Feature Data Type 1 + 0.87250000000000005, !- Feature Value 1 + lpd_fraction_compact_fluorescent, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.094, !- Feature Value 2 + lpd_fraction_high_bay, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0, !- Feature Value 3 + lpd_fraction_specialty_lighting, !- Feature Name 4 + Double, !- Feature Data Type 4 + 0.0293, !- Feature Value 4 + lpd_fraction_exit_lighting, !- Feature Name 5 + Double, !- Feature Data Type 5 + 0.0041999999999999997; !- Feature Value 5 + +OS:ElectricEquipment:Definition, + {9000d6fe-2885-4aeb-802d-a086062e7da1}, !- Handle + Outpatient Xray Elec Equip Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 13.9930835417226, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.5, !- Fraction Radiant + 0; !- Fraction Lost + +OS:ElectricEquipment, + {21e6a7ea-0be3-4e82-bd74-97bdafe872e8}, !- Handle + Outpatient Xray Elec Equip, !- Name + {9000d6fe-2885-4aeb-802d-a086062e7da1}, !- Electric Equipment Definition Name + {8699ada1-ecd3-452b-951b-33b0abe847f3}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory + +OS:DesignSpecification:OutdoorAir, + {59d243f7-030b-4a56-a4eb-4688fe982faf}, !- Handle + Outpatient Xray Ventilation, !- Name + Sum, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + 0.001524, !- Outdoor Air Flow per Floor Area {m3/s-m2} + , !- Outdoor Air Flow Rate {m3/s} + , !- Outdoor Air Flow Air Changes per Hour {1/hr} + ; !- Outdoor Air Flow Rate Fraction Schedule Name + +OS:DefaultScheduleSet, + {73adfbf9-0e5a-4518-8ba5-299bf7f39441}, !- Handle + Outpatient Xray Schedule Set, !- Name + , !- Hours of Operation Schedule Name + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Number of People Schedule Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- People Activity Level Schedule Name + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Lighting Schedule Name + {9cfa7b9e-a7bb-4182-a7bc-52ebd5e6e02c}, !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + {99c1a3f3-dd6c-4ca8-aa8f-cb1913d7ae15}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:Construction:FfactorGroundFloor, + {7639bb46-5a71-4dcf-8833-bd46abad1522}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 20.89m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 20.8898314213993, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {4dff2269-e71c-4844-8670-ce439446f189}, !- Handle + Foundation F 1.26W/m*K Perim 4.57m Area 26.38m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 26.3824164071983, !- Area {m2} + 4.572; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {46723c7f-e763-4615-af5d-194e4e7c8d4f}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 19.81m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 19.8093228996062, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {0984dc4d-b293-4d94-a340-574632533382}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 169.88m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 169.875053491067, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {cd21349b-d066-4ea4-92ff-d9a4a119ee2e}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 17.38m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 17.3781787255583, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {97be2684-41a1-453c-a5f2-b038092ae764}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 17.11m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 17.1080515951147, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {606b7261-3ded-4508-8c2a-7c813bb6d5a8}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 17.02m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 17.018009218294, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {3f927850-9caf-4662-804c-e57617380ed7}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 13.69m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 13.6864412760899, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {31dfd6ee-c25a-4a15-8c6c-0daf55f32af3}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 13.15m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 13.1461870151935, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {27dcf78f-9de7-4fc9-aa52-5166a148e1f8}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 94.46m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 94.4563875014853, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {7bb47267-35ea-4901-9692-cf1d0e607728}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 11.62m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 11.6154666093109, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {18a2e58c-858a-4e2d-94db-617dd8188b36}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 79.81m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 79.8119863384736, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {682eebb3-c074-439d-8558-ea1396de8a84}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 9.63m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 9.6345343193548, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {e3859bac-1c7d-4f96-8f68-be4aaca2b36f}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 78.35m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 78.3475462221941, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {1166a671-b2b0-4f91-8a90-acddfe434542}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 9.27m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 9.27436481208736, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {1d2fac39-57bf-4e62-a60f-23549406cce1}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 9.81m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 9.81461907298474, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {89a733f1-fbcc-4a54-bcc4-1853c17afbfe}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 75.42m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 75.4186659895738, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {c460d5b3-b350-4e35-92f5-6de52eced61d}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 7.92m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 7.92372915984156, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {046906e6-e364-4672-8af0-88bf482192b8}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 1.26m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 1.26059327542918, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {a7070f5c-0e5f-48c1-8284-8fb2364087b5}, !- Handle + Foundation F 1.26W/m*K Perim 43.38m Area 424.63m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 424.628319169108, !- Area {m2} + 43.3808255077881; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {2fb09dd5-3610-4701-9a0a-f28271127aea}, !- Handle + Foundation F 1.26W/m*K Perim 9.14m Area 20.9m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 20.903184, !- Area {m2} + 9.144; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {01cac969-f361-4434-8e33-98b31a432011}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 7.38m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 7.38347489894325, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {c8f37362-a1c9-4765-a5e0-b3715ef2b8b4}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 1181.21m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 1181.20685944368, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {1b90ff21-3987-4ccf-888f-35e014036973}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 106.9m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 106.904128490089, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {7c00c73a-ff0f-459b-b257-40f8a6b50be7}, !- Handle + Foundation F 1.26W/m*K Perim 4.57m Area 28.24m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 28.2417865577057, !- Area {m2} + 4.572; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {d869f62d-7c8d-4c7b-907b-ae210e2dc98f}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 10.25m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 10.2510808141155, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {ad8da5ff-f21d-416d-b067-5c06daf51a75}, !- Handle + Foundation F 1.26W/m*K Perim 47.04m Area 215.05m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 215.053013294497, !- Area {m2} + 47.0369670372916; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {ed69c328-c2c6-44d3-83fc-19b834227148}, !- Handle + Foundation F 1.26W/m*K Perim 10.91m Area 49.89m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 49.8914642211037, !- Area {m2} + 10.9123937491478; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {f127d923-9e94-42ff-8d0b-f2dabd821d07}, !- Handle + Foundation F 1.26W/m*K Perim 37.18m Area 214.54m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 214.540477038288, !- Area {m2} + 37.1792729627082; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {d0faa8ba-8a75-4ce2-b566-6bacae89d889}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 64.44m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 64.4353651173052, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {999a18fa-5df2-4ebb-ae9e-e108c91edaa4}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 139.12m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 139.121811048745, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {567675aa-35fa-4e67-b1fa-062d836d96a2}, !- Handle + Foundation F 1.26W/m*K Perim 25.11m Area 114.81m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 114.813477601456, !- Area {m2} + 25.1123091866701; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {b0e1f26e-4b23-45fe-9b7f-6976dc05ee09}, !- Handle + Foundation F 1.26W/m*K Perim 36.6m Area 167.35m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 167.354368307014, !- Area {m2} + 36.6041925430914; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {5e87bc03-2832-4e19-af79-b776f81d11e7}, !- Handle + Foundation F 1.26W/m*K Perim 14.36m Area 44.75m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 44.7525064937417, !- Area {m2} + 14.3603872471001; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {0069fbd3-9b29-4404-b5cd-ad88cf27c86f}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 138.39m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 138.389590990559, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {aa5cb3c0-45d9-4033-8141-c1e70bade78c}, !- Handle + Foundation F 1.26W/m*K Perim 7.5m Area 34.3m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 34.3003816520091, !- Area {m2} + 7.50227070253917; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {b60070a3-29cb-400f-9f6d-d01fea9151f7}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 1.89m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 1.89088991314407, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {a9b5d8a0-9289-4682-b62e-6da9334d5e6b}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 513.29m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 513.285905076612, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {3a2b801e-6f88-472d-aa57-2cd58b069aa0}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 6.39m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 6.39300875396314, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {e32d3f12-3d84-4734-bf79-a2e76c6febe6}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 1587.92m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 1587.92008956533, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {ad14fe1f-84f6-4526-89e2-54bc64d05bed}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 1.98m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 1.98093228996017, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {63bfb146-d51e-4544-ae3d-dca9cda26f22}, !- Handle + Foundation F 1.26W/m*K Perim 0.53m Area 2.4m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 2.40177321373044, !- Area {m2} + 0.52532222522538; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {376be6a0-b223-45e0-97c6-75d32a8228e0}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 141.32m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 141.318471223154, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {c5bf4578-eebf-4ae7-b9a8-fdad29c52e9b}, !- Handle + Foundation F 1.26W/m*K Perim 37.18m Area 229.66m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 229.660781142494, !- Area {m2} + 37.1792729627082; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {62d3bad0-0b04-44f8-8d6a-b6ec6f0eac8b}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 15.38m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 15.3766212211756, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {c3a974a0-c182-4edc-8b64-751fbcd2fa22}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 24.71m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 24.7095641918829, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {f90a5634-a641-411f-abeb-b38de421beb4}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 352.88m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 352.884059740174, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {7bb226c3-6c15-40ee-a748-e3c0d6125c7f}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 2.43m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 2.43114417404195, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {daaec182-e5df-4649-ab85-7f07d96eaa90}, !- Handle + Foundation F 1.26W/m*K Perim 5.93m Area 27.1m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 27.0987863700937, !- Area {m2} + 5.92711862862942; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {e1cad604-7333-418b-836d-28bc421deea1}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 278.79m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 278.793683560959, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {26dee3f4-6d28-4268-89c1-2b2ba825c214}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 6.3m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 6.30296637714665, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {5fb6ff9c-7dd5-4883-8296-efa94864a263}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 51.26m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 51.2554040705833, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {143c3c76-0afb-4f6a-a0a4-b0f1ae4ed079}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 161.09m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 161.088412793281, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {57bbfec4-3e31-4a8b-8924-762c4b05d748}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 30.02m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 30.0210223841992, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {e707f477-a7b9-43e0-9c7d-f88514368890}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 16.11m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 16.1088412793245, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {3be81817-af33-4d08-bb66-dd7cfdccbb07}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 2.34m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 2.34110179722631, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {a703b864-92b7-42b0-a40a-e63289368abb}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 51.99m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 51.9876241287354, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {06262667-fa54-4a0f-a053-fa89e7f2af43}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 19.04m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 19.0377215119343, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {82a2bb8c-4133-4c08-bcc1-ea7920293a50}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 111.3m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 111.297448838981, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {626e314b-ec07-4231-b584-be806234740d}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 19.77m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 19.7699415700794, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {b6890f44-4315-4d02-971d-c2bc3cb25d8e}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 3.69m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 3.69173744947165, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:Construction:FfactorGroundFloor, + {90796947-f129-4d9c-bb5c-888475dd9f33}, !- Handle + Foundation F 1.26W/m*K Perim 0.0m Area 60.04m2, !- Name + 1.26343630645112, !- F-Factor {W/m-K} + 60.0420447683979, !- Area {m2} + 0; !- PerimeterExposed {m} + +OS:DefaultConstructionSet, + {b8e45b3f-9987-44bc-9ac4-7da42a54f0b4}, !- Handle + ComStock DOE Ref Pre-1980 - Outpatient - ASHRAE 169-2013-4A, !- Name + {25c99254-e06d-408f-8158-1cca14e1c44f}, !- Default Exterior Surface Constructions Name + {e6af645f-fef8-42f8-9236-808fc71e7a39}, !- Default Interior Surface Constructions Name + {1eda379d-1856-4894-aa0e-a08ee81c7a7c}, !- Default Ground Contact Surface Constructions Name + {0ae8f5af-3c13-4d12-8d01-f14ca27bd4fe}, !- Default Exterior SubSurface Constructions Name + {2c0a2166-77a3-459e-8c15-cdfa95e7e2df}, !- Default Interior SubSurface Constructions Name + {f68150d9-61bb-4940-8d4d-a007a38dd235}, !- Interior Partition Construction Name + , !- Space Shading Construction Name + , !- Building Shading Construction Name + , !- Site Shading Construction Name + ; !- Adiabatic Surface Construction Name + +OS:DefaultSurfaceConstructions, + {25c99254-e06d-408f-8158-1cca14e1c44f}, !- Handle + Default Surface Constructions 1, !- Name + {34d0e238-1cc2-41e3-b901-5733d5cadab0}, !- Floor Construction Name + {927d3da7-48cd-40e1-a6eb-d61813e85dc7}, !- Wall Construction Name + {8368f0b7-0bc2-4f7a-a938-173e3b78586d}; !- Roof Ceiling Construction Name + +OS:Construction, + {34d0e238-1cc2-41e3-b901-5733d5cadab0}, !- Handle + Typical Insulated Exterior Mass Floor, !- Name + , !- Surface Rendering Name + {3d44e696-47f7-428e-ba9f-cb942f25ca3f}, !- Layer 1 + {14efff5e-bc4b-4c4d-93ca-578f5b6c914f}; !- Layer 2 + +OS:Material, + {3d44e696-47f7-428e-ba9f-cb942f25ca3f}, !- Handle + 4 in. Normalweight Concrete Floor, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material:NoMass, + {14efff5e-bc4b-4c4d-93ca-578f5b6c914f}, !- Handle + Typical Carpet Pad, !- Name + Smooth, !- Roughness + 0.216479986995276, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + +OS:StandardsInformation:Construction, + {28602903-0407-4951-ad96-a8066d97e0f9}, !- Handle + {34d0e238-1cc2-41e3-b901-5733d5cadab0}, !- Construction Name + ExteriorFloor, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Construction, + {8368f0b7-0bc2-4f7a-a938-173e3b78586d}, !- Handle + Typical IEAD Roof R-11.63, !- Name + , !- Surface Rendering Name + {b672857b-73af-4d9b-81e9-46727bfa5bf9}, !- Layer 1 + {cfbc4ea6-3784-46b6-bc82-daceb6ab774d}, !- Layer 2 + {523afe8f-3b8b-4950-83e4-d1f8f36800e7}; !- Layer 3 + +OS:Material, + {b672857b-73af-4d9b-81e9-46727bfa5bf9}, !- Handle + Roof Membrane, !- Name + VeryRough, !- Roughness + 0.0095, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 1121.29, !- Density {kg/m3} + 1460, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material:NoMass, + {cfbc4ea6-3784-46b6-bc82-daceb6ab774d}, !- Handle + Typical Insulation R-10.51, !- Name + Smooth, !- Roughness + 1.85103422239846, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {523afe8f-3b8b-4950-83e4-d1f8f36800e7}, !- Handle + Metal Roof Surface, !- Name + Smooth, !- Roughness + 0.000799999999999998, !- Thickness {m} + 45.2799999999999, !- Conductivity {W/m-K} + 7823.99999999999, !- Density {kg/m3} + 499.999999999996, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:StandardsInformation:Construction, + {f0102dd5-0b38-4482-bc4e-b6c1b784c827}, !- Handle + {8368f0b7-0bc2-4f7a-a938-173e3b78586d}, !- Construction Name + ExteriorRoof, !- Intended Surface Type + IEAD; !- Standards Construction Type + +OS:DefaultSurfaceConstructions, + {e6af645f-fef8-42f8-9236-808fc71e7a39}, !- Handle + Default Surface Constructions 2, !- Name + {55095e8c-4b25-48ab-a29e-86e508d42879}, !- Floor Construction Name + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Wall Construction Name + {e0170f5c-da33-4ea8-9ef3-9436bc68e9d2}; !- Roof Ceiling Construction Name + +OS:Construction, + {55095e8c-4b25-48ab-a29e-86e508d42879}, !- Handle + Typical Interior Floor, !- Name + , !- Surface Rendering Name + {6c3fb99f-933c-43ce-a1cb-be57a02a0d9c}, !- Layer 1 + {e208d547-2da8-47e7-affc-99e9325b136d}; !- Layer 2 + +OS:Material, + {6c3fb99f-933c-43ce-a1cb-be57a02a0d9c}, !- Handle + 100mm Normalweight concrete floor, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 2.31044676686054, !- Conductivity {W/m-K} + 2322.00146636525, !- Density {kg/m3} + 832.5567858096, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material:NoMass, + {e208d547-2da8-47e7-affc-99e9325b136d}, !- Handle + CP02 CARPET PAD, !- Name + Smooth, !- Roughness + 0.216479986995276, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance + +OS:StandardsInformation:Construction, + {52b9cb20-5050-4d2b-9f2c-fdc786e707ae}, !- Handle + {55095e8c-4b25-48ab-a29e-86e508d42879}, !- Construction Name + InteriorFloor, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Construction, + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Handle + Typical Interior Wall, !- Name + , !- Surface Rendering Name + {41674879-96bd-48a5-b2a4-efd0c2efa11e}, !- Layer 1 + {41674879-96bd-48a5-b2a4-efd0c2efa11e}; !- Layer 2 + +OS:Material, + {41674879-96bd-48a5-b2a4-efd0c2efa11e}, !- Handle + G01 13mm gypsum board, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.160030944416258, !- Conductivity {W/m-K} + 800.000505207667, !- Density {kg/m3} + 1090.7294438736, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:StandardsInformation:Construction, + {216a8b2d-23c3-4215-9c38-784b895d2e01}, !- Handle + {1b5823da-a2c9-45cc-98dc-227e6d966a31}, !- Construction Name + InteriorWall, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Construction, + {e0170f5c-da33-4ea8-9ef3-9436bc68e9d2}, !- Handle + Typical Interior Ceiling, !- Name + , !- Surface Rendering Name + {e208d547-2da8-47e7-affc-99e9325b136d}, !- Layer 1 + {6c3fb99f-933c-43ce-a1cb-be57a02a0d9c}; !- Layer 2 + +OS:StandardsInformation:Construction, + {babd4c47-f839-4a73-8bde-f19533e14637}, !- Handle + {e0170f5c-da33-4ea8-9ef3-9436bc68e9d2}, !- Construction Name + InteriorCeiling, !- Intended Surface Type + ; !- Standards Construction Type + +OS:DefaultSurfaceConstructions, + {1eda379d-1856-4894-aa0e-a08ee81c7a7c}, !- Handle + Default Surface Constructions 3, !- Name + {698a99af-5bb0-4b6f-a5e4-b8eeb781a696}, !- Floor Construction Name + {cc1c6aa1-4ae0-4e14-a6a5-e6437258c68d}, !- Wall Construction Name + ; !- Roof Ceiling Construction Name + +OS:Construction, + {698a99af-5bb0-4b6f-a5e4-b8eeb781a696}, !- Handle + Typical Insulated Carpeted 6in Slab Floor, !- Name + , !- Surface Rendering Name + {de637935-f7b5-4490-9466-89066d1b2c03}, !- Layer 1 + {14efff5e-bc4b-4c4d-93ca-578f5b6c914f}; !- Layer 2 + +OS:Material:NoMass, + {64707810-18c5-47e5-b05e-cd4038356ca2}, !- Handle + Typical Insulation R-3.23, !- Name + Smooth, !- Roughness + 0.568746948776633, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {de637935-f7b5-4490-9466-89066d1b2c03}, !- Handle + 6 in. Normalweight Concrete Floor, !- Name + MediumRough, !- Roughness + 0.1524, !- Thickness {m} + 2.31, !- Conductivity {W/m-K} + 2321.99999999999, !- Density {kg/m3} + 831.999999999997, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:StandardsInformation:Construction, + {07fe51b0-c854-4c0c-84ca-93f53bceb789}, !- Handle + {698a99af-5bb0-4b6f-a5e4-b8eeb781a696}, !- Construction Name + GroundContactFloor, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Construction, + {cc1c6aa1-4ae0-4e14-a6a5-e6437258c68d}, !- Handle + Typical Insulated Basement Mass Wall, !- Name + , !- Surface Rendering Name + {15bdb32b-9ec9-4310-beb1-cb70f028e0e2}; !- Layer 1 + +OS:Material, + {15bdb32b-9ec9-4310-beb1-cb70f028e0e2}, !- Handle + 8 in. Concrete Block Basement Wall, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness {m} + 1.326, !- Conductivity {W/m-K} + 1841.99999999999, !- Density {kg/m3} + 911.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:StandardsInformation:Construction, + {093739a9-f8ab-4ff4-b0d0-84065839a371}, !- Handle + {cc1c6aa1-4ae0-4e14-a6a5-e6437258c68d}, !- Construction Name + GroundContactWall, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:DefaultSubSurfaceConstructions, + {0ae8f5af-3c13-4d12-8d01-f14ca27bd4fe}, !- Handle + Default Sub Surface Constructions 1, !- Name + {afa23406-9b89-4696-b2e9-df42d407a3cd}, !- Fixed Window Construction Name + {afa23406-9b89-4696-b2e9-df42d407a3cd}, !- Operable Window Construction Name + {3276309f-d18b-478a-b4b4-4d2a9398f129}, !- Door Construction Name + {c66f37b6-908e-4753-8e69-b445ba169fe9}, !- Glass Door Construction Name + {bdbfddad-0090-4fe8-a578-57acc69c0e30}, !- Overhead Door Construction Name + , !- Skylight Construction Name + {8f250e69-086f-4580-8034-174c84735672}, !- Tubular Daylight Dome Construction Name + {8f250e69-086f-4580-8034-174c84735672}; !- Tubular Daylight Diffuser Construction Name + +OS:Construction, + {afa23406-9b89-4696-b2e9-df42d407a3cd}, !- Handle + Simple Glazing U 1.22 SHGC 0.54, !- Name + , !- Surface Rendering Name + {7114b964-89e6-4c56-aa82-81daa69755b5}; !- Layer 1 + +OS:WindowMaterial:SimpleGlazingSystem, + {7114b964-89e6-4c56-aa82-81daa69755b5}, !- Handle + Simple Glazing U 1.22 SHGC 0.54, !- Name + 6.92748127615845, !- U-Factor {W/m2-K} + 0.54, !- Solar Heat Gain Coefficient + 0.81; !- Visible Transmittance + +OS:StandardsInformation:Construction, + {5c2737f4-a4b9-4e3c-9886-e4f0ab007c94}, !- Handle + {afa23406-9b89-4696-b2e9-df42d407a3cd}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + Metal framing (all other), !- Standards Construction Type + , !- Perturbable Layer + , !- Perturbable Layer Type + , !- Other Perturbable Layer Type + , !- Construction Standard + , !- Construction Standard Source + , !- Fenestration Type + , !- Fenestration Assembly Context + , !- Fenestration Number of Panes + Metal Framing; !- Fenestration Frame Type + +OS:Construction, + {3276309f-d18b-478a-b4b4-4d2a9398f129}, !- Handle + Typical Insulated Metal Door, !- Name + , !- Surface Rendering Name + {22e9f701-076c-485f-adec-312da6244da8}, !- Layer 1 + {64707810-18c5-47e5-b05e-cd4038356ca2}; !- Layer 2 + +OS:Material, + {22e9f701-076c-485f-adec-312da6244da8}, !- Handle + F08 Metal surface, !- Name + Smooth, !- Roughness + 0.0008, !- Thickness {m} + 45.2800000000001, !- Conductivity {W/m-K} + 7823.99999999999, !- Density {kg/m3} + 500, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:StandardsInformation:Construction, + {1ce46c69-0a90-49d0-a1d1-09220b04c117}, !- Handle + {3276309f-d18b-478a-b4b4-4d2a9398f129}, !- Construction Name + ExteriorDoor, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Construction, + {c66f37b6-908e-4753-8e69-b445ba169fe9}, !- Handle + U 0.88 SHGC 0.16 Sgl Ref-A-L Clr 6mm, !- Name + , !- Surface Rendering Name + {fd3ee032-9185-4f59-a950-4d1eede3c705}; !- Layer 1 + +OS:WindowMaterial:Glazing, + {fd3ee032-9185-4f59-a950-4d1eede3c705}, !- Handle + REF A CLEAR LO 6MM, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00599999999999998, !- Thickness {m} + 0.066, !- Solar Transmittance at Normal Incidence + 0.341, !- Front Side Solar Reflectance at Normal Incidence + 0.493, !- Back Side Solar Reflectance at Normal Incidence + 0.08, !- Visible Transmittance at Normal Incidence + 0.41, !- Front Side Visible Reflectance at Normal Incidence + 0.37, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.4, !- Back Side Infrared Hemispherical Emissivity + 0.9, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + No; !- Solar Diffusing + +OS:StandardsInformation:Construction, + {8ef8e80a-ffd1-4aa8-9c7f-4be7dbe241c5}, !- Handle + {c66f37b6-908e-4753-8e69-b445ba169fe9}, !- Construction Name + ExteriorWindow, !- Intended Surface Type + Metal framing (all other), !- Standards Construction Type + , !- Perturbable Layer + , !- Perturbable Layer Type + , !- Other Perturbable Layer Type + , !- Construction Standard + , !- Construction Standard Source + , !- Fenestration Type + , !- Fenestration Assembly Context + , !- Fenestration Number of Panes + Metal Framing; !- Fenestration Frame Type + +OS:Construction, + {bdbfddad-0090-4fe8-a578-57acc69c0e30}, !- Handle + Typical Overhead Door, !- Name + , !- Surface Rendering Name + {64707810-18c5-47e5-b05e-cd4038356ca2}; !- Layer 1 + +OS:StandardsInformation:Construction, + {61b471ee-25c5-43cb-b578-aa0f81a712c4}, !- Handle + {bdbfddad-0090-4fe8-a578-57acc69c0e30}, !- Construction Name + ExteriorDoor, !- Intended Surface Type + RollUp; !- Standards Construction Type + +OS:Construction, + {8f250e69-086f-4580-8034-174c84735672}, !- Handle + Typical Interior Window, !- Name + , !- Surface Rendering Name + {06875f1d-7ef8-44f3-a077-1bfe47007ab4}; !- Layer 1 + +OS:WindowMaterial:Glazing, + {06875f1d-7ef8-44f3-a077-1bfe47007ab4}, !- Handle + Clear 3mm, !- Name + SpectralAverage, !- Optical Data Type + , !- Window Glass Spectral Data Set Name + 0.00299999999999999, !- Thickness {m} + 0.837, !- Solar Transmittance at Normal Incidence + 0.075, !- Front Side Solar Reflectance at Normal Incidence + 0.075, !- Back Side Solar Reflectance at Normal Incidence + 0.898, !- Visible Transmittance at Normal Incidence + 0.081, !- Front Side Visible Reflectance at Normal Incidence + 0.081, !- Back Side Visible Reflectance at Normal Incidence + 0, !- Infrared Transmittance at Normal Incidence + 0.84, !- Front Side Infrared Hemispherical Emissivity + 0.84, !- Back Side Infrared Hemispherical Emissivity + 0.9, !- Conductivity {W/m-K} + 1, !- Dirt Correction Factor for Solar and Visible Transmittance + No; !- Solar Diffusing + +OS:StandardsInformation:Construction, + {91830c12-ed94-40ed-8f58-2b030088794e}, !- Handle + {8f250e69-086f-4580-8034-174c84735672}, !- Construction Name + InteriorWindow, !- Intended Surface Type + ; !- Standards Construction Type + +OS:DefaultSubSurfaceConstructions, + {2c0a2166-77a3-459e-8c15-cdfa95e7e2df}, !- Handle + Default Sub Surface Constructions 2, !- Name + {8f250e69-086f-4580-8034-174c84735672}, !- Fixed Window Construction Name + {8f250e69-086f-4580-8034-174c84735672}, !- Operable Window Construction Name + {f53720d5-a944-4e1c-aaf3-c3e3401c4d6b}, !- Door Construction Name + , !- Glass Door Construction Name + , !- Overhead Door Construction Name + , !- Skylight Construction Name + , !- Tubular Daylight Dome Construction Name + ; !- Tubular Daylight Diffuser Construction Name + +OS:Construction, + {f53720d5-a944-4e1c-aaf3-c3e3401c4d6b}, !- Handle + Typical Interior Door, !- Name + , !- Surface Rendering Name + {5b12bf9d-b137-4f44-8d46-a94b7431d071}; !- Layer 1 + +OS:Material, + {5b12bf9d-b137-4f44-8d46-a94b7431d071}, !- Handle + G05 25mm wood, !- Name + MediumSmooth, !- Roughness + 0.0254, !- Thickness {m} + 0.15, !- Conductivity {W/m-K} + 608, !- Density {kg/m3} + 1630, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.5, !- Solar Absorptance + 0.5; !- Visible Absorptance + +OS:StandardsInformation:Construction, + {e8de76d3-3657-4253-a10f-437aec598d16}, !- Handle + {f53720d5-a944-4e1c-aaf3-c3e3401c4d6b}, !- Construction Name + InteriorDoor, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Construction, + {f68150d9-61bb-4940-8d4d-a007a38dd235}, !- Handle + Typical Interior Partition, !- Name + , !- Surface Rendering Name + {5b12bf9d-b137-4f44-8d46-a94b7431d071}; !- Layer 1 + +OS:StandardsInformation:Construction, + {79c4836e-5ccd-4513-9268-3c5e3aef0c5a}, !- Handle + {f68150d9-61bb-4940-8d4d-a007a38dd235}, !- Construction Name + InteriorPartition, !- Intended Surface Type + ; !- Standards Construction Type + +OS:Construction, + {927d3da7-48cd-40e1-a6eb-d61813e85dc7}, !- Handle + Typical Insulated Exterior Mass Wall R-5.62, !- Name + , !- Surface Rendering Name + {ae15a9d8-4627-4860-b210-f39b1eb95b20}, !- Layer 1 + {24c1c309-cc3b-478b-b330-e78cadc47d48}, !- Layer 2 + {64707810-18c5-47e5-b05e-cd4038356ca2}, !- Layer 3 + {c159c08d-3e29-44a8-aea7-eaed8348d909}; !- Layer 4 + +OS:Material, + {ae15a9d8-4627-4860-b210-f39b1eb95b20}, !- Handle + 1IN Stucco, !- Name + Smooth, !- Roughness + 0.0253, !- Thickness {m} + 0.691799999999999, !- Conductivity {W/m-K} + 1858, !- Density {kg/m3} + 836.999999999999, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.92; !- Visible Absorptance + +OS:Material, + {24c1c309-cc3b-478b-b330-e78cadc47d48}, !- Handle + 8IN CONCRETE HW RefBldg, !- Name + Rough, !- Roughness + 0.2032, !- Thickness {m} + 1.311, !- Conductivity {W/m-K} + 2240, !- Density {kg/m3} + 836.800000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Material, + {c159c08d-3e29-44a8-aea7-eaed8348d909}, !- Handle + 1/2IN Gypsum, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 784.9, !- Density {kg/m3} + 830.000000000001, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.4, !- Solar Absorptance + 0.4; !- Visible Absorptance + +OS:StandardsInformation:Construction, + {d196103f-5280-497f-804f-156478acf36d}, !- Handle + {927d3da7-48cd-40e1-a6eb-d61813e85dc7}, !- Construction Name + ExteriorWall, !- Intended Surface Type + Mass; !- Standards Construction Type + +OS:Schedule:Constant, + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Handle + Always On Discrete, !- Name + {6c1b19f7-b679-401a-afd0-e157867cbb0e}, !- Schedule Type Limits Name + 1; !- Value + +OS:ScheduleTypeLimits, + {6c1b19f7-b679-401a-afd0-e157867cbb0e}, !- Handle + OnOff, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Discrete, !- Numeric Type + Availability; !- Unit Type + +OS:Site:GroundTemperature:FCfactorMethod, + {c3dd3c7c-a4d6-4f3a-82bd-b857a7bde672}, !- Handle + 14.64, !- January Ground Temperature {C} + 6.42, !- February Ground Temperature {C} + 4.25, !- March Ground Temperature {C} + -0.25, !- April Ground Temperature {C} + 5.15, !- May Ground Temperature {C} + 3.96, !- June Ground Temperature {C} + 10.11, !- July Ground Temperature {C} + 19.7, !- August Ground Temperature {C} + 22.53, !- September Ground Temperature {C} + 25.35, !- October Ground Temperature {C} + 25.54, !- November Ground Temperature {C} + 22.09; !- December Ground Temperature {C} + +OS:Exterior:Lights:Definition, + {55d8b1f5-79cd-47c9-94b3-17d78732978b}, !- Handle + Parking Areas and Drives Def (W/ft^2), !- Name + 0.041457711; !- Design Level {W} + +OS:Exterior:Lights, + {dafda4a7-2b8e-49be-870d-76a0c6dd4fd5}, !- Handle + Parking Areas and Drives, !- Name + {55d8b1f5-79cd-47c9-94b3-17d78732978b}, !- Exterior Lights Definition Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Schedule Name + AstronomicalClock, !- Control Option + 182249.999999999, !- Multiplier + Parking Areas and Drives; !- End-Use Subcategory + +OS:Exterior:Lights:Definition, + {5e28b968-2182-4fee-92d8-ad68436d6ab7}, !- Handle + Building Facades Def (W/ft^2), !- Name + 0.2; !- Design Level {W} + +OS:Exterior:Lights, + {ae53085a-db9e-4e5c-a455-76b6cf2b3654}, !- Handle + Building Facades, !- Name + {5e28b968-2182-4fee-92d8-ad68436d6ab7}, !- Exterior Lights Definition Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Schedule Name + AstronomicalClock, !- Control Option + 13452, !- Multiplier + Building Facades; !- End-Use Subcategory + +OS:Exterior:Lights:Definition, + {b901c8e5-742e-495e-8d7f-1e7bc31b0947}, !- Handle + Main Entries Def (W/ft), !- Name + 30; !- Design Level {W} + +OS:Exterior:Lights, + {d627526f-58c7-40f3-99b3-6d38023713a6}, !- Handle + Main Entries, !- Name + {b901c8e5-742e-495e-8d7f-1e7bc31b0947}, !- Exterior Lights Definition Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Schedule Name + AstronomicalClock, !- Control Option + 71.9999999999997, !- Multiplier + Main Entries; !- End-Use Subcategory + +OS:Exterior:Lights:Definition, + {a8d09205-755c-4eea-b08b-e0f64c6bdbcc}, !- Handle + Other Doors Def (W/ft), !- Name + 20; !- Design Level {W} + +OS:Exterior:Lights, + {9f5c274b-c935-4f80-af5d-d2a6fbd57d89}, !- Handle + Other Doors, !- Name + {a8d09205-755c-4eea-b08b-e0f64c6bdbcc}, !- Exterior Lights Definition Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Schedule Name + AstronomicalClock, !- Control Option + 186.839999999999, !- Multiplier + Other Doors; !- End-Use Subcategory + +OS:Schedule:Ruleset, + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Handle + OutPatientHealthCare Hours_of_operation, !- Name + {6c1b19f7-b679-401a-afd0-e157867cbb0e}, !- Schedule Type Limits Name + {951bb5cd-c456-4344-bac8-d5b761f1e647}, !- Default Day Schedule Name + {2a664cdc-1bfc-4c79-8b38-0e836d494948}, !- Summer Design Day Schedule Name + {5f2177ce-568a-4c02-8211-faccbe1b8d37}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {951bb5cd-c456-4344-bac8-d5b761f1e647}, !- Handle + OutPatientHealthCare Hours_of_operation Default, !- Name + {6c1b19f7-b679-401a-afd0-e157867cbb0e}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {5f2177ce-568a-4c02-8211-faccbe1b8d37}, !- Handle + OutPatientHealthCare Hours_of_operation Winter Design Day, !- Name + {6c1b19f7-b679-401a-afd0-e157867cbb0e}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {2a664cdc-1bfc-4c79-8b38-0e836d494948}, !- Handle + OutPatientHealthCare Hours_of_operation Summer Design Day, !- Name + {6c1b19f7-b679-401a-afd0-e157867cbb0e}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Fan:ZoneExhaust, + {41162e68-9656-443d-9bc5-b3fc776aade5}, !- Handle + Zone Outpatient Anesthesia A - Story ground Exhaust Fan, !- Name + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Availability Schedule Name + 0.0273754081632653, !- Fan Total Efficiency + 124.544455, !- Pressure Rise {Pa} + 0.0158570781854718, !- Maximum Flow Rate {m3/s} + {e5f5336c-eea4-4bfd-a7a3-641e51737a0d}, !- Air Inlet Node Name + {ae64e93e-fc55-4c21-a80f-c78a569bf822}, !- Air Outlet Node Name + Zone Exhaust Fans, !- End-Use Subcategory + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Flow Fraction Schedule Name + Decoupled; !- System Availability Manager Coupling Mode + +OS:Node, + {f04e0efa-10cd-440c-92b6-06c24b5b0875}, !- Handle + Zone Outpatient Anesthesia A - Story ground Exhaust Fan Inlet Air Node, !- Name + {3e2f894f-61c7-40bb-a562-fb2cb53a2ec3}, !- Inlet Port + {e5f5336c-eea4-4bfd-a7a3-641e51737a0d}; !- Outlet Port + +OS:Connection, + {3e2f894f-61c7-40bb-a562-fb2cb53a2ec3}, !- Handle + {72751647-2588-468d-9d7f-6f3090793041}, !- Source Object + 2, !- Outlet Port + {f04e0efa-10cd-440c-92b6-06c24b5b0875}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e5f5336c-eea4-4bfd-a7a3-641e51737a0d}, !- Handle + {f04e0efa-10cd-440c-92b6-06c24b5b0875}, !- Source Object + 3, !- Outlet Port + {41162e68-9656-443d-9bc5-b3fc776aade5}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {651033df-b808-4132-9d7d-2e03c4c015ec}, !- Handle + Zone Outpatient Anesthesia A - Story ground Exhaust Fan Outlet Air Node, !- Name + {ae64e93e-fc55-4c21-a80f-c78a569bf822}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {ae64e93e-fc55-4c21-a80f-c78a569bf822}, !- Handle + {41162e68-9656-443d-9bc5-b3fc776aade5}, !- Source Object + 7, !- Outlet Port + {651033df-b808-4132-9d7d-2e03c4c015ec}, !- Target Object + 2; !- Inlet Port + +OS:Fan:ZoneExhaust, + {cfcc7256-e017-446a-ad81-c135585e8e8e}, !- Handle + Zone Outpatient Anesthesia B - Story ground Exhaust Fan, !- Name + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Availability Schedule Name + 0.0273754081632653, !- Fan Total Efficiency + 124.544455, !- Pressure Rise {Pa} + 0.128948958497082, !- Maximum Flow Rate {m3/s} + {1ae1c416-cae1-430e-a222-1265eea462b1}, !- Air Inlet Node Name + {178bd8c6-551d-4ef8-8357-aabbeeefd38f}, !- Air Outlet Node Name + Zone Exhaust Fans, !- End-Use Subcategory + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Flow Fraction Schedule Name + Decoupled; !- System Availability Manager Coupling Mode + +OS:Node, + {e09a90a9-af86-4eb4-a7db-da8357cae29e}, !- Handle + Zone Outpatient Anesthesia B - Story ground Exhaust Fan Inlet Air Node, !- Name + {ccbebaf9-e3c7-4e8e-82dc-48b60e909e26}, !- Inlet Port + {1ae1c416-cae1-430e-a222-1265eea462b1}; !- Outlet Port + +OS:Connection, + {ccbebaf9-e3c7-4e8e-82dc-48b60e909e26}, !- Handle + {1609c903-5e63-43f3-bf6a-793d8763150b}, !- Source Object + 2, !- Outlet Port + {e09a90a9-af86-4eb4-a7db-da8357cae29e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1ae1c416-cae1-430e-a222-1265eea462b1}, !- Handle + {e09a90a9-af86-4eb4-a7db-da8357cae29e}, !- Source Object + 3, !- Outlet Port + {cfcc7256-e017-446a-ad81-c135585e8e8e}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {1f5ad732-35b5-4b0a-aa81-4c34d6f0ad98}, !- Handle + Zone Outpatient Anesthesia B - Story ground Exhaust Fan Outlet Air Node, !- Name + {178bd8c6-551d-4ef8-8357-aabbeeefd38f}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {178bd8c6-551d-4ef8-8357-aabbeeefd38f}, !- Handle + {cfcc7256-e017-446a-ad81-c135585e8e8e}, !- Source Object + 7, !- Outlet Port + {1f5ad732-35b5-4b0a-aa81-4c34d6f0ad98}, !- Target Object + 2; !- Inlet Port + +OS:Fan:ZoneExhaust, + {6c1db23d-3b23-44f7-a5b1-311505fdb0c5}, !- Handle + Zone Outpatient Anesthesia C - Story ground Exhaust Fan, !- Name + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Availability Schedule Name + 0.0273754081632653, !- Fan Total Efficiency + 124.544455, !- Pressure Rise {Pa} + 0.0158570781854718, !- Maximum Flow Rate {m3/s} + {d826f01f-11c3-4fe8-83c4-40b66db4a91b}, !- Air Inlet Node Name + {3424ab95-0d27-4fd1-a952-99c89c90abc2}, !- Air Outlet Node Name + Zone Exhaust Fans, !- End-Use Subcategory + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Flow Fraction Schedule Name + Decoupled; !- System Availability Manager Coupling Mode + +OS:Node, + {e77614db-eaa3-4ef5-b4e3-64170bcd6a30}, !- Handle + Zone Outpatient Anesthesia C - Story ground Exhaust Fan Inlet Air Node, !- Name + {4bb64f69-84a7-43b6-9e6e-cedd67befa72}, !- Inlet Port + {d826f01f-11c3-4fe8-83c4-40b66db4a91b}; !- Outlet Port + +OS:Connection, + {4bb64f69-84a7-43b6-9e6e-cedd67befa72}, !- Handle + {bd005f58-a040-4219-9232-aab2a1775b25}, !- Source Object + 2, !- Outlet Port + {e77614db-eaa3-4ef5-b4e3-64170bcd6a30}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d826f01f-11c3-4fe8-83c4-40b66db4a91b}, !- Handle + {e77614db-eaa3-4ef5-b4e3-64170bcd6a30}, !- Source Object + 3, !- Outlet Port + {6c1db23d-3b23-44f7-a5b1-311505fdb0c5}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {a8945196-d93a-4cfd-963f-3489a24a799c}, !- Handle + Zone Outpatient Anesthesia C - Story ground Exhaust Fan Outlet Air Node, !- Name + {3424ab95-0d27-4fd1-a952-99c89c90abc2}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {3424ab95-0d27-4fd1-a952-99c89c90abc2}, !- Handle + {6c1db23d-3b23-44f7-a5b1-311505fdb0c5}, !- Source Object + 7, !- Outlet Port + {a8945196-d93a-4cfd-963f-3489a24a799c}, !- Target Object + 2; !- Inlet Port + +OS:Fan:ZoneExhaust, + {f8de8ae7-e0fd-4ed6-a786-f4c350595464}, !- Handle + Zone Outpatient MRI A - Story ground Exhaust Fan, !- Name + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Availability Schedule Name + 0.0273754081632653, !- Fan Total Efficiency + 124.544455, !- Pressure Rise {Pa} + 0.0489434817070831, !- Maximum Flow Rate {m3/s} + {c7f402fe-fbe7-4c6c-822e-2eb581c8c450}, !- Air Inlet Node Name + {8263f75f-1db2-43d4-a472-298771b116e3}, !- Air Outlet Node Name + Zone Exhaust Fans, !- End-Use Subcategory + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Flow Fraction Schedule Name + Decoupled; !- System Availability Manager Coupling Mode + +OS:Node, + {41e2bf4e-2b33-40a2-b9db-0d0255b99e6a}, !- Handle + Zone Outpatient MRI A - Story ground Exhaust Fan Inlet Air Node, !- Name + {952e6e21-bf63-4cf8-b335-93ebe7bf651b}, !- Inlet Port + {c7f402fe-fbe7-4c6c-822e-2eb581c8c450}; !- Outlet Port + +OS:Connection, + {952e6e21-bf63-4cf8-b335-93ebe7bf651b}, !- Handle + {c6316fbd-39ab-4cbe-956e-c9f2c0edcae3}, !- Source Object + 2, !- Outlet Port + {41e2bf4e-2b33-40a2-b9db-0d0255b99e6a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c7f402fe-fbe7-4c6c-822e-2eb581c8c450}, !- Handle + {41e2bf4e-2b33-40a2-b9db-0d0255b99e6a}, !- Source Object + 3, !- Outlet Port + {f8de8ae7-e0fd-4ed6-a786-f4c350595464}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {e6830d4b-529a-4f43-8b5e-91212b93499f}, !- Handle + Zone Outpatient MRI A - Story ground Exhaust Fan Outlet Air Node, !- Name + {8263f75f-1db2-43d4-a472-298771b116e3}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {8263f75f-1db2-43d4-a472-298771b116e3}, !- Handle + {f8de8ae7-e0fd-4ed6-a786-f4c350595464}, !- Source Object + 7, !- Outlet Port + {e6830d4b-529a-4f43-8b5e-91212b93499f}, !- Target Object + 2; !- Inlet Port + +OS:Fan:ZoneExhaust, + {09d5624c-4d41-45c7-8055-6081a8237f24}, !- Handle + Zone Outpatient MRI B - Story ground Exhaust Fan, !- Name + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Availability Schedule Name + 0.0273754081632653, !- Fan Total Efficiency + 124.544455, !- Pressure Rise {Pa} + 0.398005919976587, !- Maximum Flow Rate {m3/s} + {41a60f77-1c8b-4b18-a985-383a5bf058f8}, !- Air Inlet Node Name + {7579c8c4-75f9-45c4-b6c8-88b85bb0fc4d}, !- Air Outlet Node Name + Zone Exhaust Fans, !- End-Use Subcategory + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Flow Fraction Schedule Name + Decoupled; !- System Availability Manager Coupling Mode + +OS:Node, + {7225d6a9-559c-41e7-b961-c2322da99be5}, !- Handle + Zone Outpatient MRI B - Story ground Exhaust Fan Inlet Air Node, !- Name + {e2992199-a4fd-4bf8-abf6-d2cf80e1a08f}, !- Inlet Port + {41a60f77-1c8b-4b18-a985-383a5bf058f8}; !- Outlet Port + +OS:Connection, + {e2992199-a4fd-4bf8-abf6-d2cf80e1a08f}, !- Handle + {e0691229-32c4-481d-b338-e391b7464137}, !- Source Object + 2, !- Outlet Port + {7225d6a9-559c-41e7-b961-c2322da99be5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {41a60f77-1c8b-4b18-a985-383a5bf058f8}, !- Handle + {7225d6a9-559c-41e7-b961-c2322da99be5}, !- Source Object + 3, !- Outlet Port + {09d5624c-4d41-45c7-8055-6081a8237f24}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {71750a8c-e1f2-402e-9bd4-643304ce57a7}, !- Handle + Zone Outpatient MRI B - Story ground Exhaust Fan Outlet Air Node, !- Name + {7579c8c4-75f9-45c4-b6c8-88b85bb0fc4d}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {7579c8c4-75f9-45c4-b6c8-88b85bb0fc4d}, !- Handle + {09d5624c-4d41-45c7-8055-6081a8237f24}, !- Source Object + 7, !- Outlet Port + {71750a8c-e1f2-402e-9bd4-643304ce57a7}, !- Target Object + 2; !- Inlet Port + +OS:Fan:ZoneExhaust, + {af7c7636-7192-4058-98d7-5a96c41a0110}, !- Handle + Zone Outpatient MRI C - Story ground Exhaust Fan, !- Name + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Availability Schedule Name + 0.0273754081632653, !- Fan Total Efficiency + 124.544455, !- Pressure Rise {Pa} + 0.0489434817070831, !- Maximum Flow Rate {m3/s} + {c12b554c-03e9-4aff-8dd4-99536f0093ce}, !- Air Inlet Node Name + {e92c2a7b-911e-4a1d-8e23-f99596b45b47}, !- Air Outlet Node Name + Zone Exhaust Fans, !- End-Use Subcategory + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Flow Fraction Schedule Name + Decoupled; !- System Availability Manager Coupling Mode + +OS:Node, + {6a6c9b00-4213-4ba4-9c13-ef7be766cf9e}, !- Handle + Zone Outpatient MRI C - Story ground Exhaust Fan Inlet Air Node, !- Name + {da2411b4-c8e5-4043-8bbb-9792a906fa3e}, !- Inlet Port + {c12b554c-03e9-4aff-8dd4-99536f0093ce}; !- Outlet Port + +OS:Connection, + {da2411b4-c8e5-4043-8bbb-9792a906fa3e}, !- Handle + {2d853992-5341-4cac-9851-6320ed4593ba}, !- Source Object + 2, !- Outlet Port + {6a6c9b00-4213-4ba4-9c13-ef7be766cf9e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c12b554c-03e9-4aff-8dd4-99536f0093ce}, !- Handle + {6a6c9b00-4213-4ba4-9c13-ef7be766cf9e}, !- Source Object + 3, !- Outlet Port + {af7c7636-7192-4058-98d7-5a96c41a0110}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {ce9dff64-f5ee-4ff8-a757-c7a5b5e040a8}, !- Handle + Zone Outpatient MRI C - Story ground Exhaust Fan Outlet Air Node, !- Name + {e92c2a7b-911e-4a1d-8e23-f99596b45b47}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {e92c2a7b-911e-4a1d-8e23-f99596b45b47}, !- Handle + {af7c7636-7192-4058-98d7-5a96c41a0110}, !- Source Object + 7, !- Outlet Port + {ce9dff64-f5ee-4ff8-a757-c7a5b5e040a8}, !- Target Object + 2; !- Inlet Port + +OS:Fan:ZoneExhaust, + {841c28a0-1eb9-49a9-88cf-1643966781c3}, !- Handle + Zone Outpatient MRI_Control A - Story ground Exhaust Fan, !- Name + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Availability Schedule Name + 0.0273754081632653, !- Fan Total Efficiency + 124.544455, !- Pressure Rise {Pa} + 0.0187540443924299, !- Maximum Flow Rate {m3/s} + {4f5b56b1-0b94-49b9-bac6-5eb241b321b7}, !- Air Inlet Node Name + {66a74579-7fe0-4711-807e-0ff9c9978140}, !- Air Outlet Node Name + Zone Exhaust Fans, !- End-Use Subcategory + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Flow Fraction Schedule Name + Decoupled; !- System Availability Manager Coupling Mode + +OS:Node, + {4e6d90b8-d377-4fdb-9a7f-88c501797ef9}, !- Handle + Zone Outpatient MRI_Control A - Story ground Exhaust Fan Inlet Air Node, !- Name + {016f783d-e1dd-4469-b5e9-91fa4f2bc3c3}, !- Inlet Port + {4f5b56b1-0b94-49b9-bac6-5eb241b321b7}; !- Outlet Port + +OS:Connection, + {016f783d-e1dd-4469-b5e9-91fa4f2bc3c3}, !- Handle + {935302f2-c5c4-4f36-a53d-37c26186b9bf}, !- Source Object + 2, !- Outlet Port + {4e6d90b8-d377-4fdb-9a7f-88c501797ef9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4f5b56b1-0b94-49b9-bac6-5eb241b321b7}, !- Handle + {4e6d90b8-d377-4fdb-9a7f-88c501797ef9}, !- Source Object + 3, !- Outlet Port + {841c28a0-1eb9-49a9-88cf-1643966781c3}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {db44c43d-0bd3-4a58-b81d-f9ba08f2b008}, !- Handle + Zone Outpatient MRI_Control A - Story ground Exhaust Fan Outlet Air Node, !- Name + {66a74579-7fe0-4711-807e-0ff9c9978140}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {66a74579-7fe0-4711-807e-0ff9c9978140}, !- Handle + {841c28a0-1eb9-49a9-88cf-1643966781c3}, !- Source Object + 7, !- Outlet Port + {db44c43d-0bd3-4a58-b81d-f9ba08f2b008}, !- Target Object + 2; !- Inlet Port + +OS:Fan:ZoneExhaust, + {129450a2-5426-4e38-826d-4ba11b4b7a57}, !- Handle + Zone Outpatient MRI_Control B - Story ground Exhaust Fan, !- Name + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Availability Schedule Name + 0.0273754081632653, !- Fan Total Efficiency + 124.544455, !- Pressure Rise {Pa} + 0.152506941299409, !- Maximum Flow Rate {m3/s} + {aa96f2cd-abc7-4e7e-9359-50b127d84c65}, !- Air Inlet Node Name + {ba286944-aeea-4e47-8d8c-a8ba2ee3ff4d}, !- Air Outlet Node Name + Zone Exhaust Fans, !- End-Use Subcategory + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Flow Fraction Schedule Name + Decoupled; !- System Availability Manager Coupling Mode + +OS:Node, + {822348fc-d9aa-4e8a-9dd7-db12f1875b1a}, !- Handle + Zone Outpatient MRI_Control B - Story ground Exhaust Fan Inlet Air Node, !- Name + {06bb634d-d4c0-4e70-9eb2-154812e72db9}, !- Inlet Port + {aa96f2cd-abc7-4e7e-9359-50b127d84c65}; !- Outlet Port + +OS:Connection, + {06bb634d-d4c0-4e70-9eb2-154812e72db9}, !- Handle + {47dc7579-25a2-43d6-a3a8-49d80425b97a}, !- Source Object + 2, !- Outlet Port + {822348fc-d9aa-4e8a-9dd7-db12f1875b1a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {aa96f2cd-abc7-4e7e-9359-50b127d84c65}, !- Handle + {822348fc-d9aa-4e8a-9dd7-db12f1875b1a}, !- Source Object + 3, !- Outlet Port + {129450a2-5426-4e38-826d-4ba11b4b7a57}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {0f822baa-00fa-46a1-a628-886a85dbda42}, !- Handle + Zone Outpatient MRI_Control B - Story ground Exhaust Fan Outlet Air Node, !- Name + {ba286944-aeea-4e47-8d8c-a8ba2ee3ff4d}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {ba286944-aeea-4e47-8d8c-a8ba2ee3ff4d}, !- Handle + {129450a2-5426-4e38-826d-4ba11b4b7a57}, !- Source Object + 7, !- Outlet Port + {0f822baa-00fa-46a1-a628-886a85dbda42}, !- Target Object + 2; !- Inlet Port + +OS:Fan:ZoneExhaust, + {b0ea8590-c3fd-4434-9014-e4949e1e0e09}, !- Handle + Zone Outpatient MRI_Control C - Story ground Exhaust Fan, !- Name + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Availability Schedule Name + 0.0273754081632653, !- Fan Total Efficiency + 124.544455, !- Pressure Rise {Pa} + 0.0187540443924299, !- Maximum Flow Rate {m3/s} + {eb9968fe-25f9-4ad8-8310-5a89ab323c7e}, !- Air Inlet Node Name + {b9027d6f-3a20-447f-a551-12ad890ab545}, !- Air Outlet Node Name + Zone Exhaust Fans, !- End-Use Subcategory + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Flow Fraction Schedule Name + Decoupled; !- System Availability Manager Coupling Mode + +OS:Node, + {8d5fafad-39a4-4e80-91cb-8156e01d4c5d}, !- Handle + Zone Outpatient MRI_Control C - Story ground Exhaust Fan Inlet Air Node, !- Name + {e6b10b14-41ff-432d-8219-eec6085273db}, !- Inlet Port + {eb9968fe-25f9-4ad8-8310-5a89ab323c7e}; !- Outlet Port + +OS:Connection, + {e6b10b14-41ff-432d-8219-eec6085273db}, !- Handle + {291a673b-be77-441a-b520-46a53175d4b3}, !- Source Object + 2, !- Outlet Port + {8d5fafad-39a4-4e80-91cb-8156e01d4c5d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {eb9968fe-25f9-4ad8-8310-5a89ab323c7e}, !- Handle + {8d5fafad-39a4-4e80-91cb-8156e01d4c5d}, !- Source Object + 3, !- Outlet Port + {b0ea8590-c3fd-4434-9014-e4949e1e0e09}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {d8feebc2-7861-415f-84a6-9ea017fbc157}, !- Handle + Zone Outpatient MRI_Control C - Story ground Exhaust Fan Outlet Air Node, !- Name + {b9027d6f-3a20-447f-a551-12ad890ab545}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {b9027d6f-3a20-447f-a551-12ad890ab545}, !- Handle + {b0ea8590-c3fd-4434-9014-e4949e1e0e09}, !- Source Object + 7, !- Outlet Port + {d8feebc2-7861-415f-84a6-9ea017fbc157}, !- Target Object + 2; !- Inlet Port + +OS:Fan:ZoneExhaust, + {364c071b-7ace-44f3-8b81-7a9d2c1cb55c}, !- Handle + Zone Outpatient Soil Work A - Story ground Exhaust Fan, !- Name + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Availability Schedule Name + 0.0273754081632653, !- Fan Total Efficiency + 124.544455, !- Pressure Rise {Pa} + 0.0670876384769848, !- Maximum Flow Rate {m3/s} + {8276a5cf-8b8b-49ff-b3a2-f5fce4fb82db}, !- Air Inlet Node Name + {772d3493-b9cc-4554-8aaa-d986a79b160d}, !- Air Outlet Node Name + Zone Exhaust Fans, !- End-Use Subcategory + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Flow Fraction Schedule Name + Decoupled; !- System Availability Manager Coupling Mode + +OS:Node, + {5a0073dd-8eec-4add-b7be-ad3ceef0cee3}, !- Handle + Zone Outpatient Soil Work A - Story ground Exhaust Fan Inlet Air Node, !- Name + {a6688c12-6468-40c1-8307-537998f70e01}, !- Inlet Port + {8276a5cf-8b8b-49ff-b3a2-f5fce4fb82db}; !- Outlet Port + +OS:Connection, + {a6688c12-6468-40c1-8307-537998f70e01}, !- Handle + {8ba5d81e-a2f3-4980-a216-9954bfd1c923}, !- Source Object + 2, !- Outlet Port + {5a0073dd-8eec-4add-b7be-ad3ceef0cee3}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8276a5cf-8b8b-49ff-b3a2-f5fce4fb82db}, !- Handle + {5a0073dd-8eec-4add-b7be-ad3ceef0cee3}, !- Source Object + 3, !- Outlet Port + {364c071b-7ace-44f3-8b81-7a9d2c1cb55c}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {cbc845b3-77c8-4182-a640-59247fb25e50}, !- Handle + Zone Outpatient Soil Work A - Story ground Exhaust Fan Outlet Air Node, !- Name + {772d3493-b9cc-4554-8aaa-d986a79b160d}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {772d3493-b9cc-4554-8aaa-d986a79b160d}, !- Handle + {364c071b-7ace-44f3-8b81-7a9d2c1cb55c}, !- Source Object + 7, !- Outlet Port + {cbc845b3-77c8-4182-a640-59247fb25e50}, !- Target Object + 2; !- Inlet Port + +OS:Fan:ZoneExhaust, + {81c41094-b39e-4958-b517-50489fcb1f9f}, !- Handle + Zone Outpatient Soil Work B - Story ground Exhaust Fan, !- Name + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Availability Schedule Name + 0.0273754081632653, !- Fan Total Efficiency + 124.544455, !- Pressure Rise {Pa} + 0.545553285949103, !- Maximum Flow Rate {m3/s} + {7dadfe91-b197-48ac-acdb-17d8128af0a9}, !- Air Inlet Node Name + {c73ced64-9125-4ade-ae07-f99594fc3308}, !- Air Outlet Node Name + Zone Exhaust Fans, !- End-Use Subcategory + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Flow Fraction Schedule Name + Decoupled; !- System Availability Manager Coupling Mode + +OS:Node, + {df7f876a-5c07-4573-bc24-250673fbeade}, !- Handle + Zone Outpatient Soil Work B - Story ground Exhaust Fan Inlet Air Node, !- Name + {5e48dbe1-c901-4349-8d2e-246c3a777f10}, !- Inlet Port + {7dadfe91-b197-48ac-acdb-17d8128af0a9}; !- Outlet Port + +OS:Connection, + {5e48dbe1-c901-4349-8d2e-246c3a777f10}, !- Handle + {731cd018-035e-4bb0-8ecc-424bfaec08ea}, !- Source Object + 2, !- Outlet Port + {df7f876a-5c07-4573-bc24-250673fbeade}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7dadfe91-b197-48ac-acdb-17d8128af0a9}, !- Handle + {df7f876a-5c07-4573-bc24-250673fbeade}, !- Source Object + 3, !- Outlet Port + {81c41094-b39e-4958-b517-50489fcb1f9f}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {2c274489-39cc-455c-aace-2e4db9d3f50c}, !- Handle + Zone Outpatient Soil Work B - Story ground Exhaust Fan Outlet Air Node, !- Name + {c73ced64-9125-4ade-ae07-f99594fc3308}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {c73ced64-9125-4ade-ae07-f99594fc3308}, !- Handle + {81c41094-b39e-4958-b517-50489fcb1f9f}, !- Source Object + 7, !- Outlet Port + {2c274489-39cc-455c-aace-2e4db9d3f50c}, !- Target Object + 2; !- Inlet Port + +OS:Fan:ZoneExhaust, + {6f0315c5-9c1d-42a6-8291-182fac1868c7}, !- Handle + Zone Outpatient Soil Work C - Story ground Exhaust Fan, !- Name + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Availability Schedule Name + 0.0273754081632653, !- Fan Total Efficiency + 124.544455, !- Pressure Rise {Pa} + 0.0670876384769848, !- Maximum Flow Rate {m3/s} + {d8b930f3-a059-4960-afbb-e5dec03cad10}, !- Air Inlet Node Name + {f5adbd01-2ea1-4bce-9799-3e25c6521c76}, !- Air Outlet Node Name + Zone Exhaust Fans, !- End-Use Subcategory + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Flow Fraction Schedule Name + Decoupled; !- System Availability Manager Coupling Mode + +OS:Node, + {bd41797c-8a4e-4a31-9199-db709d38eb3e}, !- Handle + Zone Outpatient Soil Work C - Story ground Exhaust Fan Inlet Air Node, !- Name + {8249da5e-9920-437e-89b2-5c563c57485e}, !- Inlet Port + {d8b930f3-a059-4960-afbb-e5dec03cad10}; !- Outlet Port + +OS:Connection, + {8249da5e-9920-437e-89b2-5c563c57485e}, !- Handle + {090d4401-04e2-4253-b891-d05da5f8e55d}, !- Source Object + 2, !- Outlet Port + {bd41797c-8a4e-4a31-9199-db709d38eb3e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d8b930f3-a059-4960-afbb-e5dec03cad10}, !- Handle + {bd41797c-8a4e-4a31-9199-db709d38eb3e}, !- Source Object + 3, !- Outlet Port + {6f0315c5-9c1d-42a6-8291-182fac1868c7}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {ab3b3db1-2c40-479f-89f4-abd979d069fa}, !- Handle + Zone Outpatient Soil Work C - Story ground Exhaust Fan Outlet Air Node, !- Name + {f5adbd01-2ea1-4bce-9799-3e25c6521c76}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {f5adbd01-2ea1-4bce-9799-3e25c6521c76}, !- Handle + {6f0315c5-9c1d-42a6-8291-182fac1868c7}, !- Source Object + 7, !- Outlet Port + {ab3b3db1-2c40-479f-89f4-abd979d069fa}, !- Target Object + 2; !- Inlet Port + +OS:Fan:ZoneExhaust, + {7cf1bff5-e215-4821-9a2e-d2c659c5223e}, !- Handle + Zone Outpatient Toilet A - Story ground Exhaust Fan, !- Name + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Availability Schedule Name + 0.0273754081632653, !- Fan Total Efficiency + 124.544455, !- Pressure Rise {Pa} + 0.14713538893245, !- Maximum Flow Rate {m3/s} + {ce54017a-ec75-42d9-86ce-c0f38192ad49}, !- Air Inlet Node Name + {392ed977-be27-4ca3-93fc-1707c01fc286}, !- Air Outlet Node Name + Zone Exhaust Fans, !- End-Use Subcategory + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Flow Fraction Schedule Name + Decoupled; !- System Availability Manager Coupling Mode + +OS:Node, + {87db7135-eab5-4e0d-b351-21fe126ab82e}, !- Handle + Zone Outpatient Toilet A - Story ground Exhaust Fan Inlet Air Node, !- Name + {60c65d41-dc9b-450d-adf0-e5f24568e0c3}, !- Inlet Port + {ce54017a-ec75-42d9-86ce-c0f38192ad49}; !- Outlet Port + +OS:Connection, + {60c65d41-dc9b-450d-adf0-e5f24568e0c3}, !- Handle + {76e6fe05-94a7-439d-896b-956c58659b98}, !- Source Object + 2, !- Outlet Port + {87db7135-eab5-4e0d-b351-21fe126ab82e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ce54017a-ec75-42d9-86ce-c0f38192ad49}, !- Handle + {87db7135-eab5-4e0d-b351-21fe126ab82e}, !- Source Object + 3, !- Outlet Port + {7cf1bff5-e215-4821-9a2e-d2c659c5223e}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {de6455e9-686c-40b1-b7ad-1d7ecebfb4ad}, !- Handle + Zone Outpatient Toilet A - Story ground Exhaust Fan Outlet Air Node, !- Name + {392ed977-be27-4ca3-93fc-1707c01fc286}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {392ed977-be27-4ca3-93fc-1707c01fc286}, !- Handle + {7cf1bff5-e215-4821-9a2e-d2c659c5223e}, !- Source Object + 7, !- Outlet Port + {de6455e9-686c-40b1-b7ad-1d7ecebfb4ad}, !- Target Object + 2; !- Inlet Port + +OS:Fan:ZoneExhaust, + {34d6886f-7f80-4804-80cf-933df8eabca7}, !- Handle + Zone Outpatient Toilet B - Story ground Exhaust Fan, !- Name + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Availability Schedule Name + 0.0273754081632653, !- Fan Total Efficiency + 124.544455, !- Pressure Rise {Pa} + 1.19649754759269, !- Maximum Flow Rate {m3/s} + {cac07af7-ea46-4ede-8dcb-ac7a4d0e49ea}, !- Air Inlet Node Name + {5205a79b-f09c-40e7-8c07-ba1b50f480f5}, !- Air Outlet Node Name + Zone Exhaust Fans, !- End-Use Subcategory + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Flow Fraction Schedule Name + Decoupled; !- System Availability Manager Coupling Mode + +OS:Node, + {a5aa655f-5f34-4146-8d90-51b269e17e5a}, !- Handle + Zone Outpatient Toilet B - Story ground Exhaust Fan Inlet Air Node, !- Name + {b01bfeef-dc24-4888-a8a4-6ddbf704c315}, !- Inlet Port + {cac07af7-ea46-4ede-8dcb-ac7a4d0e49ea}; !- Outlet Port + +OS:Connection, + {b01bfeef-dc24-4888-a8a4-6ddbf704c315}, !- Handle + {23d9aeaf-7320-419a-8af6-a1227ea2757b}, !- Source Object + 2, !- Outlet Port + {a5aa655f-5f34-4146-8d90-51b269e17e5a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {cac07af7-ea46-4ede-8dcb-ac7a4d0e49ea}, !- Handle + {a5aa655f-5f34-4146-8d90-51b269e17e5a}, !- Source Object + 3, !- Outlet Port + {34d6886f-7f80-4804-80cf-933df8eabca7}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {147494d1-a593-4ca5-8b9a-6637d8552172}, !- Handle + Zone Outpatient Toilet B - Story ground Exhaust Fan Outlet Air Node, !- Name + {5205a79b-f09c-40e7-8c07-ba1b50f480f5}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {5205a79b-f09c-40e7-8c07-ba1b50f480f5}, !- Handle + {34d6886f-7f80-4804-80cf-933df8eabca7}, !- Source Object + 7, !- Outlet Port + {147494d1-a593-4ca5-8b9a-6637d8552172}, !- Target Object + 2; !- Inlet Port + +OS:Fan:ZoneExhaust, + {bfaf57a7-b042-40b5-83af-50d722ec79ea}, !- Handle + Zone Outpatient Toilet C - Story ground Exhaust Fan, !- Name + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Availability Schedule Name + 0.0273754081632653, !- Fan Total Efficiency + 124.544455, !- Pressure Rise {Pa} + 0.14713538893245, !- Maximum Flow Rate {m3/s} + {dc8de926-931b-4c2d-9927-502aca799081}, !- Air Inlet Node Name + {d05791db-aad8-40d8-84fa-85913616a706}, !- Air Outlet Node Name + Zone Exhaust Fans, !- End-Use Subcategory + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Flow Fraction Schedule Name + Decoupled; !- System Availability Manager Coupling Mode + +OS:Node, + {e0ef77d9-9995-446a-976a-661620c3310f}, !- Handle + Zone Outpatient Toilet C - Story ground Exhaust Fan Inlet Air Node, !- Name + {7514a378-270c-4aac-8d7e-1ad3b70e9077}, !- Inlet Port + {dc8de926-931b-4c2d-9927-502aca799081}; !- Outlet Port + +OS:Connection, + {7514a378-270c-4aac-8d7e-1ad3b70e9077}, !- Handle + {f1e0312d-5b6a-4a73-bb6c-d58d51b89500}, !- Source Object + 2, !- Outlet Port + {e0ef77d9-9995-446a-976a-661620c3310f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {dc8de926-931b-4c2d-9927-502aca799081}, !- Handle + {e0ef77d9-9995-446a-976a-661620c3310f}, !- Source Object + 3, !- Outlet Port + {bfaf57a7-b042-40b5-83af-50d722ec79ea}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {7ec896fa-1e99-4d89-b21b-96922a0ba55d}, !- Handle + Zone Outpatient Toilet C - Story ground Exhaust Fan Outlet Air Node, !- Name + {d05791db-aad8-40d8-84fa-85913616a706}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {d05791db-aad8-40d8-84fa-85913616a706}, !- Handle + {bfaf57a7-b042-40b5-83af-50d722ec79ea}, !- Source Object + 7, !- Outlet Port + {7ec896fa-1e99-4d89-b21b-96922a0ba55d}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Ruleset, + {ebe7f794-1482-407a-89e2-33352fe18368}, !- Handle + OutPatientHealthCare BLDG_SWH_SCH_Pre2004, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + {e0dea272-d743-4615-b67e-30750ed8af92}, !- Default Day Schedule Name + {72925389-f15d-4cc5-98b2-9b8e4d1949a4}; !- Summer Design Day Schedule Name + +OS:Schedule:Day, + {e0dea272-d743-4615-b67e-30750ed8af92}, !- Handle + OutPatientHealthCare BLDG_SWH_SCH_Pre2004 Default, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 6, !- Hour 1 + 30, !- Minute 1 + 0.01, !- Value Until Time 1 + 6, !- Hour 2 + 45, !- Minute 2 + 0.05, !- Value Until Time 2 + 7, !- Hour 3 + 0, !- Minute 3 + 0.09, !- Value Until Time 3 + 7, !- Hour 4 + 15, !- Minute 4 + 0.13, !- Value Until Time 4 + 7, !- Hour 5 + 30, !- Minute 5 + 0.17, !- Value Until Time 5 + 7, !- Hour 6 + 45, !- Minute 6 + 0.2725, !- Value Until Time 6 + 8, !- Hour 7 + 0, !- Minute 7 + 0.375, !- Value Until Time 7 + 8, !- Hour 8 + 15, !- Minute 8 + 0.4775, !- Value Until Time 8 + 8, !- Hour 9 + 30, !- Minute 9 + 0.58, !- Value Until Time 9 + 8, !- Hour 10 + 45, !- Minute 10 + 0.6, !- Value Until Time 10 + 9, !- Hour 11 + 0, !- Minute 11 + 0.62, !- Value Until Time 11 + 9, !- Hour 12 + 15, !- Minute 12 + 0.64, !- Value Until Time 12 + 9, !- Hour 13 + 30, !- Minute 13 + 0.66, !- Value Until Time 13 + 9, !- Hour 14 + 45, !- Minute 14 + 0.69, !- Value Until Time 14 + 10, !- Hour 15 + 0, !- Minute 15 + 0.72, !- Value Until Time 15 + 10, !- Hour 16 + 15, !- Minute 16 + 0.75, !- Value Until Time 16 + 10, !- Hour 17 + 30, !- Minute 17 + 0.78, !- Value Until Time 17 + 10, !- Hour 18 + 45, !- Minute 18 + 0.79, !- Value Until Time 18 + 11, !- Hour 19 + 0, !- Minute 19 + 0.8, !- Value Until Time 19 + 11, !- Hour 20 + 15, !- Minute 20 + 0.81, !- Value Until Time 20 + 11, !- Hour 21 + 30, !- Minute 21 + 0.82, !- Value Until Time 21 + 11, !- Hour 22 + 45, !- Minute 22 + 0.7925, !- Value Until Time 22 + 12, !- Hour 23 + 0, !- Minute 23 + 0.765, !- Value Until Time 23 + 12, !- Hour 24 + 15, !- Minute 24 + 0.7375, !- Value Until Time 24 + 12, !- Hour 25 + 30, !- Minute 25 + 0.71, !- Value Until Time 25 + 12, !- Hour 26 + 45, !- Minute 26 + 0.7375, !- Value Until Time 26 + 13, !- Hour 27 + 0, !- Minute 27 + 0.765, !- Value Until Time 27 + 13, !- Hour 28 + 15, !- Minute 28 + 0.7925, !- Value Until Time 28 + 13, !- Hour 29 + 30, !- Minute 29 + 0.82, !- Value Until Time 29 + 13, !- Hour 30 + 45, !- Minute 30 + 0.81, !- Value Until Time 30 + 14, !- Hour 31 + 0, !- Minute 31 + 0.8, !- Value Until Time 31 + 14, !- Hour 32 + 15, !- Minute 32 + 0.79, !- Value Until Time 32 + 14, !- Hour 33 + 30, !- Minute 33 + 0.78, !- Value Until Time 33 + 14, !- Hour 34 + 45, !- Minute 34 + 0.77, !- Value Until Time 34 + 15, !- Hour 35 + 0, !- Minute 35 + 0.76, !- Value Until Time 35 + 15, !- Hour 36 + 15, !- Minute 36 + 0.75, !- Value Until Time 36 + 15, !- Hour 37 + 30, !- Minute 37 + 0.74, !- Value Until Time 37 + 15, !- Hour 38 + 45, !- Minute 38 + 0.7125, !- Value Until Time 38 + 16, !- Hour 39 + 0, !- Minute 39 + 0.685, !- Value Until Time 39 + 16, !- Hour 40 + 15, !- Minute 40 + 0.6575, !- Value Until Time 40 + 16, !- Hour 41 + 30, !- Minute 41 + 0.63, !- Value Until Time 41 + 16, !- Hour 42 + 45, !- Minute 42 + 0.575, !- Value Until Time 42 + 17, !- Hour 43 + 0, !- Minute 43 + 0.52, !- Value Until Time 43 + 17, !- Hour 44 + 15, !- Minute 44 + 0.465, !- Value Until Time 44 + 17, !- Hour 45 + 30, !- Minute 45 + 0.41, !- Value Until Time 45 + 17, !- Hour 46 + 45, !- Minute 46 + 0.3525, !- Value Until Time 46 + 18, !- Hour 47 + 0, !- Minute 47 + 0.295, !- Value Until Time 47 + 18, !- Hour 48 + 15, !- Minute 48 + 0.2375, !- Value Until Time 48 + 18, !- Hour 49 + 30, !- Minute 49 + 0.18, !- Value Until Time 49 + 20, !- Hour 50 + 30, !- Minute 50 + 0.18, !- Value Until Time 50 + 20, !- Hour 51 + 45, !- Minute 51 + 0.16, !- Value Until Time 51 + 21, !- Hour 52 + 0, !- Minute 52 + 0.14, !- Value Until Time 52 + 21, !- Hour 53 + 15, !- Minute 53 + 0.12, !- Value Until Time 53 + 21, !- Hour 54 + 30, !- Minute 54 + 0.1, !- Value Until Time 54 + 21, !- Hour 55 + 45, !- Minute 55 + 0.0775, !- Value Until Time 55 + 22, !- Hour 56 + 0, !- Minute 56 + 0.055, !- Value Until Time 56 + 22, !- Hour 57 + 15, !- Minute 57 + 0.0325, !- Value Until Time 57 + 22, !- Hour 58 + 30, !- Minute 58 + 0.01, !- Value Until Time 58 + 24, !- Hour 59 + 0, !- Minute 59 + 0.01; !- Value Until Time 59 + +OS:Schedule:Rule, + {6e0c966c-ae48-4d52-8a31-c340489097c0}, !- Handle + Schedule Rule 9, !- Name + {ebe7f794-1482-407a-89e2-33352fe18368}, !- Schedule Ruleset Name + 1, !- Rule Order + {a65a91df-7f81-42f9-ad63-e0424d50ca2f}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 1, !- Start Day + 12, !- End Month + 31; !- End Day + +OS:Schedule:Day, + {a65a91df-7f81-42f9-ad63-e0424d50ca2f}, !- Handle + OutPatientHealthCare BLDG_SWH_SCH_Pre2004 Sat Day, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 7, !- Hour 1 + 30, !- Minute 1 + 0.01, !- Value Until Time 1 + 7, !- Hour 2 + 45, !- Minute 2 + 0.0575, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.105, !- Value Until Time 3 + 8, !- Hour 4 + 15, !- Minute 4 + 0.1525, !- Value Until Time 4 + 8, !- Hour 5 + 30, !- Minute 5 + 0.2, !- Value Until Time 5 + 8, !- Hour 6 + 45, !- Minute 6 + 0.22, !- Value Until Time 6 + 9, !- Hour 7 + 0, !- Minute 7 + 0.24, !- Value Until Time 7 + 9, !- Hour 8 + 15, !- Minute 8 + 0.26, !- Value Until Time 8 + 9, !- Hour 9 + 30, !- Minute 9 + 0.28, !- Value Until Time 9 + 9, !- Hour 10 + 45, !- Minute 10 + 0.285, !- Value Until Time 10 + 10, !- Hour 11 + 0, !- Minute 11 + 0.29, !- Value Until Time 11 + 10, !- Hour 12 + 15, !- Minute 12 + 0.295, !- Value Until Time 12 + 10, !- Hour 13 + 30, !- Minute 13 + 0.3, !- Value Until Time 13 + 11, !- Hour 14 + 0, !- Minute 14 + 0.3, !- Value Until Time 14 + 11, !- Hour 15 + 15, !- Minute 15 + 0.2925, !- Value Until Time 15 + 11, !- Hour 16 + 30, !- Minute 16 + 0.285, !- Value Until Time 16 + 11, !- Hour 17 + 45, !- Minute 17 + 0.2775, !- Value Until Time 17 + 12, !- Hour 18 + 0, !- Minute 18 + 0.27, !- Value Until Time 18 + 12, !- Hour 19 + 15, !- Minute 19 + 0.2625, !- Value Until Time 19 + 12, !- Hour 20 + 30, !- Minute 20 + 0.255, !- Value Until Time 20 + 12, !- Hour 21 + 45, !- Minute 21 + 0.2475, !- Value Until Time 21 + 13, !- Hour 22 + 0, !- Minute 22 + 0.24, !- Value Until Time 22 + 13, !- Hour 23 + 15, !- Minute 23 + 0.23875, !- Value Until Time 23 + 13, !- Hour 24 + 30, !- Minute 24 + 0.2375, !- Value Until Time 24 + 13, !- Hour 25 + 45, !- Minute 25 + 0.23625, !- Value Until Time 25 + 14, !- Hour 26 + 0, !- Minute 26 + 0.235, !- Value Until Time 26 + 14, !- Hour 27 + 15, !- Minute 27 + 0.23375, !- Value Until Time 27 + 14, !- Hour 28 + 30, !- Minute 28 + 0.2325, !- Value Until Time 28 + 14, !- Hour 29 + 45, !- Minute 29 + 0.23125, !- Value Until Time 29 + 15, !- Hour 30 + 0, !- Minute 30 + 0.23, !- Value Until Time 30 + 16, !- Hour 31 + 30, !- Minute 31 + 0.23, !- Value Until Time 31 + 16, !- Hour 32 + 45, !- Minute 32 + 0.1975, !- Value Until Time 32 + 17, !- Hour 33 + 0, !- Minute 33 + 0.165, !- Value Until Time 33 + 17, !- Hour 34 + 15, !- Minute 34 + 0.1325, !- Value Until Time 34 + 17, !- Hour 35 + 30, !- Minute 35 + 0.1, !- Value Until Time 35 + 17, !- Hour 36 + 45, !- Minute 36 + 0.0775, !- Value Until Time 36 + 18, !- Hour 37 + 0, !- Minute 37 + 0.055, !- Value Until Time 37 + 18, !- Hour 38 + 15, !- Minute 38 + 0.0325, !- Value Until Time 38 + 18, !- Hour 39 + 30, !- Minute 39 + 0.01, !- Value Until Time 39 + 24, !- Hour 40 + 0, !- Minute 40 + 0.01; !- Value Until Time 40 + +OS:Schedule:Day, + {72925389-f15d-4cc5-98b2-9b8e4d1949a4}, !- Handle + OutPatientHealthCare BLDG_SWH_SCH_Pre2004 Summer Design Day, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 7, !- Hour 1 + 0, !- Minute 1 + 0.01, !- Value Until Time 1 + 8, !- Hour 2 + 0, !- Minute 2 + 0.17, !- Value Until Time 2 + 9, !- Hour 3 + 0, !- Minute 3 + 0.58, !- Value Until Time 3 + 10, !- Hour 4 + 0, !- Minute 4 + 0.66, !- Value Until Time 4 + 11, !- Hour 5 + 0, !- Minute 5 + 0.78, !- Value Until Time 5 + 12, !- Hour 6 + 0, !- Minute 6 + 0.82, !- Value Until Time 6 + 13, !- Hour 7 + 0, !- Minute 7 + 0.71, !- Value Until Time 7 + 14, !- Hour 8 + 0, !- Minute 8 + 0.82, !- Value Until Time 8 + 15, !- Hour 9 + 0, !- Minute 9 + 0.78, !- Value Until Time 9 + 16, !- Hour 10 + 0, !- Minute 10 + 0.74, !- Value Until Time 10 + 17, !- Hour 11 + 0, !- Minute 11 + 0.63, !- Value Until Time 11 + 18, !- Hour 12 + 0, !- Minute 12 + 0.41, !- Value Until Time 12 + 21, !- Hour 13 + 0, !- Minute 13 + 0.18, !- Value Until Time 13 + 22, !- Hour 14 + 0, !- Minute 14 + 0.1, !- Value Until Time 14 + 24, !- Hour 15 + 0, !- Minute 15 + 0.01; !- Value Until Time 15 + +OS:WaterUse:Connections, + {2f6a4eb1-e5ae-4b1c-9c3f-2d9c343f7e35}, !- Handle + Outpatient Anesthesia - ComStock DOE Ref Pre-1980 WUC 0.04gpm at 140F, !- Name + {8a116214-b24b-4207-ae44-123ae79178f5}, !- Inlet Node Name + {13051fad-48ef-4d27-b2ad-6a17dd692087}, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + None, !- Drain Water Heat Exchanger Type + Plant, !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + {8907445a-b0ae-4335-ad3c-6e27c0be3931}; !- Water Use Equipment Name 1 + +OS:WaterUse:Equipment:Definition, + {56c0df35-fc02-4f88-aa53-f3995fdf8968}, !- Handle + Outpatient Anesthesia - ComStock DOE Ref Pre-1980 Service Water Use Def 0.04gpm, !- Name + , !- End-Use Subcategory + 2.48582334112456e-06, !- Peak Flow Rate {m3/s} + {59912e5c-e184-4937-84f2-d7717c2b9719}, !- Target Temperature Schedule Name + {7adb5351-6b3e-4074-9d2d-055dd13cce4d}, !- Sensible Fraction Schedule Name + {57f90bbf-deed-4ae8-ba3c-9e34f48471c1}; !- Latent Fraction Schedule Name + +OS:Schedule:Ruleset, + {7adb5351-6b3e-4074-9d2d-055dd13cce4d}, !- Handle + Fraction Sensible - 0.2, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + {de923c6a-c9cc-433c-9b7b-b0d0299561ed}; !- Default Day Schedule Name + +OS:Schedule:Day, + {de923c6a-c9cc-433c-9b7b-b0d0299561ed}, !- Handle + Fraction Sensible - 0.2 Default, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0.2; !- Value Until Time 1 + +OS:Schedule:Ruleset, + {57f90bbf-deed-4ae8-ba3c-9e34f48471c1}, !- Handle + Fraction Latent - 0.05, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + {d75bb4d4-09e9-4fd9-9475-2818586b54f2}; !- Default Day Schedule Name + +OS:Schedule:Day, + {d75bb4d4-09e9-4fd9-9475-2818586b54f2}, !- Handle + Fraction Latent - 0.05 Default, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0.05; !- Value Until Time 1 + +OS:Schedule:Ruleset, + {59912e5c-e184-4937-84f2-d7717c2b9719}, !- Handle + Mixed Water At Faucet Temp - 140F, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + {ba659756-fa52-47cd-aa18-93718e2a345a}; !- Default Day Schedule Name + +OS:Schedule:Day, + {ba659756-fa52-47cd-aa18-93718e2a345a}, !- Handle + Mixed Water At Faucet Temp - 140F Default, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 60.0000000000001; !- Value Until Time 1 + +OS:ScheduleTypeLimits, + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Handle + Temperature, !- Name + , !- Lower Limit Value + , !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:WaterUse:Equipment, + {8907445a-b0ae-4335-ad3c-6e27c0be3931}, !- Handle + Outpatient Anesthesia - ComStock DOE Ref Pre-1980 Service Water Use 0.04gpm at 140F, !- Name + {56c0df35-fc02-4f88-aa53-f3995fdf8968}, !- Water Use Equipment Definition Name + , !- Space Name + {ebe7f794-1482-407a-89e2-33352fe18368}; !- Flow Rate Fraction Schedule Name + +OS:WaterUse:Connections, + {401d4c52-1e7a-4a9a-96bd-fd44c390f60f}, !- Handle + Outpatient MRI - ComStock DOE Ref Pre-1980 WUC 0.04gpm at 140F, !- Name + {39419893-23f1-465e-b96d-2a0dc528b533}, !- Inlet Node Name + {e70ec52f-1290-4853-b0c2-2501b4d06d59}, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + None, !- Drain Water Heat Exchanger Type + Plant, !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + {7b88d9c9-ad70-4f0a-add8-87a278d4b3af}; !- Water Use Equipment Name 1 + +OS:WaterUse:Equipment:Definition, + {194c2dcb-b80d-4787-a005-c6e4e398634d}, !- Handle + Outpatient MRI - ComStock DOE Ref Pre-1980 Service Water Use Def 0.04gpm, !- Name + , !- End-Use Subcategory + 2.5110292425077e-06, !- Peak Flow Rate {m3/s} + {59912e5c-e184-4937-84f2-d7717c2b9719}, !- Target Temperature Schedule Name + {7adb5351-6b3e-4074-9d2d-055dd13cce4d}, !- Sensible Fraction Schedule Name + {57f90bbf-deed-4ae8-ba3c-9e34f48471c1}; !- Latent Fraction Schedule Name + +OS:WaterUse:Equipment, + {7b88d9c9-ad70-4f0a-add8-87a278d4b3af}, !- Handle + Outpatient MRI - ComStock DOE Ref Pre-1980 Service Water Use 0.04gpm at 140F, !- Name + {194c2dcb-b80d-4787-a005-c6e4e398634d}, !- Water Use Equipment Definition Name + , !- Space Name + {ebe7f794-1482-407a-89e2-33352fe18368}; !- Flow Rate Fraction Schedule Name + +OS:WaterUse:Connections, + {986f7f4f-7a02-475c-84c5-c67537939c19}, !- Handle + Outpatient MRI_Control - ComStock DOE Ref Pre-1980 WUC 0.04gpm at 140F, !- Name + {f5f2181e-d5d7-4c3f-a4e2-08cb79db65cc}, !- Inlet Node Name + {e52b7281-664f-466e-94c1-45e59ffdb69b}, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + None, !- Drain Water Heat Exchanger Type + Plant, !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + {1bb38d9c-2eea-4f52-9e5c-dec622cb27f2}; !- Water Use Equipment Name 1 + +OS:WaterUse:Equipment:Definition, + {0d15a054-5cc6-45ee-a59b-f890da5c6704}, !- Handle + Outpatient MRI_Control - ComStock DOE Ref Pre-1980 Service Water Use Def 0.04gpm, !- Name + , !- End-Use Subcategory + 2.51996926604888e-06, !- Peak Flow Rate {m3/s} + {59912e5c-e184-4937-84f2-d7717c2b9719}, !- Target Temperature Schedule Name + {7adb5351-6b3e-4074-9d2d-055dd13cce4d}, !- Sensible Fraction Schedule Name + {57f90bbf-deed-4ae8-ba3c-9e34f48471c1}; !- Latent Fraction Schedule Name + +OS:WaterUse:Equipment, + {1bb38d9c-2eea-4f52-9e5c-dec622cb27f2}, !- Handle + Outpatient MRI_Control - ComStock DOE Ref Pre-1980 Service Water Use 0.04gpm at 140F, !- Name + {0d15a054-5cc6-45ee-a59b-f890da5c6704}, !- Water Use Equipment Definition Name + , !- Space Name + {ebe7f794-1482-407a-89e2-33352fe18368}; !- Flow Rate Fraction Schedule Name + +OS:WaterUse:Connections, + {ab650898-9311-47dc-aa77-b8bbcd95a9a1}, !- Handle + Outpatient OR - ComStock DOE Ref Pre-1980 WUC 0.72gpm at 140F, !- Name + {48d0ea76-73cc-495e-b1b5-5773b20d9a15}, !- Inlet Node Name + {c47ec765-ffe2-4842-a336-3da887903148}, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + None, !- Drain Water Heat Exchanger Type + Plant, !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + {eef3dddc-eb39-45c9-b738-b3e56fee531c}; !- Water Use Equipment Name 1 + +OS:WaterUse:Equipment:Definition, + {e3234354-477f-4473-887b-58474563adb2}, !- Handle + Outpatient OR - ComStock DOE Ref Pre-1980 Service Water Use Def 0.72gpm, !- Name + , !- End-Use Subcategory + 4.54157007678912e-05, !- Peak Flow Rate {m3/s} + {59912e5c-e184-4937-84f2-d7717c2b9719}, !- Target Temperature Schedule Name + {7adb5351-6b3e-4074-9d2d-055dd13cce4d}, !- Sensible Fraction Schedule Name + {57f90bbf-deed-4ae8-ba3c-9e34f48471c1}; !- Latent Fraction Schedule Name + +OS:WaterUse:Equipment, + {eef3dddc-eb39-45c9-b738-b3e56fee531c}, !- Handle + Outpatient OR - ComStock DOE Ref Pre-1980 Service Water Use 0.72gpm at 140F, !- Name + {e3234354-477f-4473-887b-58474563adb2}, !- Water Use Equipment Definition Name + , !- Space Name + {ebe7f794-1482-407a-89e2-33352fe18368}; !- Flow Rate Fraction Schedule Name + +OS:WaterUse:Connections, + {1d3da4f8-f7bb-4e7b-9cdd-19638a0a2e8f}, !- Handle + Outpatient PACU - ComStock DOE Ref Pre-1980 WUC 0.12gpm at 140F, !- Name + {88db27ee-a116-496b-95d5-c30266be4c48}, !- Inlet Node Name + {ee6f0e2d-9b1f-4b92-aea9-6fb572b16348}, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + None, !- Drain Water Heat Exchanger Type + Plant, !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + {34a11164-c1ab-416e-8bf1-8f95e89aa52a}; !- Water Use Equipment Name 1 + +OS:WaterUse:Equipment:Definition, + {50bdfe98-9964-499e-9128-d89b8b90a863}, !- Handle + Outpatient PACU - ComStock DOE Ref Pre-1980 Service Water Use Def 0.12gpm, !- Name + , !- End-Use Subcategory + 7.58091402585792e-06, !- Peak Flow Rate {m3/s} + {59912e5c-e184-4937-84f2-d7717c2b9719}, !- Target Temperature Schedule Name + {7adb5351-6b3e-4074-9d2d-055dd13cce4d}, !- Sensible Fraction Schedule Name + {57f90bbf-deed-4ae8-ba3c-9e34f48471c1}; !- Latent Fraction Schedule Name + +OS:WaterUse:Equipment, + {34a11164-c1ab-416e-8bf1-8f95e89aa52a}, !- Handle + Outpatient PACU - ComStock DOE Ref Pre-1980 Service Water Use 0.12gpm at 140F, !- Name + {50bdfe98-9964-499e-9128-d89b8b90a863}, !- Water Use Equipment Definition Name + , !- Space Name + {ebe7f794-1482-407a-89e2-33352fe18368}; !- Flow Rate Fraction Schedule Name + +OS:WaterUse:Connections, + {36cebecd-5699-4115-81f1-7edfa05a64bf}, !- Handle + Outpatient PhysicalTherapy - ComStock DOE Ref Pre-1980 WUC 0.08gpm at 140F, !- Name + {df93a860-3287-44e4-8c0f-c5bca95c14c2}, !- Inlet Node Name + {127d25e8-e0cf-455c-aef3-6ad9d6634f31}, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + None, !- Drain Water Heat Exchanger Type + Plant, !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + {9697925d-612e-4c9b-bfe4-46eb42a0dbd6}; !- Water Use Equipment Name 1 + +OS:WaterUse:Equipment:Definition, + {66c84802-cae5-4c29-9a7d-e08c2346deec}, !- Handle + Outpatient PhysicalTherapy - ComStock DOE Ref Pre-1980 Service Water Use Def 0.08gpm, !- Name + , !- End-Use Subcategory + 5.04279725896889e-06, !- Peak Flow Rate {m3/s} + {59912e5c-e184-4937-84f2-d7717c2b9719}, !- Target Temperature Schedule Name + {7adb5351-6b3e-4074-9d2d-055dd13cce4d}, !- Sensible Fraction Schedule Name + {57f90bbf-deed-4ae8-ba3c-9e34f48471c1}; !- Latent Fraction Schedule Name + +OS:WaterUse:Equipment, + {9697925d-612e-4c9b-bfe4-46eb42a0dbd6}, !- Handle + Outpatient PhysicalTherapy - ComStock DOE Ref Pre-1980 Service Water Use 0.08gpm at 140F, !- Name + {66c84802-cae5-4c29-9a7d-e08c2346deec}, !- Water Use Equipment Definition Name + , !- Space Name + {ebe7f794-1482-407a-89e2-33352fe18368}; !- Flow Rate Fraction Schedule Name + +OS:WaterUse:Connections, + {c6b293ce-402a-4df1-b3d1-a87dd4856858}, !- Handle + Outpatient PreOp - ComStock DOE Ref Pre-1980 WUC 0.08gpm at 140F, !- Name + {01835d7d-07b9-4e79-ac54-d208b3f26fca}, !- Inlet Node Name + {eea81848-b49b-4c6e-b234-fc704996f926}, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + None, !- Drain Water Heat Exchanger Type + Plant, !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + {4791835c-df1b-4b5c-8a05-73077f2c83d2}; !- Water Use Equipment Name 1 + +OS:WaterUse:Equipment:Definition, + {680d1332-8b6b-4cf4-aa2c-96f7ab36c2ca}, !- Handle + Outpatient PreOp - ComStock DOE Ref Pre-1980 Service Water Use Def 0.08gpm, !- Name + , !- End-Use Subcategory + 5.05510010109278e-06, !- Peak Flow Rate {m3/s} + {59912e5c-e184-4937-84f2-d7717c2b9719}, !- Target Temperature Schedule Name + {7adb5351-6b3e-4074-9d2d-055dd13cce4d}, !- Sensible Fraction Schedule Name + {57f90bbf-deed-4ae8-ba3c-9e34f48471c1}; !- Latent Fraction Schedule Name + +OS:WaterUse:Equipment, + {4791835c-df1b-4b5c-8a05-73077f2c83d2}, !- Handle + Outpatient PreOp - ComStock DOE Ref Pre-1980 Service Water Use 0.08gpm at 140F, !- Name + {680d1332-8b6b-4cf4-aa2c-96f7ab36c2ca}, !- Water Use Equipment Definition Name + , !- Space Name + {ebe7f794-1482-407a-89e2-33352fe18368}; !- Flow Rate Fraction Schedule Name + +OS:WaterUse:Connections, + {d141a26d-4643-4ed9-82c1-b7dc4176265c}, !- Handle + Outpatient ProcedureRoom - ComStock DOE Ref Pre-1980 WUC 0.04gpm at 140F, !- Name + {3a020441-1ebc-4ff1-83d4-6ffd9831f11a}, !- Inlet Node Name + {68335d44-1d9a-4b41-9933-6f810f1d6d76}, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + None, !- Drain Water Heat Exchanger Type + Plant, !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + {0c3eb3a8-464b-473c-8e7d-838d26899e07}; !- Water Use Equipment Name 1 + +OS:WaterUse:Equipment:Definition, + {2841356c-3c67-4a63-a7df-c89c867aff1a}, !- Handle + Outpatient ProcedureRoom - ComStock DOE Ref Pre-1980 Service Water Use Def 0.04gpm, !- Name + , !- End-Use Subcategory + 2.53614365187102e-06, !- Peak Flow Rate {m3/s} + {59912e5c-e184-4937-84f2-d7717c2b9719}, !- Target Temperature Schedule Name + {7adb5351-6b3e-4074-9d2d-055dd13cce4d}, !- Sensible Fraction Schedule Name + {57f90bbf-deed-4ae8-ba3c-9e34f48471c1}; !- Latent Fraction Schedule Name + +OS:WaterUse:Equipment, + {0c3eb3a8-464b-473c-8e7d-838d26899e07}, !- Handle + Outpatient ProcedureRoom - ComStock DOE Ref Pre-1980 Service Water Use 0.04gpm at 140F, !- Name + {2841356c-3c67-4a63-a7df-c89c867aff1a}, !- Water Use Equipment Definition Name + , !- Space Name + {ebe7f794-1482-407a-89e2-33352fe18368}; !- Flow Rate Fraction Schedule Name + +OS:WaterUse:Connections, + {9fac94bc-491b-46aa-97e2-627a3fe8e6b6}, !- Handle + Outpatient Xray - ComStock DOE Ref Pre-1980 WUC 0.04gpm at 140F, !- Name + {032c0291-75fb-4003-ba71-23c60c74d2cf}, !- Inlet Node Name + {85fbf852-17a4-43c2-801f-4bd4b437c474}, !- Outlet Node Name + , !- Supply Water Storage Tank Name + , !- Reclamation Water Storage Tank Name + , !- Hot Water Supply Temperature Schedule Name + , !- Cold Water Supply Temperature Schedule Name + None, !- Drain Water Heat Exchanger Type + Plant, !- Drain Water Heat Exchanger Destination + , !- Drain Water Heat Exchanger U-Factor Times Area {W/K} + {53c7b3e1-3d3a-4cfc-a9e3-20740c3d152c}; !- Water Use Equipment Name 1 + +OS:WaterUse:Equipment:Definition, + {49c12d1d-bba8-467e-a2f2-6eb99cb170fa}, !- Handle + Outpatient Xray - ComStock DOE Ref Pre-1980 Service Water Use Def 0.04gpm, !- Name + , !- End-Use Subcategory + 2.52406677696e-06, !- Peak Flow Rate {m3/s} + {59912e5c-e184-4937-84f2-d7717c2b9719}, !- Target Temperature Schedule Name + {7adb5351-6b3e-4074-9d2d-055dd13cce4d}, !- Sensible Fraction Schedule Name + {57f90bbf-deed-4ae8-ba3c-9e34f48471c1}; !- Latent Fraction Schedule Name + +OS:WaterUse:Equipment, + {53c7b3e1-3d3a-4cfc-a9e3-20740c3d152c}, !- Handle + Outpatient Xray - ComStock DOE Ref Pre-1980 Service Water Use 0.04gpm at 140F, !- Name + {49c12d1d-bba8-467e-a2f2-6eb99cb170fa}, !- Water Use Equipment Definition Name + , !- Space Name + {ebe7f794-1482-407a-89e2-33352fe18368}; !- Flow Rate Fraction Schedule Name + +OS:PlantLoop, + {f68fd6d0-3fbc-4cb6-ad12-3fab7e266739}, !- Handle + Outpatient Shared Service Water Loop, !- Name + , !- Fluid Type + 0, !- Glycol Concentration + , !- User Defined Fluid Type + , !- Plant Equipment Operation Heating Load + , !- Plant Equipment Operation Cooling Load + , !- Primary Plant Equipment Operation Scheme + {78311a98-ab74-4291-b49b-f83709d96f78}, !- Loop Temperature Setpoint Node Name + 60, !- Maximum Loop Temperature {C} + 10, !- Minimum Loop Temperature {C} + 7.56715444323229e-05, !- Maximum Loop Flow Rate {m3/s} + , !- Minimum Loop Flow Rate {m3/s} + 0.00908058533187875, !- Plant Loop Volume {m3} + {7663da63-7e56-406a-9133-6b2fd91d75a7}, !- Plant Side Inlet Node Name + {24dddff3-52a3-4c66-bec7-315d7758e65b}, !- Plant Side Outlet Node Name + , !- Plant Side Branch List Name + {4578a12b-ab2f-40c1-8185-4233808e3f09}, !- Demand Side Inlet Node Name + {9ee783d4-01f9-4977-8fbc-3025bcc9e05c}, !- Demand Side Outlet Node Name + , !- Demand Side Branch List Name + , !- Demand Side Connector List Name + Optimal, !- Load Distribution Scheme + {83a4697e-f8c4-4dcf-ab5e-8a57587a51eb}, !- Availability Manager List Name + , !- Plant Loop Demand Calculation Scheme + , !- Common Pipe Simulation + , !- Pressure Simulation Type + , !- Plant Equipment Operation Heating Load Schedule + , !- Plant Equipment Operation Cooling Load Schedule + , !- Primary Plant Equipment Operation Scheme Schedule + , !- Component Setpoint Operation Scheme Schedule + {fb4ab874-fa5f-490e-baf8-ad87eb16e934}, !- Demand Mixer Name + {b6dd0064-4e9e-4e5d-af53-f070017ca9b1}, !- Demand Splitter Name + {7e5717b7-6dd3-470b-92a0-bdcd6fdcaf60}, !- Supply Mixer Name + {51f348ee-4160-47b7-8a53-56c900a96b72}; !- Supply Splitter Name + +OS:Node, + {26aea918-3921-402d-b15f-38781ed181e1}, !- Handle + Outpatient Shared Service Water Loop Supply Inlet Node, !- Name + {7663da63-7e56-406a-9133-6b2fd91d75a7}, !- Inlet Port + {13fff3bf-093e-40f7-a744-1a7f1b35c0f8}; !- Outlet Port + +OS:Node, + {78311a98-ab74-4291-b49b-f83709d96f78}, !- Handle + Outpatient Shared Service Water Loop Supply Outlet Node, !- Name + {d2434406-5829-4264-afb9-33fc56f11e0a}, !- Inlet Port + {24dddff3-52a3-4c66-bec7-315d7758e65b}; !- Outlet Port + +OS:Node, + {757306b0-1c2d-4c30-8bae-8d831f3ae76d}, !- Handle + 62gal NaturalGas Water Heater - 62kBtu/hr Supply Inlet Water Node, !- Name + {a3cc8b5c-030a-4472-adb4-fd077a9891ea}, !- Inlet Port + {6e3426d2-9f48-490b-a357-c9638604eb67}; !- Outlet Port + +OS:Connector:Mixer, + {7e5717b7-6dd3-470b-92a0-bdcd6fdcaf60}, !- Handle + Connector Mixer 1, !- Name + {c58b7aac-52f2-4206-a7f8-9e23bd0e7a51}, !- Outlet Branch Name + {1bd1add9-0f1c-4bf9-8f18-417f424acd42}, !- Inlet Branch Name 1 + {ca315ffb-d415-45a7-8c5e-e9f68a862cea}; !- Inlet Branch Name 2 + +OS:Connector:Splitter, + {51f348ee-4160-47b7-8a53-56c900a96b72}, !- Handle + Connector Splitter 1, !- Name + {fffd3780-3fe4-4488-b078-95d8d4ccc640}, !- Inlet Branch Name + {a3cc8b5c-030a-4472-adb4-fd077a9891ea}, !- Outlet Branch Name 1 + {14d40f4d-361d-40c2-bac1-047f395f75ff}; !- Outlet Branch Name 2 + +OS:Connection, + {7663da63-7e56-406a-9133-6b2fd91d75a7}, !- Handle + {f68fd6d0-3fbc-4cb6-ad12-3fab7e266739}, !- Source Object + 14, !- Outlet Port + {26aea918-3921-402d-b15f-38781ed181e1}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a3cc8b5c-030a-4472-adb4-fd077a9891ea}, !- Handle + {51f348ee-4160-47b7-8a53-56c900a96b72}, !- Source Object + 3, !- Outlet Port + {757306b0-1c2d-4c30-8bae-8d831f3ae76d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {24dddff3-52a3-4c66-bec7-315d7758e65b}, !- Handle + {78311a98-ab74-4291-b49b-f83709d96f78}, !- Source Object + 3, !- Outlet Port + {f68fd6d0-3fbc-4cb6-ad12-3fab7e266739}, !- Target Object + 15; !- Inlet Port + +OS:Node, + {938ecdd1-a705-48e3-b1fc-1c6989f9e948}, !- Handle + Outpatient Shared Service Water Loop Demand Inlet Node, !- Name + {4578a12b-ab2f-40c1-8185-4233808e3f09}, !- Inlet Port + {1f7d1e44-32d6-4f97-bab3-17e559a15076}; !- Outlet Port + +OS:Node, + {0d6a907f-cf0d-4176-87ee-9c3edc749b19}, !- Handle + Outpatient Shared Service Water Loop Demand Outlet Node, !- Name + {10d119f8-b79f-4d79-b704-7bf2897996ea}, !- Inlet Port + {9ee783d4-01f9-4977-8fbc-3025bcc9e05c}; !- Outlet Port + +OS:Node, + {65921f13-c6ab-4a45-8945-ecf1b50987a4}, !- Handle + Pipe Adiabatic 2 Inlet Water Node, !- Name + {f019ca3c-83ea-4ed1-b920-800df2118d92}, !- Inlet Port + {48ead773-b77b-4f20-b8e1-05f443be63e8}; !- Outlet Port + +OS:Connector:Mixer, + {fb4ab874-fa5f-490e-baf8-ad87eb16e934}, !- Handle + Connector Mixer 2, !- Name + {b71f856d-7ff3-4837-a9ab-04c616601591}, !- Outlet Branch Name + {b70374e5-355e-4718-b43f-8d00bf0d3300}, !- Inlet Branch Name 1 + {49b926c4-c398-4a36-9441-32f3d7d3fc67}, !- Inlet Branch Name 2 + {0b299c6d-f645-40c5-88b5-c0d41177aa83}, !- Inlet Branch Name 3 + {c1246778-f65c-41b2-8487-f2094cd22e77}, !- Inlet Branch Name 4 + {b53819f7-9a9a-4330-bef0-25fa219c2420}, !- Inlet Branch Name 5 + {9078c3ea-897d-4591-9a58-a4a016bd6898}, !- Inlet Branch Name 6 + {eef94fdc-f010-4bf2-a3dc-7ec662a0d838}, !- Inlet Branch Name 7 + {aff56a6f-e9de-4280-b565-6c92d2d92e5b}, !- Inlet Branch Name 8 + {bd24aedc-629c-4c41-b7b7-be31c3939da2}, !- Inlet Branch Name 9 + {78070251-f3e9-4cac-98e6-e01632986867}; !- Inlet Branch Name 10 + +OS:Connector:Splitter, + {b6dd0064-4e9e-4e5d-af53-f070017ca9b1}, !- Handle + Connector Splitter 2, !- Name + {670a34c5-ae7c-4c9a-9c77-1dc359e6eda3}, !- Inlet Branch Name + {f019ca3c-83ea-4ed1-b920-800df2118d92}, !- Outlet Branch Name 1 + {38448e5d-7ea5-44e5-9fe5-d86050858d48}, !- Outlet Branch Name 2 + {5b07ad65-d499-4716-b95b-525266f93634}, !- Outlet Branch Name 3 + {f3649253-cdd9-4107-9d19-3958e41ecda9}, !- Outlet Branch Name 4 + {2387f235-970c-4f4a-b069-2dd5ee1265e1}, !- Outlet Branch Name 5 + {882eece6-0474-415d-a35f-8547ca830c81}, !- Outlet Branch Name 6 + {7235b480-59ac-49da-8936-950e79adc553}, !- Outlet Branch Name 7 + {8b5eedb8-496d-4000-a0a1-e302c77be2cb}, !- Outlet Branch Name 8 + {761ebb32-7fda-41eb-9deb-bdb88a93b6e3}, !- Outlet Branch Name 9 + {cdf90154-2272-4732-88da-396199c3b6c2}; !- Outlet Branch Name 10 + +OS:Connection, + {4578a12b-ab2f-40c1-8185-4233808e3f09}, !- Handle + {f68fd6d0-3fbc-4cb6-ad12-3fab7e266739}, !- Source Object + 17, !- Outlet Port + {938ecdd1-a705-48e3-b1fc-1c6989f9e948}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f019ca3c-83ea-4ed1-b920-800df2118d92}, !- Handle + {b6dd0064-4e9e-4e5d-af53-f070017ca9b1}, !- Source Object + 3, !- Outlet Port + {65921f13-c6ab-4a45-8945-ecf1b50987a4}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9ee783d4-01f9-4977-8fbc-3025bcc9e05c}, !- Handle + {0d6a907f-cf0d-4176-87ee-9c3edc749b19}, !- Source Object + 3, !- Outlet Port + {f68fd6d0-3fbc-4cb6-ad12-3fab7e266739}, !- Target Object + 18; !- Inlet Port + +OS:Sizing:Plant, + {f3056fbd-9c3a-484a-97f9-e2da2f878482}, !- Handle + {f68fd6d0-3fbc-4cb6-ad12-3fab7e266739}, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 60.0000000000001, !- Design Loop Exit Temperature {C} + 5, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode + +OS:AvailabilityManagerAssignmentList, + {83a4697e-f8c4-4dcf-ab5e-8a57587a51eb}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList; !- Name + +OS:ScheduleTypeLimits, + {a318bed0-e291-4183-bee0-b8483cd4276e}, !- Handle + Temperature Schedule Type Limits, !- Name + 0, !- Lower Limit Value + 100, !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:Schedule:Ruleset, + {536226e8-6007-4fb3-b2a9-7401abc26c2c}, !- Handle + Service Water Loop Temp - 140F, !- Name + {a318bed0-e291-4183-bee0-b8483cd4276e}, !- Schedule Type Limits Name + {82456d37-336d-48b3-b8d9-aea3781e86d2}; !- Default Day Schedule Name + +OS:Schedule:Day, + {82456d37-336d-48b3-b8d9-aea3781e86d2}, !- Handle + Service Water Loop Temp - 140F Default, !- Name + {a318bed0-e291-4183-bee0-b8483cd4276e}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 60.0000000000001; !- Value Until Time 1 + +OS:SetpointManager:Scheduled, + {09abcfdb-60b8-4f32-9e11-17638667b212}, !- Handle + Service hot water setpoint manager, !- Name + Temperature, !- Control Variable + {536226e8-6007-4fb3-b2a9-7401abc26c2c}, !- Schedule Name + {78311a98-ab74-4291-b49b-f83709d96f78}; !- Setpoint Node or NodeList Name + +OS:Pump:ConstantSpeed, + {7696f013-0e11-4cac-9140-abc4adba25dd}, !- Handle + Outpatient Shared Service Water Loop Circulator Pump, !- Name + {13fff3bf-093e-40f7-a744-1a7f1b35c0f8}, !- Inlet Node Name + {1c36d607-d8c3-443c-bcd2-414ee447fc9c}, !- Outlet Node Name + 7.56715444323229e-05, !- Rated Flow Rate {m3/s} + 29890.6692, !- Rated Pump Head {Pa} + 3.51495431606712, !- Rated Power Consumption {W} + 0.825, !- Motor Efficiency + 0, !- Fraction of Motor Inefficiencies to Fluid Stream + Intermittent, !- Pump Control Type + , !- Pump Flow Rate Schedule + , !- Pump Curve + , !- Impeller Diameter {m} + , !- Rotational Speed {rev/min} + , !- Zone + , !- Skin Loss Radiative Fraction + PowerPerFlowPerPressure, !- Design Power Sizing Method + 348701.1, !- Design Electric Power per Unit Flow Rate {W/(m3/s)} + 1.282051282, !- Design Shaft Power per Unit Flow Rate per Unit Head {W-s/m3-Pa} + General; !- End-Use Subcategory + +OS:Node, + {be2598f4-56c4-425c-bbe6-d1d7e6b86c95}, !- Handle + Outpatient Shared Service Water Loop Circulator Pump Outlet Water Node, !- Name + {1c36d607-d8c3-443c-bcd2-414ee447fc9c}, !- Inlet Port + {fffd3780-3fe4-4488-b078-95d8d4ccc640}; !- Outlet Port + +OS:Connection, + {13fff3bf-093e-40f7-a744-1a7f1b35c0f8}, !- Handle + {26aea918-3921-402d-b15f-38781ed181e1}, !- Source Object + 3, !- Outlet Port + {7696f013-0e11-4cac-9140-abc4adba25dd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1c36d607-d8c3-443c-bcd2-414ee447fc9c}, !- Handle + {7696f013-0e11-4cac-9140-abc4adba25dd}, !- Source Object + 3, !- Outlet Port + {be2598f4-56c4-425c-bbe6-d1d7e6b86c95}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fffd3780-3fe4-4488-b078-95d8d4ccc640}, !- Handle + {be2598f4-56c4-425c-bbe6-d1d7e6b86c95}, !- Source Object + 3, !- Outlet Port + {51f348ee-4160-47b7-8a53-56c900a96b72}, !- Target Object + 2; !- Inlet Port + +OS:WaterHeater:Mixed, + {8320f30c-07ef-4434-92f7-e8eed993a925}, !- Handle + 62gal NaturalGas Water Heater - 62kBtu/hr 0.78 Therm Eff 0.82 Therm Eff, !- Name + 0.234551519122428, !- Tank Volume {m3} + {536226e8-6007-4fb3-b2a9-7401abc26c2c}, !- Setpoint Temperature Schedule Name + 2, !- Deadband Temperature Difference {deltaC} + 60.0000000000001, !- Maximum Temperature Limit {C} + Cycle, !- Heater Control Type + 18159.2568107983, !- Heater Maximum Capacity {W} + , !- Heater Minimum Capacity {W} + , !- Heater Ignition Minimum Flow Rate {m3/s} + , !- Heater Ignition Delay {s} + NaturalGas, !- Heater Fuel Type + 0.82, !- Heater Thermal Efficiency + , !- Part Load Factor Curve Name + 0, !- Off Cycle Parasitic Fuel Consumption Rate {W} + NaturalGas, !- Off Cycle Parasitic Fuel Type + 0, !- Off Cycle Parasitic Heat Fraction to Tank + 0, !- On Cycle Parasitic Fuel Consumption Rate {W} + NaturalGas, !- On Cycle Parasitic Fuel Type + 0, !- On Cycle Parasitic Heat Fraction to Tank + Schedule, !- Ambient Temperature Indicator + {4780ff66-07d1-4aa7-9fa7-d4355733bfbb}, !- Ambient Temperature Schedule Name + , !- Ambient Temperature Thermal Zone Name + , !- Ambient Temperature Outdoor Air Node Name + 10.5203661085562, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K} + , !- Off Cycle Loss Fraction to Thermal Zone + 10.5203661085562, !- On Cycle Loss Coefficient to Ambient Temperature {W/K} + , !- On Cycle Loss Fraction to Thermal Zone + , !- Peak Use Flow Rate {m3/s} + , !- Use Flow Rate Fraction Schedule Name + , !- Cold Water Supply Temperature Schedule Name + {6e3426d2-9f48-490b-a357-c9638604eb67}, !- Use Side Inlet Node Name + {f48b56ca-fed2-4526-9e43-a8090c161c71}, !- Use Side Outlet Node Name + 1, !- Use Side Effectiveness + , !- Source Side Inlet Node Name + , !- Source Side Outlet Node Name + 1, !- Source Side Effectiveness + autosize, !- Use Side Design Flow Rate {m3/s} + autosize, !- Source Side Design Flow Rate {m3/s} + 1.5, !- Indirect Water Heating Recovery Time {hr} + IndirectHeatPrimarySetpoint, !- Source Side Flow Control Mode + , !- Indirect Alternate Setpoint Temperature Schedule Name + General; !- End-Use Subcategory + +OS:WaterHeater:Sizing, + {72d4a477-01ab-48b1-be91-e8abe835e732}, !- Handle + {8320f30c-07ef-4434-92f7-e8eed993a925}, !- WaterHeater Name + PeakDraw, !- Design Mode + 0.538503, !- Time Storage Can Meet Peak Draw {hr} + 0, !- Time for Tank Recovery {hr} + 1; !- Nominal Tank Volume for Autosizing Plant Connections {m3} + +OS:ScheduleTypeLimits, + {30585ff1-7c5b-4423-afb4-f21fb15eabde}, !- Handle + Temperature Schedule Type Limits 1, !- Name + 0, !- Lower Limit Value + 100, !- Upper Limit Value + Continuous, !- Numeric Type + Temperature; !- Unit Type + +OS:Schedule:Ruleset, + {4780ff66-07d1-4aa7-9fa7-d4355733bfbb}, !- Handle + Water Heater Ambient Temp Schedule 71.6F, !- Name + {30585ff1-7c5b-4423-afb4-f21fb15eabde}, !- Schedule Type Limits Name + {0cae45cb-e9ad-4932-9bf8-754c511a70be}; !- Default Day Schedule Name + +OS:Schedule:Day, + {0cae45cb-e9ad-4932-9bf8-754c511a70be}, !- Handle + Water Heater Ambient Temp Schedule 71.6F Default, !- Name + {30585ff1-7c5b-4423-afb4-f21fb15eabde}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 22.0000000000001; !- Value Until Time 1 + +OS:Node, + {2700a613-2571-4bd9-b588-2773045c4a26}, !- Handle + 62gal NaturalGas Water Heater - 62kBtu/hr Supply Outlet Water Node, !- Name + {f48b56ca-fed2-4526-9e43-a8090c161c71}, !- Inlet Port + {1bd1add9-0f1c-4bf9-8f18-417f424acd42}; !- Outlet Port + +OS:Connection, + {6e3426d2-9f48-490b-a357-c9638604eb67}, !- Handle + {757306b0-1c2d-4c30-8bae-8d831f3ae76d}, !- Source Object + 3, !- Outlet Port + {8320f30c-07ef-4434-92f7-e8eed993a925}, !- Target Object + 31; !- Inlet Port + +OS:Connection, + {f48b56ca-fed2-4526-9e43-a8090c161c71}, !- Handle + {8320f30c-07ef-4434-92f7-e8eed993a925}, !- Source Object + 32, !- Outlet Port + {2700a613-2571-4bd9-b588-2773045c4a26}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1bd1add9-0f1c-4bf9-8f18-417f424acd42}, !- Handle + {2700a613-2571-4bd9-b588-2773045c4a26}, !- Source Object + 3, !- Outlet Port + {7e5717b7-6dd3-470b-92a0-bdcd6fdcaf60}, !- Target Object + 3; !- Inlet Port + +OS:AdditionalProperties, + {7b3eefee-3ee7-4bf6-9849-d5b98bfca1fb}, !- Handle + {8320f30c-07ef-4434-92f7-e8eed993a925}; !- Object Name + +OS:Schedule:Ruleset, + {b5476d29-5fb5-4759-a589-0ed6c774466e}, !- Handle + Outpatient Shared Service Water Loop Piping Air Temp - 70F, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + {0abfd241-3189-406a-b38e-d231c3182384}; !- Default Day Schedule Name + +OS:Schedule:Day, + {0abfd241-3189-406a-b38e-d231c3182384}, !- Handle + Outpatient Shared Service Water Loop Piping Air Temp - 70F Default, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 21.1111; !- Value Until Time 1 + +OS:Schedule:Ruleset, + {a85ea999-9fcd-49c9-ad4c-4af2b3307f03}, !- Handle + Outpatient Shared Service Water Loop Piping Air Velocity - 0.67mph, !- Name + {9d63546e-68be-40cf-aceb-0945b47d92ab}, !- Schedule Type Limits Name + {63210eaa-95f3-46d6-832c-ca56b7c043d3}; !- Default Day Schedule Name + +OS:Schedule:Day, + {63210eaa-95f3-46d6-832c-ca56b7c043d3}, !- Handle + Outpatient Shared Service Water Loop Piping Air Velocity - 0.67mph Default, !- Name + {9d63546e-68be-40cf-aceb-0945b47d92ab}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0.3; !- Value Until Time 1 + +OS:ScheduleTypeLimits, + {9d63546e-68be-40cf-aceb-0945b47d92ab}, !- Handle + Dimensionless, !- Name + 0, !- Lower Limit Value + 1000, !- Upper Limit Value + Continuous, !- Numeric Type + Dimensionless; !- Unit Type + +OS:Material, + {2911ca88-ba27-4827-afa2-31d13fd52691}, !- Handle + Copper pipe 0.75in type L, !- Name + Smooth, !- Roughness + 0.001143, !- Thickness {m} + 386, !- Conductivity {W/m-K} + 8906.26563592184, !- Density {kg/m3} + 385.1856, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Construction, + {3efe9311-82fb-4ad7-9543-9ad463ad4d63}, !- Handle + Copper pipe 0.75in type L with 0.5in fiberglass batt, !- Name + , !- Surface Rendering Name + {6f9fb4a1-8eac-4666-9c4b-8fe16540ce96}, !- Layer 1 + {2911ca88-ba27-4827-afa2-31d13fd52691}; !- Layer 2 + +OS:Material, + {6f9fb4a1-8eac-4666-9c4b-8fe16540ce96}, !- Handle + Fiberglass batt 0.5in, !- Name + Smooth, !- Roughness + 0.0127, !- Thickness {m} + 0.06634482887757, !- Conductivity {W/m-K} + 11.2129243617721, !- Density {kg/m3} + 837.36, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Pipe:Indoor, + {09e17e34-8fe3-4cf3-9c6c-f604f16dbdb3}, !- Handle + Outpatient Shared Service Water Loop Pipe 599.9999999999991ft, !- Name + {3efe9311-82fb-4ad7-9543-9ad463ad4d63}, !- Construction + {1f7d1e44-32d6-4f97-bab3-17e559a15076}, !- Fluid Inlet Node + {7b30e20a-d2a4-4ae0-9a00-fb57bcc340eb}, !- Fluid Outlet Node + Schedule, !- Environment Type + , !- Ambient Temperature Zone + {b5476d29-5fb5-4759-a589-0ed6c774466e}, !- Ambient Temperature Schedule + {a85ea999-9fcd-49c9-ad4c-4af2b3307f03}, !- Ambient Air Velocity Schedule + 0.019939, !- Pipe Inside Diameter {m} + 182.88; !- Pipe Length {m} + +OS:Node, + {10557d5b-0e86-45d8-bfa7-112f87403b3e}, !- Handle + Outpatient Shared Service Water Loop Pipe 599.9999999999991ft Outlet Water Node, !- Name + {7b30e20a-d2a4-4ae0-9a00-fb57bcc340eb}, !- Inlet Port + {670a34c5-ae7c-4c9a-9c77-1dc359e6eda3}; !- Outlet Port + +OS:Connection, + {1f7d1e44-32d6-4f97-bab3-17e559a15076}, !- Handle + {938ecdd1-a705-48e3-b1fc-1c6989f9e948}, !- Source Object + 3, !- Outlet Port + {09e17e34-8fe3-4cf3-9c6c-f604f16dbdb3}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {7b30e20a-d2a4-4ae0-9a00-fb57bcc340eb}, !- Handle + {09e17e34-8fe3-4cf3-9c6c-f604f16dbdb3}, !- Source Object + 4, !- Outlet Port + {10557d5b-0e86-45d8-bfa7-112f87403b3e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {670a34c5-ae7c-4c9a-9c77-1dc359e6eda3}, !- Handle + {10557d5b-0e86-45d8-bfa7-112f87403b3e}, !- Source Object + 3, !- Outlet Port + {b6dd0064-4e9e-4e5d-af53-f070017ca9b1}, !- Target Object + 2; !- Inlet Port + +OS:Pipe:Adiabatic, + {c718aae5-8522-4554-94d2-676f99933ab7}, !- Handle + Pipe Adiabatic 1, !- Name + {835d3521-c4d2-49e4-b2a6-c7ebf474565d}, !- Inlet Node Name + {214ee30f-2ca1-4791-bc03-497fb4e53a4c}; !- Outlet Node Name + +OS:Node, + {dbafbb81-a592-405e-baa4-9ac5ebd905cb}, !- Handle + Pipe Adiabatic 1 Inlet Water Node, !- Name + {14d40f4d-361d-40c2-bac1-047f395f75ff}, !- Inlet Port + {835d3521-c4d2-49e4-b2a6-c7ebf474565d}; !- Outlet Port + +OS:Connection, + {14d40f4d-361d-40c2-bac1-047f395f75ff}, !- Handle + {51f348ee-4160-47b7-8a53-56c900a96b72}, !- Source Object + 4, !- Outlet Port + {dbafbb81-a592-405e-baa4-9ac5ebd905cb}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {974b8c67-14fb-4c18-a7f4-68feb9c2eab3}, !- Handle + Pipe Adiabatic 1 Outlet Water Node, !- Name + {214ee30f-2ca1-4791-bc03-497fb4e53a4c}, !- Inlet Port + {ca315ffb-d415-45a7-8c5e-e9f68a862cea}; !- Outlet Port + +OS:Connection, + {835d3521-c4d2-49e4-b2a6-c7ebf474565d}, !- Handle + {dbafbb81-a592-405e-baa4-9ac5ebd905cb}, !- Source Object + 3, !- Outlet Port + {c718aae5-8522-4554-94d2-676f99933ab7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {214ee30f-2ca1-4791-bc03-497fb4e53a4c}, !- Handle + {c718aae5-8522-4554-94d2-676f99933ab7}, !- Source Object + 3, !- Outlet Port + {974b8c67-14fb-4c18-a7f4-68feb9c2eab3}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ca315ffb-d415-45a7-8c5e-e9f68a862cea}, !- Handle + {974b8c67-14fb-4c18-a7f4-68feb9c2eab3}, !- Source Object + 3, !- Outlet Port + {7e5717b7-6dd3-470b-92a0-bdcd6fdcaf60}, !- Target Object + 4; !- Inlet Port + +OS:Pipe:Adiabatic, + {374c9954-b155-4fd4-9def-cbb3c6baf1fa}, !- Handle + Pipe Adiabatic 2, !- Name + {48ead773-b77b-4f20-b8e1-05f443be63e8}, !- Inlet Node Name + {2d50822d-e729-4c57-a156-8782ab643601}; !- Outlet Node Name + +OS:Node, + {0d3f61b0-2eec-441d-8e72-85bea49a9ffb}, !- Handle + Pipe Adiabatic 2 Outlet Water Node, !- Name + {2d50822d-e729-4c57-a156-8782ab643601}, !- Inlet Port + {b70374e5-355e-4718-b43f-8d00bf0d3300}; !- Outlet Port + +OS:Connection, + {48ead773-b77b-4f20-b8e1-05f443be63e8}, !- Handle + {65921f13-c6ab-4a45-8945-ecf1b50987a4}, !- Source Object + 3, !- Outlet Port + {374c9954-b155-4fd4-9def-cbb3c6baf1fa}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2d50822d-e729-4c57-a156-8782ab643601}, !- Handle + {374c9954-b155-4fd4-9def-cbb3c6baf1fa}, !- Source Object + 3, !- Outlet Port + {0d3f61b0-2eec-441d-8e72-85bea49a9ffb}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b70374e5-355e-4718-b43f-8d00bf0d3300}, !- Handle + {0d3f61b0-2eec-441d-8e72-85bea49a9ffb}, !- Source Object + 3, !- Outlet Port + {fb4ab874-fa5f-490e-baf8-ad87eb16e934}, !- Target Object + 3; !- Inlet Port + +OS:Pipe:Adiabatic, + {faa24d6d-606f-41b0-821d-e00ff5800f54}, !- Handle + Pipe Adiabatic 3, !- Name + {748749df-a313-44a3-ab98-373a2751236a}, !- Inlet Node Name + {d2434406-5829-4264-afb9-33fc56f11e0a}; !- Outlet Node Name + +OS:Node, + {2116c8f7-5318-4b65-8d1d-1a91e40bd80b}, !- Handle + Pipe Adiabatic 3 Inlet Water Node, !- Name + {c58b7aac-52f2-4206-a7f8-9e23bd0e7a51}, !- Inlet Port + {748749df-a313-44a3-ab98-373a2751236a}; !- Outlet Port + +OS:Connection, + {c58b7aac-52f2-4206-a7f8-9e23bd0e7a51}, !- Handle + {7e5717b7-6dd3-470b-92a0-bdcd6fdcaf60}, !- Source Object + 2, !- Outlet Port + {2116c8f7-5318-4b65-8d1d-1a91e40bd80b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {748749df-a313-44a3-ab98-373a2751236a}, !- Handle + {2116c8f7-5318-4b65-8d1d-1a91e40bd80b}, !- Source Object + 3, !- Outlet Port + {faa24d6d-606f-41b0-821d-e00ff5800f54}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d2434406-5829-4264-afb9-33fc56f11e0a}, !- Handle + {faa24d6d-606f-41b0-821d-e00ff5800f54}, !- Source Object + 3, !- Outlet Port + {78311a98-ab74-4291-b49b-f83709d96f78}, !- Target Object + 2; !- Inlet Port + +OS:Pipe:Adiabatic, + {f6a04109-4ef6-4e31-bf10-a24e03711891}, !- Handle + Pipe Adiabatic 4, !- Name + {11f557e6-dc3b-4380-907b-c3dc9f48f494}, !- Inlet Node Name + {10d119f8-b79f-4d79-b704-7bf2897996ea}; !- Outlet Node Name + +OS:Node, + {cdce58d3-b088-4582-9a71-094546b671ed}, !- Handle + Pipe Adiabatic 4 Inlet Water Node, !- Name + {b71f856d-7ff3-4837-a9ab-04c616601591}, !- Inlet Port + {11f557e6-dc3b-4380-907b-c3dc9f48f494}; !- Outlet Port + +OS:Connection, + {b71f856d-7ff3-4837-a9ab-04c616601591}, !- Handle + {fb4ab874-fa5f-490e-baf8-ad87eb16e934}, !- Source Object + 2, !- Outlet Port + {cdce58d3-b088-4582-9a71-094546b671ed}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {11f557e6-dc3b-4380-907b-c3dc9f48f494}, !- Handle + {cdce58d3-b088-4582-9a71-094546b671ed}, !- Source Object + 3, !- Outlet Port + {f6a04109-4ef6-4e31-bf10-a24e03711891}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {10d119f8-b79f-4d79-b704-7bf2897996ea}, !- Handle + {f6a04109-4ef6-4e31-bf10-a24e03711891}, !- Source Object + 3, !- Outlet Port + {0d6a907f-cf0d-4176-87ee-9c3edc749b19}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {80fc244d-e9e5-43b9-934b-68d2f19b3de9}, !- Handle + Outpatient Anesthesia - ComStock DOE Ref Pre-1980 WUC 0.04gpm at 140F Inlet Water Node, !- Name + {38448e5d-7ea5-44e5-9fe5-d86050858d48}, !- Inlet Port + {8a116214-b24b-4207-ae44-123ae79178f5}; !- Outlet Port + +OS:Connection, + {38448e5d-7ea5-44e5-9fe5-d86050858d48}, !- Handle + {b6dd0064-4e9e-4e5d-af53-f070017ca9b1}, !- Source Object + 4, !- Outlet Port + {80fc244d-e9e5-43b9-934b-68d2f19b3de9}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {e7b925bb-b7df-43d6-ab97-87228054de6a}, !- Handle + Outpatient Anesthesia - ComStock DOE Ref Pre-1980 WUC 0.04gpm at 140F Outlet Water Node, !- Name + {13051fad-48ef-4d27-b2ad-6a17dd692087}, !- Inlet Port + {49b926c4-c398-4a36-9441-32f3d7d3fc67}; !- Outlet Port + +OS:Connection, + {8a116214-b24b-4207-ae44-123ae79178f5}, !- Handle + {80fc244d-e9e5-43b9-934b-68d2f19b3de9}, !- Source Object + 3, !- Outlet Port + {2f6a4eb1-e5ae-4b1c-9c3f-2d9c343f7e35}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {13051fad-48ef-4d27-b2ad-6a17dd692087}, !- Handle + {2f6a4eb1-e5ae-4b1c-9c3f-2d9c343f7e35}, !- Source Object + 3, !- Outlet Port + {e7b925bb-b7df-43d6-ab97-87228054de6a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {49b926c4-c398-4a36-9441-32f3d7d3fc67}, !- Handle + {e7b925bb-b7df-43d6-ab97-87228054de6a}, !- Source Object + 3, !- Outlet Port + {fb4ab874-fa5f-490e-baf8-ad87eb16e934}, !- Target Object + 4; !- Inlet Port + +OS:Node, + {1ba37273-a6ed-4e0a-800c-0eabb24c051e}, !- Handle + Outpatient MRI - ComStock DOE Ref Pre-1980 WUC 0.04gpm at 140F Inlet Water Node, !- Name + {5b07ad65-d499-4716-b95b-525266f93634}, !- Inlet Port + {39419893-23f1-465e-b96d-2a0dc528b533}; !- Outlet Port + +OS:Connection, + {5b07ad65-d499-4716-b95b-525266f93634}, !- Handle + {b6dd0064-4e9e-4e5d-af53-f070017ca9b1}, !- Source Object + 5, !- Outlet Port + {1ba37273-a6ed-4e0a-800c-0eabb24c051e}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {8f6d91c3-e8e0-41c0-800d-aa64727d2eab}, !- Handle + Outpatient MRI - ComStock DOE Ref Pre-1980 WUC 0.04gpm at 140F Outlet Water Node, !- Name + {e70ec52f-1290-4853-b0c2-2501b4d06d59}, !- Inlet Port + {0b299c6d-f645-40c5-88b5-c0d41177aa83}; !- Outlet Port + +OS:Connection, + {39419893-23f1-465e-b96d-2a0dc528b533}, !- Handle + {1ba37273-a6ed-4e0a-800c-0eabb24c051e}, !- Source Object + 3, !- Outlet Port + {401d4c52-1e7a-4a9a-96bd-fd44c390f60f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e70ec52f-1290-4853-b0c2-2501b4d06d59}, !- Handle + {401d4c52-1e7a-4a9a-96bd-fd44c390f60f}, !- Source Object + 3, !- Outlet Port + {8f6d91c3-e8e0-41c0-800d-aa64727d2eab}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0b299c6d-f645-40c5-88b5-c0d41177aa83}, !- Handle + {8f6d91c3-e8e0-41c0-800d-aa64727d2eab}, !- Source Object + 3, !- Outlet Port + {fb4ab874-fa5f-490e-baf8-ad87eb16e934}, !- Target Object + 5; !- Inlet Port + +OS:Node, + {30603f5b-6427-456c-a6e3-00d8217dbc14}, !- Handle + Outpatient MRI_Control - ComStock DOE Ref Pre-1980 WUC 0.04gpm at 140F Inlet Water Node, !- Name + {f3649253-cdd9-4107-9d19-3958e41ecda9}, !- Inlet Port + {f5f2181e-d5d7-4c3f-a4e2-08cb79db65cc}; !- Outlet Port + +OS:Connection, + {f3649253-cdd9-4107-9d19-3958e41ecda9}, !- Handle + {b6dd0064-4e9e-4e5d-af53-f070017ca9b1}, !- Source Object + 6, !- Outlet Port + {30603f5b-6427-456c-a6e3-00d8217dbc14}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {2270198c-0d41-494d-963b-52ff226d968f}, !- Handle + Outpatient MRI_Control - ComStock DOE Ref Pre-1980 WUC 0.04gpm at 140F Outlet Water Node, !- Name + {e52b7281-664f-466e-94c1-45e59ffdb69b}, !- Inlet Port + {c1246778-f65c-41b2-8487-f2094cd22e77}; !- Outlet Port + +OS:Connection, + {f5f2181e-d5d7-4c3f-a4e2-08cb79db65cc}, !- Handle + {30603f5b-6427-456c-a6e3-00d8217dbc14}, !- Source Object + 3, !- Outlet Port + {986f7f4f-7a02-475c-84c5-c67537939c19}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e52b7281-664f-466e-94c1-45e59ffdb69b}, !- Handle + {986f7f4f-7a02-475c-84c5-c67537939c19}, !- Source Object + 3, !- Outlet Port + {2270198c-0d41-494d-963b-52ff226d968f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c1246778-f65c-41b2-8487-f2094cd22e77}, !- Handle + {2270198c-0d41-494d-963b-52ff226d968f}, !- Source Object + 3, !- Outlet Port + {fb4ab874-fa5f-490e-baf8-ad87eb16e934}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {eb79d3a9-2a7f-46a7-9ab2-7509ba679651}, !- Handle + Outpatient OR - ComStock DOE Ref Pre-1980 WUC 0.72gpm at 140F Inlet Water Node, !- Name + {2387f235-970c-4f4a-b069-2dd5ee1265e1}, !- Inlet Port + {48d0ea76-73cc-495e-b1b5-5773b20d9a15}; !- Outlet Port + +OS:Connection, + {2387f235-970c-4f4a-b069-2dd5ee1265e1}, !- Handle + {b6dd0064-4e9e-4e5d-af53-f070017ca9b1}, !- Source Object + 7, !- Outlet Port + {eb79d3a9-2a7f-46a7-9ab2-7509ba679651}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {cfee3d4b-1796-481c-b302-9f63b2d879ef}, !- Handle + Outpatient OR - ComStock DOE Ref Pre-1980 WUC 0.72gpm at 140F Outlet Water Node, !- Name + {c47ec765-ffe2-4842-a336-3da887903148}, !- Inlet Port + {b53819f7-9a9a-4330-bef0-25fa219c2420}; !- Outlet Port + +OS:Connection, + {48d0ea76-73cc-495e-b1b5-5773b20d9a15}, !- Handle + {eb79d3a9-2a7f-46a7-9ab2-7509ba679651}, !- Source Object + 3, !- Outlet Port + {ab650898-9311-47dc-aa77-b8bbcd95a9a1}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c47ec765-ffe2-4842-a336-3da887903148}, !- Handle + {ab650898-9311-47dc-aa77-b8bbcd95a9a1}, !- Source Object + 3, !- Outlet Port + {cfee3d4b-1796-481c-b302-9f63b2d879ef}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b53819f7-9a9a-4330-bef0-25fa219c2420}, !- Handle + {cfee3d4b-1796-481c-b302-9f63b2d879ef}, !- Source Object + 3, !- Outlet Port + {fb4ab874-fa5f-490e-baf8-ad87eb16e934}, !- Target Object + 7; !- Inlet Port + +OS:Node, + {df098b6f-1ce0-421e-9aa0-f900793bef75}, !- Handle + Outpatient PACU - ComStock DOE Ref Pre-1980 WUC 0.12gpm at 140F Inlet Water Node, !- Name + {882eece6-0474-415d-a35f-8547ca830c81}, !- Inlet Port + {88db27ee-a116-496b-95d5-c30266be4c48}; !- Outlet Port + +OS:Connection, + {882eece6-0474-415d-a35f-8547ca830c81}, !- Handle + {b6dd0064-4e9e-4e5d-af53-f070017ca9b1}, !- Source Object + 8, !- Outlet Port + {df098b6f-1ce0-421e-9aa0-f900793bef75}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {ac21ff6e-0fb5-4cf1-8494-0d08ca644811}, !- Handle + Outpatient PACU - ComStock DOE Ref Pre-1980 WUC 0.12gpm at 140F Outlet Water Node, !- Name + {ee6f0e2d-9b1f-4b92-aea9-6fb572b16348}, !- Inlet Port + {9078c3ea-897d-4591-9a58-a4a016bd6898}; !- Outlet Port + +OS:Connection, + {88db27ee-a116-496b-95d5-c30266be4c48}, !- Handle + {df098b6f-1ce0-421e-9aa0-f900793bef75}, !- Source Object + 3, !- Outlet Port + {1d3da4f8-f7bb-4e7b-9cdd-19638a0a2e8f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ee6f0e2d-9b1f-4b92-aea9-6fb572b16348}, !- Handle + {1d3da4f8-f7bb-4e7b-9cdd-19638a0a2e8f}, !- Source Object + 3, !- Outlet Port + {ac21ff6e-0fb5-4cf1-8494-0d08ca644811}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9078c3ea-897d-4591-9a58-a4a016bd6898}, !- Handle + {ac21ff6e-0fb5-4cf1-8494-0d08ca644811}, !- Source Object + 3, !- Outlet Port + {fb4ab874-fa5f-490e-baf8-ad87eb16e934}, !- Target Object + 8; !- Inlet Port + +OS:Node, + {2826cfcd-c973-42b7-b41e-1e4624bb57cb}, !- Handle + Outpatient PhysicalTherapy - ComStock DOE Ref Pre-1980 WUC 0.08gpm at 140F Inlet Water Node, !- Name + {7235b480-59ac-49da-8936-950e79adc553}, !- Inlet Port + {df93a860-3287-44e4-8c0f-c5bca95c14c2}; !- Outlet Port + +OS:Connection, + {7235b480-59ac-49da-8936-950e79adc553}, !- Handle + {b6dd0064-4e9e-4e5d-af53-f070017ca9b1}, !- Source Object + 9, !- Outlet Port + {2826cfcd-c973-42b7-b41e-1e4624bb57cb}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {6e77aea5-a2eb-4c7c-99cc-03208c09ec81}, !- Handle + Outpatient PhysicalTherapy - ComStock DOE Ref Pre-1980 WUC 0.08gpm at 140F Outlet Water Node, !- Name + {127d25e8-e0cf-455c-aef3-6ad9d6634f31}, !- Inlet Port + {eef94fdc-f010-4bf2-a3dc-7ec662a0d838}; !- Outlet Port + +OS:Connection, + {df93a860-3287-44e4-8c0f-c5bca95c14c2}, !- Handle + {2826cfcd-c973-42b7-b41e-1e4624bb57cb}, !- Source Object + 3, !- Outlet Port + {36cebecd-5699-4115-81f1-7edfa05a64bf}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {127d25e8-e0cf-455c-aef3-6ad9d6634f31}, !- Handle + {36cebecd-5699-4115-81f1-7edfa05a64bf}, !- Source Object + 3, !- Outlet Port + {6e77aea5-a2eb-4c7c-99cc-03208c09ec81}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {eef94fdc-f010-4bf2-a3dc-7ec662a0d838}, !- Handle + {6e77aea5-a2eb-4c7c-99cc-03208c09ec81}, !- Source Object + 3, !- Outlet Port + {fb4ab874-fa5f-490e-baf8-ad87eb16e934}, !- Target Object + 9; !- Inlet Port + +OS:Node, + {d304eb0f-2c6c-49a5-ac10-eac91f2445a8}, !- Handle + Outpatient PreOp - ComStock DOE Ref Pre-1980 WUC 0.08gpm at 140F Inlet Water Node, !- Name + {8b5eedb8-496d-4000-a0a1-e302c77be2cb}, !- Inlet Port + {01835d7d-07b9-4e79-ac54-d208b3f26fca}; !- Outlet Port + +OS:Connection, + {8b5eedb8-496d-4000-a0a1-e302c77be2cb}, !- Handle + {b6dd0064-4e9e-4e5d-af53-f070017ca9b1}, !- Source Object + 10, !- Outlet Port + {d304eb0f-2c6c-49a5-ac10-eac91f2445a8}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {5230b58b-5276-4abf-8ac0-92e35429fa16}, !- Handle + Outpatient PreOp - ComStock DOE Ref Pre-1980 WUC 0.08gpm at 140F Outlet Water Node, !- Name + {eea81848-b49b-4c6e-b234-fc704996f926}, !- Inlet Port + {aff56a6f-e9de-4280-b565-6c92d2d92e5b}; !- Outlet Port + +OS:Connection, + {01835d7d-07b9-4e79-ac54-d208b3f26fca}, !- Handle + {d304eb0f-2c6c-49a5-ac10-eac91f2445a8}, !- Source Object + 3, !- Outlet Port + {c6b293ce-402a-4df1-b3d1-a87dd4856858}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {eea81848-b49b-4c6e-b234-fc704996f926}, !- Handle + {c6b293ce-402a-4df1-b3d1-a87dd4856858}, !- Source Object + 3, !- Outlet Port + {5230b58b-5276-4abf-8ac0-92e35429fa16}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {aff56a6f-e9de-4280-b565-6c92d2d92e5b}, !- Handle + {5230b58b-5276-4abf-8ac0-92e35429fa16}, !- Source Object + 3, !- Outlet Port + {fb4ab874-fa5f-490e-baf8-ad87eb16e934}, !- Target Object + 10; !- Inlet Port + +OS:Node, + {3cf5d872-3aa5-41ec-a448-b7ba480f6dbf}, !- Handle + Outpatient ProcedureRoom - ComStock DOE Ref Pre-1980 WUC 0.04gpm at 140F Inlet Water Node, !- Name + {761ebb32-7fda-41eb-9deb-bdb88a93b6e3}, !- Inlet Port + {3a020441-1ebc-4ff1-83d4-6ffd9831f11a}; !- Outlet Port + +OS:Connection, + {761ebb32-7fda-41eb-9deb-bdb88a93b6e3}, !- Handle + {b6dd0064-4e9e-4e5d-af53-f070017ca9b1}, !- Source Object + 11, !- Outlet Port + {3cf5d872-3aa5-41ec-a448-b7ba480f6dbf}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {19dd080a-b168-4b87-a597-d92675421cc9}, !- Handle + Outpatient ProcedureRoom - ComStock DOE Ref Pre-1980 WUC 0.04gpm at 140F Outlet Water Node, !- Name + {68335d44-1d9a-4b41-9933-6f810f1d6d76}, !- Inlet Port + {bd24aedc-629c-4c41-b7b7-be31c3939da2}; !- Outlet Port + +OS:Connection, + {3a020441-1ebc-4ff1-83d4-6ffd9831f11a}, !- Handle + {3cf5d872-3aa5-41ec-a448-b7ba480f6dbf}, !- Source Object + 3, !- Outlet Port + {d141a26d-4643-4ed9-82c1-b7dc4176265c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {68335d44-1d9a-4b41-9933-6f810f1d6d76}, !- Handle + {d141a26d-4643-4ed9-82c1-b7dc4176265c}, !- Source Object + 3, !- Outlet Port + {19dd080a-b168-4b87-a597-d92675421cc9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bd24aedc-629c-4c41-b7b7-be31c3939da2}, !- Handle + {19dd080a-b168-4b87-a597-d92675421cc9}, !- Source Object + 3, !- Outlet Port + {fb4ab874-fa5f-490e-baf8-ad87eb16e934}, !- Target Object + 11; !- Inlet Port + +OS:Node, + {5ceebb89-364e-48e0-86c0-b8d53d6d1f53}, !- Handle + Outpatient Xray - ComStock DOE Ref Pre-1980 WUC 0.04gpm at 140F Inlet Water Node, !- Name + {cdf90154-2272-4732-88da-396199c3b6c2}, !- Inlet Port + {032c0291-75fb-4003-ba71-23c60c74d2cf}; !- Outlet Port + +OS:Connection, + {cdf90154-2272-4732-88da-396199c3b6c2}, !- Handle + {b6dd0064-4e9e-4e5d-af53-f070017ca9b1}, !- Source Object + 12, !- Outlet Port + {5ceebb89-364e-48e0-86c0-b8d53d6d1f53}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {373ff2c6-2ae5-43e4-93fb-817192deb14b}, !- Handle + Outpatient Xray - ComStock DOE Ref Pre-1980 WUC 0.04gpm at 140F Outlet Water Node, !- Name + {85fbf852-17a4-43c2-801f-4bd4b437c474}, !- Inlet Port + {78070251-f3e9-4cac-98e6-e01632986867}; !- Outlet Port + +OS:Connection, + {032c0291-75fb-4003-ba71-23c60c74d2cf}, !- Handle + {5ceebb89-364e-48e0-86c0-b8d53d6d1f53}, !- Source Object + 3, !- Outlet Port + {9fac94bc-491b-46aa-97e2-627a3fe8e6b6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {85fbf852-17a4-43c2-801f-4bd4b437c474}, !- Handle + {9fac94bc-491b-46aa-97e2-627a3fe8e6b6}, !- Source Object + 3, !- Outlet Port + {373ff2c6-2ae5-43e4-93fb-817192deb14b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {78070251-f3e9-4cac-98e6-e01632986867}, !- Handle + {373ff2c6-2ae5-43e4-93fb-817192deb14b}, !- Source Object + 3, !- Outlet Port + {fb4ab874-fa5f-490e-baf8-ad87eb16e934}, !- Target Object + 12; !- Inlet Port + +OS:ThermostatSetpoint:DualSetpoint, + {b1af0a21-ace0-4f57-aabf-cff69b3172d7}, !- Handle + Outpatient Anesthesia - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:Schedule:Ruleset, + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Handle + Outpatient HtgSetp, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + {4080103b-31ce-4a63-a526-77a4d4dace8d}, !- Default Day Schedule Name + {19332643-323f-41dc-9680-4a5672fdeec0}, !- Summer Design Day Schedule Name + {7bee1541-c426-45af-bff4-f9092cec964a}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {4080103b-31ce-4a63-a526-77a4d4dace8d}, !- Handle + Outpatient HtgSetp Default, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 10, !- Hour 1 + 15, !- Minute 1 + 18.3, !- Value Until Time 1 + 16, !- Hour 2 + 15, !- Minute 2 + 21.1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 18.3; !- Value Until Time 3 + +OS:Schedule:Day, + {19332643-323f-41dc-9680-4a5672fdeec0}, !- Handle + Outpatient HtgSetp Summer Design Day, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 5, !- Hour 1 + 0, !- Minute 1 + 18.3, !- Value Until Time 1 + 18, !- Hour 2 + 0, !- Minute 2 + 21.1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 18.3; !- Value Until Time 3 + +OS:Schedule:Day, + {7bee1541-c426-45af-bff4-f9092cec964a}, !- Handle + Outpatient HtgSetp Winter Design Day, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 7, !- Hour 1 + 0, !- Minute 1 + 18.3, !- Value Until Time 1 + 15, !- Hour 2 + 0, !- Minute 2 + 21.1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 18.3; !- Value Until Time 3 + +OS:Schedule:Ruleset, + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}, !- Handle + Outpatient ClgSetp, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + {49dbe0a6-1041-4abd-baf9-40ed14ec7352}, !- Default Day Schedule Name + {05dae985-49d0-4bfe-9a92-2c2f7970fea3}, !- Summer Design Day Schedule Name + {fff20c61-7bd6-4cec-acfa-f2c59b5a4563}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {49dbe0a6-1041-4abd-baf9-40ed14ec7352}, !- Handle + Outpatient ClgSetp Default, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 10, !- Hour 1 + 15, !- Minute 1 + 25, !- Value Until Time 1 + 16, !- Hour 2 + 15, !- Minute 2 + 22.2, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 25; !- Value Until Time 3 + +OS:Schedule:Day, + {05dae985-49d0-4bfe-9a92-2c2f7970fea3}, !- Handle + Outpatient ClgSetp Summer Design Day, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 5, !- Hour 1 + 0, !- Minute 1 + 25, !- Value Until Time 1 + 18, !- Hour 2 + 0, !- Minute 2 + 22.2, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 25; !- Value Until Time 3 + +OS:Schedule:Day, + {fff20c61-7bd6-4cec-acfa-f2c59b5a4563}, !- Handle + Outpatient ClgSetp Winter Design Day, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 7, !- Hour 1 + 0, !- Minute 1 + 25, !- Value Until Time 1 + 15, !- Hour 2 + 0, !- Minute 2 + 22.2, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 25; !- Value Until Time 3 + +OS:ThermostatSetpoint:DualSetpoint, + {06884586-f19a-48c0-88ed-e93b92bde562}, !- Handle + Outpatient Anesthesia - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {1a140484-f310-464c-abe8-58b9498b6715}, !- Handle + Outpatient Anesthesia - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {24566118-ab3f-435c-b5b1-3d102fdea6b4}, !- Handle + Outpatient BioHazard - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {97bafe07-1aa3-4fb6-b1bf-ff079ffacc04}, !- Handle + Outpatient BioHazard - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {976e7970-c2e9-405e-82c6-c5be093c3845}, !- Handle + Outpatient BioHazard - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {7497a185-5364-4fb2-8301-f075a728fbc0}, !- Handle + Outpatient Cafe - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {34b3a273-59f3-4bdd-943a-3bc233b464c5}, !- Handle + Outpatient Cafe - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {ddfcf855-034f-4852-8331-9d6a28559bf8}, !- Handle + Outpatient Cafe - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {e3973330-24ee-40ee-b638-33a55cf2c8ef}, !- Handle + Outpatient CleanWork - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {499a3919-145f-419d-8e42-03c0034a519e}, !- Handle + Outpatient CleanWork - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {e51cd6ac-78c0-414c-adb4-dd608f5cd43f}, !- Handle + Outpatient CleanWork - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {5f7b3eae-994e-43c5-b9ad-1e10f0f4a675}, !- Handle + Outpatient Conference - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {e9a26475-92f4-435c-8716-9946a2bb745a}, !- Handle + Outpatient Conference - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {97d0449a-d90a-485a-94ca-501ea802c956}, !- Handle + Outpatient Conference - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {e34d465b-322c-4418-91c8-f683fd33234a}, !- Handle + Outpatient DressingRoom - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {0d041364-dc3a-4b57-ab5f-2a9a943c06ba}, !- Handle + Outpatient DressingRoom - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {35a42b72-3b0e-4c52-939e-87420d8d45a1}, !- Handle + Outpatient DressingRoom - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {10b6e45e-2583-4f0b-bf21-7d56036c968f}, !- Handle + Outpatient Elec/MechRoom - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {0e259a58-013f-4c0c-903e-99024fb7a303}, !- Handle + Outpatient Elec/MechRoom - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {eca85e45-dc31-44ac-bf98-0e5b2657908d}, !- Handle + Outpatient Elec/MechRoom - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {16227a59-2ea4-4245-8375-fb1812d09555}, !- Handle + Outpatient ElevatorPumpRoom - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {8b453195-60ad-4418-97ff-dc8bbe6302b8}, !- Handle + Outpatient ElevatorPumpRoom - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {46c3e35e-f770-4da6-8240-67b91afacc5d}, !- Handle + Outpatient ElevatorPumpRoom - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {435cfee2-4f0a-44c6-9cbb-d1c2a99fe72f}, !- Handle + Outpatient Exam - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {1ddeda2c-b7b6-4f36-ab34-d00cff479245}, !- Handle + Outpatient Exam - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {0d4729e9-1075-48db-b179-8940b6e2b4bb}, !- Handle + Outpatient Exam - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {cb01ae6a-77dd-4eac-9a9e-bc2ef83f9b89}, !- Handle + Outpatient Exam - ComStock DOE Ref Pre-1980 Thermostat 3, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {93e4ed72-a95b-480c-a2b4-99375f4d9efb}, !- Handle + Outpatient Hall - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {e620d437-1076-43a8-80d1-75f9c2156515}, !- Handle + Outpatient Hall - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {20f336e4-95c0-47f2-85a0-b3dc8674a17b}, !- Handle + Outpatient IT_Room - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {c942e9bb-c2f2-4a0a-ba66-2fa7b8b99470}, !- Handle + Outpatient IT_Room - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {fdbdb1e2-c454-4afb-b64d-9ddea6b399a7}, !- Handle + Outpatient IT_Room - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {1ea00768-2d08-4b49-95ca-d13e45f9a7d5}, !- Handle + Outpatient Janitor - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {ee962f33-5f10-4389-8559-004a6e349c16}, !- Handle + Outpatient Janitor - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {9a9c9df1-24f3-47ac-8a5d-2a141c074a3b}, !- Handle + Outpatient Janitor - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {fbe344e8-fca4-41b8-a2f4-d288bfb2744b}, !- Handle + Outpatient Lobby - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {aba38e87-4507-4ce1-9bd8-67b7c5f101e7}, !- Handle + Outpatient Lobby - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {30b6af39-232b-40d0-92aa-e355a022946c}, !- Handle + Outpatient Lobby - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {656f3547-a815-4f61-8eb0-e809cd18cc05}, !- Handle + Outpatient LockerRoom - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {014eb179-ca47-4f48-b95e-23b81c28c097}, !- Handle + Outpatient LockerRoom - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {51b87ba8-a434-4bf6-bd42-e5796d4dadf8}, !- Handle + Outpatient LockerRoom - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {ae188e8d-5fbc-418e-b98d-752b6d7e8473}, !- Handle + Outpatient Lounge - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {dda68162-68ff-47de-9e5f-fdefd17ac3b6}, !- Handle + Outpatient Lounge - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {051ac48a-966a-4508-b075-e3fc2280d3a1}, !- Handle + Outpatient Lounge - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {0f549b35-641b-4765-b6c8-03aa1dbdda2b}, !- Handle + Outpatient MedGas - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {080bfab2-e227-4bf3-9477-c4d00444572f}, !- Handle + Outpatient MedGas - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {bbe6579c-d442-4b8c-86a8-d4de664b9686}, !- Handle + Outpatient MedGas - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {118dfa8e-a41f-4dd0-b564-437fa2f891e1}, !- Handle + Outpatient MRI - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {6ee9d138-9ed6-4f03-ac44-a4ff0eb52f69}, !- Handle + Outpatient MRI - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {2fe95c22-df49-4117-8962-1a8c8a2e464e}, !- Handle + Outpatient MRI - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {772e5c1f-f23a-4029-a6d5-387143c6d308}, !- Handle + Outpatient MRI_Control - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {3646c37d-b5c0-411d-abd4-ef9f288d2234}, !- Handle + Outpatient MRI_Control - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {39ae7233-b7fa-4ab5-aaca-9fe4ef6008fb}, !- Handle + Outpatient MRI_Control - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {e49282a5-1993-45d8-ad0c-dc98accfe0b0}, !- Handle + Outpatient NurseStation - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {ee285fb4-2cf9-441e-844f-19ceab5c9634}, !- Handle + Outpatient NurseStation - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {2b99f9a8-b990-4140-bde0-aa8fdfc58812}, !- Handle + Outpatient NurseStation - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {3fa5ff83-c11d-4f32-8793-738c947ee340}, !- Handle + Outpatient Office - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {777ce897-4abd-4f8d-8466-7d215dad31fc}, !- Handle + Outpatient Office - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {dd37fc26-9974-4980-a267-092e446e5fe9}, !- Handle + Outpatient Office - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {95a8fa01-78a2-4800-8f63-9080c2eaeafd}, !- Handle + Outpatient Office - ComStock DOE Ref Pre-1980 Thermostat 3, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {8b6f2d4c-6305-4496-8aab-c50276e060b6}, !- Handle + Outpatient Office - ComStock DOE Ref Pre-1980 Thermostat 4, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {677deb36-2974-4f70-99b0-ac6b81b10894}, !- Handle + Outpatient Office - ComStock DOE Ref Pre-1980 Thermostat 5, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {18780b7a-ae3d-4ecc-ae0a-e40c734240e1}, !- Handle + Outpatient OR - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {344183c5-2e2a-423f-8a28-cbe281d02aba}, !- Heating Setpoint Temperature Schedule Name + {6dbd9860-f404-4816-8860-74dc79b5dcbe}; !- Cooling Setpoint Temperature Schedule Name + +OS:Schedule:Ruleset, + {344183c5-2e2a-423f-8a28-cbe281d02aba}, !- Handle + Outpatient OR HtgSetp, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + {bb573ed3-b2a6-4bb5-8733-9dae293ed1f5}, !- Default Day Schedule Name + {e4ca9ed5-e365-402e-bd76-3b27eb0bd23c}, !- Summer Design Day Schedule Name + {54c084fe-dfb7-4435-9646-08dbea1f2a06}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {bb573ed3-b2a6-4bb5-8733-9dae293ed1f5}, !- Handle + Outpatient OR HtgSetp Default, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 16, !- Hour 1 + 15, !- Minute 1 + 18.3, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 18.3; !- Value Until Time 2 + +OS:Schedule:Day, + {54c084fe-dfb7-4435-9646-08dbea1f2a06}, !- Handle + Outpatient OR HtgSetp Winter Design Day, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 18.3; !- Value Until Time 1 + +OS:Schedule:Day, + {e4ca9ed5-e365-402e-bd76-3b27eb0bd23c}, !- Handle + Outpatient OR HtgSetp Summer Design Day, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 18.3; !- Value Until Time 1 + +OS:Schedule:Ruleset, + {6dbd9860-f404-4816-8860-74dc79b5dcbe}, !- Handle + Outpatient OR ClgSetp, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + {1306941e-958d-418f-9ba2-623ecf9e74f9}, !- Default Day Schedule Name + {639826ec-eb90-44eb-a2a9-2650f97f6096}, !- Summer Design Day Schedule Name + {13aa66cc-02ee-46d1-ac7d-862f8503eb4d}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {1306941e-958d-418f-9ba2-623ecf9e74f9}, !- Handle + Outpatient OR ClgSetp Default, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 10, !- Hour 1 + 15, !- Minute 1 + 22.2, !- Value Until Time 1 + 16, !- Hour 2 + 15, !- Minute 2 + 18.3, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 22.2; !- Value Until Time 3 + +OS:Schedule:Day, + {13aa66cc-02ee-46d1-ac7d-862f8503eb4d}, !- Handle + Outpatient OR ClgSetp Winter Design Day, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 22.2, !- Value Until Time 1 + 17, !- Hour 2 + 0, !- Minute 2 + 18.3, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 22.2; !- Value Until Time 3 + +OS:Schedule:Day, + {639826ec-eb90-44eb-a2a9-2650f97f6096}, !- Handle + Outpatient OR ClgSetp Summer Design Day, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 22.2, !- Value Until Time 1 + 17, !- Hour 2 + 0, !- Minute 2 + 18.3, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 22.2; !- Value Until Time 3 + +OS:ThermostatSetpoint:DualSetpoint, + {464b6d62-3a84-4010-80c6-ea3a219ef085}, !- Handle + Outpatient OR - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {344183c5-2e2a-423f-8a28-cbe281d02aba}, !- Heating Setpoint Temperature Schedule Name + {6dbd9860-f404-4816-8860-74dc79b5dcbe}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {86482bc4-08b6-4617-86af-235a2b5b6ff6}, !- Handle + Outpatient OR - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {344183c5-2e2a-423f-8a28-cbe281d02aba}, !- Heating Setpoint Temperature Schedule Name + {6dbd9860-f404-4816-8860-74dc79b5dcbe}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {a12f0df2-9a98-4bf2-bbaa-cd5838007df7}, !- Handle + Outpatient OR - ComStock DOE Ref Pre-1980 Thermostat 3, !- Name + {344183c5-2e2a-423f-8a28-cbe281d02aba}, !- Heating Setpoint Temperature Schedule Name + {6dbd9860-f404-4816-8860-74dc79b5dcbe}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {86dcb3ce-4c12-4113-bafd-11715afcad67}, !- Handle + Outpatient OR - ComStock DOE Ref Pre-1980 Thermostat 4, !- Name + {344183c5-2e2a-423f-8a28-cbe281d02aba}, !- Heating Setpoint Temperature Schedule Name + {6dbd9860-f404-4816-8860-74dc79b5dcbe}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {bb0d4e13-b414-4f34-93cb-830a06a9d84a}, !- Handle + Outpatient OR - ComStock DOE Ref Pre-1980 Thermostat 5, !- Name + {344183c5-2e2a-423f-8a28-cbe281d02aba}, !- Heating Setpoint Temperature Schedule Name + {6dbd9860-f404-4816-8860-74dc79b5dcbe}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {5beae7af-3725-474f-8fec-670b1b245a5c}, !- Handle + Outpatient PACU - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {ca350a47-0bbd-4fd5-8d27-43601c3ea43f}, !- Handle + Outpatient PACU - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {7c08fae6-0481-45aa-9cdf-7a477be13ffc}, !- Handle + Outpatient PACU - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {4f69094f-16b3-4cbb-ab78-50a3789994d5}, !- Handle + Outpatient PhysicalTherapy - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {3273ddc6-aca4-4995-8bfd-2d572d3cc18b}, !- Handle + Outpatient PhysicalTherapy - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {e2affc91-c642-4f99-b528-bf39e9c39591}, !- Handle + Outpatient PhysicalTherapy - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {63bbb366-386b-4c3f-896a-ca38179f3232}, !- Handle + Outpatient PreOp - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {2537a3c5-db35-43ae-a085-fc93d9a32d23}, !- Handle + Outpatient PreOp - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {39d514a1-ecc2-480a-b840-0d885eb055d6}, !- Handle + Outpatient PreOp - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {d26c5035-8142-4294-90c3-cf6ed271595c}, !- Handle + Outpatient ProcedureRoom - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {d8f87028-1dd0-471a-a6e3-f2c7b8b46fe1}, !- Handle + Outpatient ProcedureRoom - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {2ab87dc4-a54d-4b5f-9aea-cdf559e91b24}, !- Handle + Outpatient ProcedureRoom - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {72361cbd-b724-4821-bb64-a28cddc15953}, !- Handle + Outpatient Reception - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {f7504b44-d30a-44f3-a874-e5c5491989a0}, !- Handle + Outpatient Reception - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {853553be-cf3f-44e5-b932-ef458cc83d3e}, !- Handle + Outpatient Reception - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {d405e0d6-7991-409e-8938-1c5f6d967bd4}, !- Handle + Outpatient Soil Work - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {e904fe60-e57c-40f6-8556-18bb06e83d42}, !- Handle + Outpatient Soil Work - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {f16b963b-984b-42bd-be00-43206b426a40}, !- Handle + Outpatient Soil Work - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {443c7d91-9416-4fdb-b00a-8a36dc8fcbc3}, !- Handle + Outpatient Stair - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {e479ab8d-9f83-4cc7-82f4-ddb0ffe78950}, !- Handle + Outpatient Stair - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {3d078f87-99a3-41a6-898e-7e57d3ff027c}, !- Handle + Outpatient Stair - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {32d37f89-f222-438c-9d2d-f02c6787afba}, !- Handle + Outpatient Toilet - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {0042e5af-5183-4fb2-94e1-54a526fb19cc}, !- Handle + Outpatient Toilet - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {4babde8a-2dea-40a3-98af-882a080594a9}, !- Handle + Outpatient Toilet - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {7362913f-1117-4ca8-a4b3-3e6667ae2afc}, !- Handle + Outpatient Xray - ComStock DOE Ref Pre-1980 Thermostat, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {28f1b9bc-103c-4144-ae21-59026f44282f}, !- Handle + Outpatient Xray - ComStock DOE Ref Pre-1980 Thermostat 1, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:ThermostatSetpoint:DualSetpoint, + {9b6600ed-3404-434b-89a7-33e69ef10289}, !- Handle + Outpatient Xray - ComStock DOE Ref Pre-1980 Thermostat 2, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Heating Setpoint Temperature Schedule Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}; !- Cooling Setpoint Temperature Schedule Name + +OS:Material, + {cbae3ba3-9ab7-467e-9286-8e355c0c7f0e}, !- Handle + Std Wood 6inch, !- Name + MediumSmooth, !- Roughness + 0.15, !- Thickness {m} + 0.12, !- Conductivity {W/m-K} + 540, !- Density {kg/m3} + 1210, !- Specific Heat {J/kg-K} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.7; !- Visible Absorptance + +OS:Construction, + {8bcb29c3-e82b-41d4-93e5-9194800d6d5f}, !- Handle + InteriorFurnishings, !- Name + , !- Surface Rendering Name + {cbae3ba3-9ab7-467e-9286-8e355c0c7f0e}; !- Layer 1 + +OS:InternalMass:Definition, + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Handle + Internal Mass Definition 1, !- Name + {8bcb29c3-e82b-41d4-93e5-9194800d6d5f}, !- Construction Name + SurfaceArea/Area, !- Design Level Calculation Method + , !- Surface Area {m2} + 2, !- Surface Area per Space Floor Area {dimensionless} + ; !- Surface Area per Person {m2/person} + +OS:InternalMass, + {e6da7164-8b24-4efe-a8b7-35b98f8119be}, !- Handle + Outpatient PACU C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {1e18da95-5cb4-40d3-9a81-fe5e67e03b16}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {243ea515-965d-4352-a5cd-6b033d61588f}, !- Handle + Outpatient PACU A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {c3024915-c047-4fc8-9646-11c39d8548f1}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {64994f52-74b5-4e14-be7a-86f05fd6f1e6}, !- Handle + Outpatient Lounge A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {49dad92d-accf-443a-a6de-2727d958c0e0}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {eacd92d7-bf03-4b01-86b9-ed1ec82e3d36}, !- Handle + Outpatient Xray C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {bcb954e6-60d6-4118-811c-173a8335bfae}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {3dfbe126-7680-4d7c-a0ba-87f2fbc86c7d}, !- Handle + Outpatient PACU B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {6da9c991-5f0d-43e7-ac30-e33f3cc5a855}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {58dbf18e-a39b-46c8-bcd1-edf4506028d2}, !- Handle + Outpatient Toilet C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {c88f9c32-e196-4172-975f-53045961e2e3}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {20ce4ee0-760b-4854-a027-8109b705bb9a}, !- Handle + Outpatient LockerRoom C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {699f0c0c-f25b-44a1-9cf1-d2ccf19386e7}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {5c3b775c-633a-45c6-974a-abd7af8c5e42}, !- Handle + Outpatient NurseStation C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {f3b05715-ee07-48d2-aa80-78bac9b77fe5}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {09fa696a-a817-4121-9386-00819048f745}, !- Handle + Outpatient Lobby C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {0cce8e12-d645-4d9a-90fc-367c2d118d54}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {95253bd2-5be4-4a35-b26c-ad3309e43ccd}, !- Handle + Outpatient Lobby A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {f570382a-efd5-4ffc-8095-a7bced243c99}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {d2103a6a-c251-44e9-b9bd-9048a89b9f1d}, !- Handle + Outpatient NurseStation A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {cb45a6dc-735c-46cc-b8e6-22caaa1477d8}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {c133286d-1a65-43be-a17a-3d8ef0e09812}, !- Handle + Outpatient Stair C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {f9541ccc-4c68-458f-aa32-860b6cc1bc80}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {93694e51-2a8d-4122-9903-36ff7c218080}, !- Handle + Outpatient PreOp B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {9cf6e6b0-9d71-4410-b574-bc406d044fc9}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {7d8ab4a5-13e1-4afa-ad74-0fcfee87a6ef}, !- Handle + Outpatient PreOp A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {0eab7abe-c6e0-41ed-be3b-89dbf7f80039}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {ccf488ab-36d1-49b0-845f-f08d196876cf}, !- Handle + Outpatient Elec/MechRoom B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {81fa56b4-4ffd-42fa-a5a8-130d82b9aef2}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {9b634f87-fd0a-4fee-808e-0f14f88f1d55}, !- Handle + Outpatient MRI C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {6383b585-77c7-44db-93de-d2820eee11c1}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {cdbf3a94-4e57-41c2-872a-122a8c65a8a8}, !- Handle + Outpatient MRI B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {11f048f2-4bcf-4b69-ae64-b72966af8bd6}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {2570e9c6-17e1-495f-aac5-20adcf197ec9}, !- Handle + Outpatient Cafe C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {e9d23156-5cb0-449d-a624-d5357e7664ca}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {a249a478-0e42-4d62-91af-35b5f2802733}, !- Handle + Outpatient Elec/MechRoom A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {32d05e1b-858c-4e47-a74e-881768de235e}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {af47785b-a948-4643-a36b-b760f15f70a9}, !- Handle + Outpatient Cafe B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {1c285a6c-116b-4243-b6f1-8e3192788fc8}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {836efd7a-5cd2-4970-ade2-18e253f0be8e}, !- Handle + Outpatient Cafe A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {9583b48c-d1fc-4459-aae5-e5b5e1abba7f}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {3fcd8f19-0d8c-4d79-af7f-4db64a918131}, !- Handle + Outpatient Soil Work C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {fae96387-f8f0-48eb-9d1f-7570679911e5}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {055f3fec-213f-4a93-b7d9-65855de8a086}, !- Handle + Outpatient Lounge C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {3868ff9d-9a90-4997-afe7-1670c60677e0}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {609bbfad-6c0f-48de-affd-d997c467f3e0}, !- Handle + Outpatient BioHazard A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {07bcebe4-49e7-4b79-a705-f1df5dacfb82}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {ff60e85f-27d9-4557-9ee8-3bf0f5ab7aef}, !- Handle + Outpatient Exam A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {f5af384c-a5a4-4c87-b078-a5bf21405c54}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {9cb786a0-390f-41fb-a847-e8688c718352}, !- Handle + Outpatient Office C end_b - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {08a083ce-be5a-4f63-8b9d-21b46ba56f99}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {eb16d18f-98eb-4a99-8b55-74a533775189}, !- Handle + Outpatient Conference A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {0d5369c4-e9f2-406b-8a24-071ce82d3546}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {1f3d149e-752d-49f1-9bb9-1fedd7a09e9d}, !- Handle + Outpatient Stair A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {481888aa-bd8b-4b40-8221-99cbc36df9ac}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {b89a6caf-2170-4804-971a-d7196599cecc}, !- Handle + Outpatient Office B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {5025d250-982e-46c8-bf73-96bc06bac6fe}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {890b4172-2fde-41be-939b-e107364c6ca9}, !- Handle + Outpatient Toilet A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {7bc0f656-994b-4f31-8647-d1e47021afd7}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {6354af56-5dd4-4cea-9932-3b938bd05bf2}, !- Handle + Outpatient Stair B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {feb60575-a4e3-473f-97a3-adc777f0359a}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {c550b2da-3404-401a-834f-11045d9c5686}, !- Handle + Outpatient OR A - Story ground 1 Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {4287fa7e-a0de-424e-9ab4-95ecfb37d31f}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {3ffbe9c9-f1a3-408b-b138-b77144308678}, !- Handle + Outpatient BioHazard B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {3ed315cf-5223-42c3-a62b-1bcf89a9f58c}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {d10536f6-0428-4bd2-be9e-f2bd331fd0b6}, !- Handle + Outpatient Office B end_b - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {46e7b4a8-20f3-4bc8-ab65-3899bd8d2932}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {7e67706f-5e96-4591-899c-615a85ca0018}, !- Handle + Outpatient Janitor C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {bfeeb8f8-e1f4-4a9d-a185-5767302ed53b}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {c95e19b5-42d2-4691-9d42-e2f3a28dd6ed}, !- Handle + Outpatient Lounge B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {f8b7515e-aa35-4e1e-a411-e3223567f7a8}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {46ea0fd7-a3e0-4d1f-850d-bdb1a8c976e3}, !- Handle + Outpatient PreOp C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {e8a67c40-e9cc-4e8f-b151-3a8b38938799}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {3e571796-5a0d-428f-bc5e-0aebc12d5a80}, !- Handle + Outpatient Soil Work B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {c8d87457-0b89-4f7c-8815-aa87ae84f957}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {538473f2-a6ba-40ac-bcbd-0371c01d426d}, !- Handle + Outpatient LockerRoom B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {f1e219bc-e3b6-43a1-9fb1-1a607cb43320}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {69ba572b-d8d6-420f-8909-a75fbc724f12}, !- Handle + Outpatient Office C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {9b54d120-a67e-4b54-80fb-adbb35e790c9}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {99c0c82e-8dc5-4bd0-9f68-e64599662a34}, !- Handle + Outpatient Hall B end_a - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {dd86b83c-fece-48cb-8e07-ebc5f5ae7e78}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {91042d72-03da-443f-ac99-679d96d55a22}, !- Handle + Outpatient Exam C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {eee8fa4e-ae5b-4919-a079-6e3c9f6e0be2}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {18b579c1-83f1-47d0-bd4f-b70ba706eb34}, !- Handle + Outpatient Exam C end_a - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {8a09d570-ad4b-41c3-b795-5536154f56fb}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {cca79cff-2bd6-47d4-b12d-c0c4348dd6c0}, !- Handle + Outpatient NurseStation B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {ab75327c-5484-46da-a711-cf7dce5c0aab}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {bd6e43c6-dd38-459a-b68a-2470dba32bae}, !- Handle + Outpatient Janitor A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {bbe6cbc9-9f07-4c3e-9936-16e4ad1e39f7}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {3566380e-ac74-43af-b427-12e5bbc10f02}, !- Handle + Outpatient PhysicalTherapy C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {a796833a-310e-44c7-8335-ceb1ff393f7c}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {1ba12182-c0c5-4683-b55f-2f1c44e0d755}, !- Handle + Outpatient DressingRoom A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {905eb233-f56e-4e1a-a950-e05213a51981}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {96811ee5-d9c6-4c05-863c-c80236959011}, !- Handle + Outpatient Janitor B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {e908186f-5c13-4392-ac0c-90cfbe440a78}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {66c63c35-4bd1-40bb-82de-ae708b1ac983}, !- Handle + Outpatient CleanWork A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {279ee2d4-a31f-45f3-a86a-ec3dc1af7a40}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {ceeb9e31-f823-429a-8cd7-2615b92d91d5}, !- Handle + Outpatient Hall B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {1213fed4-6df6-4c2e-af62-c372c21405be}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {0a080ecd-9c12-4771-981a-994eddafb5ea}, !- Handle + Outpatient ElevatorPumpRoom C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {eababfdf-fb36-40f8-9abb-6ab73d3dc9ea}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {bb6e1f15-e2e8-49c6-8224-598b32b5ec6d}, !- Handle + Outpatient Office A end_b - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {af46d1c0-0c7e-4549-a3ee-c23fe621f94a}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {b8614d28-d815-4ec7-9647-0e4748430866}, !- Handle + Outpatient OR A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {2da562aa-6f06-4968-b8e2-fe4ad52088ea}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {86bd5a3e-cd70-4fd3-b08f-437d1577dd90}, !- Handle + Outpatient Toilet B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {43767cc7-b0f6-47bd-b085-e12a46f00094}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {b1b366b0-73b6-427c-9d86-18c1d6c45444}, !- Handle + Outpatient OR B - Story ground 1 Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {0caa2afb-6f8b-4d59-9e0a-8b254f9f3f37}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {cb2fe561-014e-4a5c-9be3-f938a0af65b5}, !- Handle + Outpatient DressingRoom B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {15fff177-458d-4cfe-9df1-90f883a5655b}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {e4218e9f-6552-4262-a410-dc8ddd93c354}, !- Handle + Outpatient OR B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {9ece76bb-c078-48e7-ba59-3b3a21dcd732}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {1eaa5da2-7d42-48c3-8d0d-eab39239c2fa}, !- Handle + Outpatient PhysicalTherapy B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {7aa26c07-5c82-497e-912e-f92ba7634ff2}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {4852851c-1d4f-4991-a748-c997aa744571}, !- Handle + Outpatient Exam A end_a - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {369e096c-d9ad-4605-8bfa-ca78020d3709}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {28f0cc62-634b-43fc-99bf-5da3d6b640a5}, !- Handle + Outpatient IT_Room C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {5c7ef46a-1b4c-4361-bf02-ce5554b0b527}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {75f02b2b-0c76-471e-ab14-df3c7afac54e}, !- Handle + Outpatient Elec/MechRoom C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {c9da4633-24be-4964-b2ae-651131d87847}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {79c5150b-8393-4981-9832-888b83be8fa0}, !- Handle + Outpatient Reception C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {ea0bae05-4dc5-4cc7-882a-1ac9115b31f4}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {a5e1897c-a09f-46c2-9477-e6c5c59d32ad}, !- Handle + Outpatient OR C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {292bad91-aae1-43a1-9f88-b368e8ab0cbf}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {88f85643-f42a-4ced-9f89-69acdd72293b}, !- Handle + Outpatient DressingRoom C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {54e62949-4f1e-480b-be17-794fe9a7a448}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {454a18ca-65d9-428a-89c9-a4f3c8b3a4c1}, !- Handle + Outpatient Office A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {0bd88152-87f9-4c16-b73d-8fcf0b786637}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {0587efbf-2a79-44a8-92f6-46cf05b556fe}, !- Handle + Outpatient Reception A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {bffb6823-ab11-4b1a-946c-0025c7c6aab7}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {3c160112-e073-4037-8969-4aa13e7f497e}, !- Handle + Outpatient Reception B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {af095cd2-dcda-4c8d-9712-8d670528e498}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {4af09ab0-12bc-4864-85f0-84480ec0299a}, !- Handle + Outpatient ProcedureRoom A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {b969ae5a-bb70-41f9-a4a3-addde4e71985}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {4c617e2d-a8c5-40c5-a896-5b5961c59f2b}, !- Handle + Outpatient ProcedureRoom B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {66c81ad7-de50-4ec9-914e-7ad94134ead9}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {d4c9e774-8805-4efe-8a4d-5ee4288d3a87}, !- Handle + Outpatient Conference C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {eff276b1-a689-4a99-bfe5-610f40a01485}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {c75b88c2-9997-479a-9a47-bef88114fb2a}, !- Handle + Outpatient PhysicalTherapy A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {a1e43370-775b-40a6-8905-fbab7ae343c1}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {204b1249-cced-4b2e-95d4-cd32caed5bc3}, !- Handle + Outpatient CleanWork C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {c96964fc-5a4c-4e22-8ce6-e681f05ff2d0}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {77cd359a-e1ec-4077-b8e9-d94e3341f2b6}, !- Handle + Outpatient BioHazard C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {8a8a5126-a31e-4178-ac83-c0cab3d30a56}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {6be58705-a4da-4a9a-9227-0477508818a9}, !- Handle + Outpatient MedGas B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {323ff0c3-47e6-415f-a852-647dd6823779}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {5669b6ba-55d8-4339-931b-66f8e439566d}, !- Handle + Outpatient Soil Work A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {0d0a619a-5354-469a-a62f-6495d01fc842}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {7b310d48-1f1a-4a1e-91ca-7a2d4a3d3b18}, !- Handle + Outpatient Xray B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {ce947ebc-632b-415a-9f3d-5afa42e13c62}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {62cba6b1-24c7-41d7-9075-cfb927fa9653}, !- Handle + Outpatient MedGas A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {19a5f2dc-793b-41a7-a245-2a4dcd425dd6}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {89a534e6-49c9-4a87-a701-9f647f7c2d5a}, !- Handle + Outpatient Xray A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {2904ca6c-9c9d-4316-b2e1-957d7f0bb1fe}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {15f7aad6-00d5-4c91-90e1-a5f2a54c9509}, !- Handle + Outpatient MedGas C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {d594fa46-1c78-462f-9652-b3025d136c84}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {2fd7d5d8-8703-47cf-bdeb-78bad4067183}, !- Handle + Outpatient MRI_Control B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {120e34a9-bdc7-41d1-b21a-c963ea875eac}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {cb90ad87-bf3b-4ca5-b179-6d5e828915f9}, !- Handle + Outpatient ElevatorPumpRoom A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {9ba9e63c-0f59-4690-a22a-fbb127fc72e9}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {c14a9383-36bf-469b-8a68-eeac4b119d22}, !- Handle + Outpatient ElevatorPumpRoom B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {1e128f03-dd60-4501-9b62-3b6ab682587a}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {09a7e74a-f456-4af3-860d-dc91c24164a7}, !- Handle + Outpatient MRI A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {509df49a-3b55-4cd1-81c2-e89a73ffe4ee}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {b0697835-9432-4f86-96db-c06c0e15e091}, !- Handle + Outpatient Anesthesia A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {cef0d458-31cf-40e4-881f-a6d9500e9f69}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {2bdbcb85-d1d5-44b8-9688-73abaec53ffd}, !- Handle + Outpatient CleanWork B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {7c5f8d32-a2a6-49fd-921d-0efcf0f10a61}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {061da2a6-68c4-4812-89a5-f7653fe260ec}, !- Handle + Outpatient Anesthesia B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {46e08511-1356-49b7-8830-fa5aa7d35d97}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {d99d10b4-a65d-4ab1-b3ef-f7698762a3b6}, !- Handle + Outpatient Anesthesia C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {7488cd88-27e4-433d-a6fd-f24d09990045}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {75ebc44f-babe-4b6e-aca3-0742a848cab9}, !- Handle + Outpatient IT_Room A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {eb22845c-7b50-4b03-856c-0f87b80dab69}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {857f7c23-01f2-41b2-9784-755096356e3f}, !- Handle + Outpatient LockerRoom A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {a3cca4ed-380e-434b-93d2-1ea31beea562}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {9ef3a829-7548-4ebd-86e7-7b281478d253}, !- Handle + Outpatient Lobby B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {719f24d0-9546-4147-bd02-4973e1da1b1b}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {e6015bf1-087c-494f-a90c-735701ac9d08}, !- Handle + Outpatient IT_Room B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {29c23f7d-72bb-4eff-9a03-2c9a111de621}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {6f1041fd-5b61-45da-8e7b-3c3971fb7694}, !- Handle + Outpatient OR C - Story ground 1 Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {f4424d26-f266-48dc-9493-a886e9476552}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {6552d41d-09e0-4f39-a76d-aa92c2015d43}, !- Handle + Outpatient MRI_Control A - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {c7648a74-5baf-440c-af48-fd3141f0ab39}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {eb61fc1e-4269-4060-a1a7-6fa442ba4bce}, !- Handle + Outpatient MRI_Control C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {9600e904-9c18-4a38-99c4-680b8463eccd}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {ae45e77b-1c21-4954-bdb8-8a1fd7ed3c1e}, !- Handle + Outpatient ProcedureRoom C - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {9cc89a59-b3d4-4451-ba43-112b1c3f95d0}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:InternalMass, + {ab5ef2e5-8c87-4078-a250-50dbae530758}, !- Handle + Outpatient Conference B - Story ground Mass, !- Name + {0977338d-3683-49c9-95aa-323aaed7bdb5}, !- Internal Mass Definition Name + {8d397a8b-fdcb-4d0a-bd5c-e4ad54a26e05}, !- Space or SpaceType Name + 1; !- Multiplier + +OS:PlantLoop, + {3fe00cec-ade0-4d81-aeb7-6f878840a63d}, !- Handle + Hot Water Loop, !- Name + Water, !- Fluid Type + 0, !- Glycol Concentration + , !- User Defined Fluid Type + , !- Plant Equipment Operation Heating Load + , !- Plant Equipment Operation Cooling Load + , !- Primary Plant Equipment Operation Scheme + {50877bf8-47ba-42e9-ad44-4c205b33f80b}, !- Loop Temperature Setpoint Node Name + , !- Maximum Loop Temperature {C} + 10, !- Minimum Loop Temperature {C} + 0.00756981941937287, !- Maximum Loop Flow Rate {m3/s} + , !- Minimum Loop Flow Rate {m3/s} + 0.908378330324744, !- Plant Loop Volume {m3} + {62a7d26b-efa0-4a07-9eaf-0959badc8d6b}, !- Plant Side Inlet Node Name + {9035be52-24fd-455a-b538-2d15327e5c93}, !- Plant Side Outlet Node Name + , !- Plant Side Branch List Name + {c2c15690-ea3f-4080-9e8b-ea0b8a9324e0}, !- Demand Side Inlet Node Name + {56a96ba9-90a3-4bd3-8fc7-82ec5e869de0}, !- Demand Side Outlet Node Name + , !- Demand Side Branch List Name + , !- Demand Side Connector List Name + Optimal, !- Load Distribution Scheme + {466c4a1a-f856-4c46-a4c1-ffb54d95416b}, !- Availability Manager List Name + , !- Plant Loop Demand Calculation Scheme + , !- Common Pipe Simulation + , !- Pressure Simulation Type + , !- Plant Equipment Operation Heating Load Schedule + , !- Plant Equipment Operation Cooling Load Schedule + , !- Primary Plant Equipment Operation Scheme Schedule + , !- Component Setpoint Operation Scheme Schedule + {03745b25-6d6c-4ee7-beef-d5c7d38a36b3}, !- Demand Mixer Name + {fc7029a4-d6c5-4617-a6af-648f0520fd6a}, !- Demand Splitter Name + {fb85b33e-ff88-441a-b478-692b6a141d92}, !- Supply Mixer Name + {bdd0a32d-5e9a-4a71-86ed-10e0bb8958a0}; !- Supply Splitter Name + +OS:Node, + {fec312d5-c62b-47b2-b0e0-72317d5810e2}, !- Handle + Hot Water Loop Supply Inlet Node, !- Name + {62a7d26b-efa0-4a07-9eaf-0959badc8d6b}, !- Inlet Port + {732d67f8-cbbe-463a-b44d-a0c612c377b2}; !- Outlet Port + +OS:Node, + {50877bf8-47ba-42e9-ad44-4c205b33f80b}, !- Handle + Hot Water Loop Supply Outlet Node, !- Name + {d4f5d583-445f-424f-b31e-cda137904fc5}, !- Inlet Port + {9035be52-24fd-455a-b538-2d15327e5c93}; !- Outlet Port + +OS:Node, + {aed9ae6f-aff4-4e50-b7ab-cdf3c11d0196}, !- Handle + Boiler Inlet Water Node, !- Name + {ae15191b-9dc2-48c4-917a-59b42196a417}, !- Inlet Port + {9d47f5c5-f02b-4fcc-a5e4-33e0f38491d7}; !- Outlet Port + +OS:Connector:Mixer, + {fb85b33e-ff88-441a-b478-692b6a141d92}, !- Handle + Connector Mixer 3, !- Name + {a376397e-7b52-4e55-ad0d-9445c4d02279}, !- Outlet Branch Name + {4123668d-0dbf-47dd-837b-3d43c77fe992}, !- Inlet Branch Name 1 + {d066c462-1d90-4bcf-9baf-4e5830685c3b}; !- Inlet Branch Name 2 + +OS:Connector:Splitter, + {bdd0a32d-5e9a-4a71-86ed-10e0bb8958a0}, !- Handle + Connector Splitter 3, !- Name + {995e5ac2-569f-4c3e-bcb8-fd531fd611d6}, !- Inlet Branch Name + {ae15191b-9dc2-48c4-917a-59b42196a417}, !- Outlet Branch Name 1 + {28533192-2983-4392-a820-62779ba78f46}; !- Outlet Branch Name 2 + +OS:Connection, + {62a7d26b-efa0-4a07-9eaf-0959badc8d6b}, !- Handle + {3fe00cec-ade0-4d81-aeb7-6f878840a63d}, !- Source Object + 14, !- Outlet Port + {fec312d5-c62b-47b2-b0e0-72317d5810e2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ae15191b-9dc2-48c4-917a-59b42196a417}, !- Handle + {bdd0a32d-5e9a-4a71-86ed-10e0bb8958a0}, !- Source Object + 3, !- Outlet Port + {aed9ae6f-aff4-4e50-b7ab-cdf3c11d0196}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9035be52-24fd-455a-b538-2d15327e5c93}, !- Handle + {50877bf8-47ba-42e9-ad44-4c205b33f80b}, !- Source Object + 3, !- Outlet Port + {3fe00cec-ade0-4d81-aeb7-6f878840a63d}, !- Target Object + 15; !- Inlet Port + +OS:Node, + {3421655d-0815-4e73-8132-0e728179c69a}, !- Handle + Hot Water Loop Demand Inlet Node, !- Name + {c2c15690-ea3f-4080-9e8b-ea0b8a9324e0}, !- Inlet Port + {12ab7f5d-79f6-4d66-95a0-06f2771018f7}; !- Outlet Port + +OS:Node, + {e5f4ae0c-64b5-4008-8bc7-9d8bf41502d8}, !- Handle + Hot Water Loop Demand Outlet Node, !- Name + {f46545f0-2dfc-479d-9079-f25364ddbb2f}, !- Inlet Port + {56a96ba9-90a3-4bd3-8fc7-82ec5e869de0}; !- Outlet Port + +OS:Node, + {a4fad3f9-9c3e-4843-a98c-e81ed08a0d2c}, !- Handle + Hot Water Loop Coil Bypass Inlet Water Node, !- Name + {727b58a3-efa8-48da-b199-449820f29416}, !- Inlet Port + {e5d88584-6d7d-48b7-918f-939ce79468ad}; !- Outlet Port + +OS:Connector:Mixer, + {03745b25-6d6c-4ee7-beef-d5c7d38a36b3}, !- Handle + Connector Mixer 4, !- Name + {cdfada9f-eb4d-499d-b6e5-f9b8329c72ed}, !- Outlet Branch Name + {3854f541-e821-45c2-b338-9d56b2d96f9c}, !- Inlet Branch Name 1 + {16698194-9bde-4bbc-8f81-44a459190d2e}; !- Inlet Branch Name 2 + +OS:Connector:Splitter, + {fc7029a4-d6c5-4617-a6af-648f0520fd6a}, !- Handle + Connector Splitter 4, !- Name + {8aed65ca-610d-41d9-8009-be0ea1d672fc}, !- Inlet Branch Name + {727b58a3-efa8-48da-b199-449820f29416}, !- Outlet Branch Name 1 + {12748e21-5fa0-4b83-ba05-ccd030cad707}; !- Outlet Branch Name 2 + +OS:Connection, + {c2c15690-ea3f-4080-9e8b-ea0b8a9324e0}, !- Handle + {3fe00cec-ade0-4d81-aeb7-6f878840a63d}, !- Source Object + 17, !- Outlet Port + {3421655d-0815-4e73-8132-0e728179c69a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {727b58a3-efa8-48da-b199-449820f29416}, !- Handle + {fc7029a4-d6c5-4617-a6af-648f0520fd6a}, !- Source Object + 3, !- Outlet Port + {a4fad3f9-9c3e-4843-a98c-e81ed08a0d2c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {56a96ba9-90a3-4bd3-8fc7-82ec5e869de0}, !- Handle + {e5f4ae0c-64b5-4008-8bc7-9d8bf41502d8}, !- Source Object + 3, !- Outlet Port + {3fe00cec-ade0-4d81-aeb7-6f878840a63d}, !- Target Object + 18; !- Inlet Port + +OS:Sizing:Plant, + {263269ff-dff4-4223-b5be-b48e1a768615}, !- Handle + {3fe00cec-ade0-4d81-aeb7-6f878840a63d}, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 82.2222222222223, !- Design Loop Exit Temperature {C} + 11.1111111111111, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode + +OS:AvailabilityManagerAssignmentList, + {466c4a1a-f856-4c46-a4c1-ffb54d95416b}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 1; !- Name + +OS:Schedule:Ruleset, + {c414ee31-a41f-43d7-bcf8-3f97f6736790}, !- Handle + Hot Water Loop Temp - 180F, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + {5109d6a6-45e3-4296-8512-08dacf96e6d6}; !- Default Day Schedule Name + +OS:Schedule:Day, + {5109d6a6-45e3-4296-8512-08dacf96e6d6}, !- Handle + Hot Water Loop Temp - 180F Default, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 82.2222222222223; !- Value Until Time 1 + +OS:SetpointManager:Scheduled, + {6bfef42d-724f-4dbe-b73e-ce7e16e48f79}, !- Handle + Hot Water Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + {c414ee31-a41f-43d7-bcf8-3f97f6736790}, !- Schedule Name + {50877bf8-47ba-42e9-ad44-4c205b33f80b}; !- Setpoint Node or NodeList Name + +OS:Pump:VariableSpeed, + {a1776f00-2c02-49ee-93b2-f02b183a34e3}, !- Handle + Hot Water Loop Pump, !- Name + {732d67f8-cbbe-463a-b44d-a0c612c377b2}, !- Inlet Node Name + {d1cf068e-cf9e-4bf6-b9a5-7e1131811db4}, !- Outlet Node Name + 0.00756981941937287, !- Rated Flow Rate {m3/s} + 179344.0152, !- Rated Pump Head {Pa} + 1989.16015964097, !- Rated Power Consumption {W} + 0.875, !- Motor Efficiency + , !- Fraction of Motor Inefficiencies to Fluid Stream + 0, !- Coefficient 1 of the Part Load Performance Curve + 3.2485, !- Coefficient 2 of the Part Load Performance Curve + -4.7443, !- Coefficient 3 of the Part Load Performance Curve + 2.5294, !- Coefficient 4 of the Part Load Performance Curve + , !- Minimum Flow Rate {m3/s} + Intermittent, !- Pump Control Type + , !- Pump Flow Rate Schedule Name + , !- Pump Curve Name + , !- Impeller Diameter {m} + , !- VFD Control Type + , !- Pump RPM Schedule Name + , !- Minimum Pressure Schedule {Pa} + , !- Maximum Pressure Schedule {Pa} + , !- Minimum RPM Schedule {rev/min} + , !- Maximum RPM Schedule {rev/min} + , !- Zone Name + 0.5, !- Skin Loss Radiative Fraction + PowerPerFlowPerPressure, !- Design Power Sizing Method + 348701.1, !- Design Electric Power per Unit Flow Rate {W/(m3/s)} + 1.282051282, !- Design Shaft Power per Unit Flow Rate per Unit Head {W-s/m3-Pa} + 0, !- Design Minimum Flow Rate Fraction + General; !- End-Use Subcategory + +OS:Node, + {d20dd733-ee97-4ea0-8686-aee33de8cf5b}, !- Handle + Hot Water Loop Pump Outlet Water Node, !- Name + {d1cf068e-cf9e-4bf6-b9a5-7e1131811db4}, !- Inlet Port + {995e5ac2-569f-4c3e-bcb8-fd531fd611d6}; !- Outlet Port + +OS:Connection, + {732d67f8-cbbe-463a-b44d-a0c612c377b2}, !- Handle + {fec312d5-c62b-47b2-b0e0-72317d5810e2}, !- Source Object + 3, !- Outlet Port + {a1776f00-2c02-49ee-93b2-f02b183a34e3}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d1cf068e-cf9e-4bf6-b9a5-7e1131811db4}, !- Handle + {a1776f00-2c02-49ee-93b2-f02b183a34e3}, !- Source Object + 3, !- Outlet Port + {d20dd733-ee97-4ea0-8686-aee33de8cf5b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {995e5ac2-569f-4c3e-bcb8-fd531fd611d6}, !- Handle + {d20dd733-ee97-4ea0-8686-aee33de8cf5b}, !- Source Object + 3, !- Outlet Port + {bdd0a32d-5e9a-4a71-86ed-10e0bb8958a0}, !- Target Object + 2; !- Inlet Port + +OS:Boiler:HotWater, + {3bd35e42-7117-4527-acd1-c9e986bd6478}, !- Handle + Boiler 1181kBtu/hr 0.74 Thermal Eff 1181kBtu/hr 0.8 Combustion Eff, !- Name + NaturalGas, !- Fuel Type + 346083.060070424, !- Nominal Capacity {W} + 0.793, !- Nominal Thermal Efficiency + LeavingBoiler, !- Efficiency Curve Temperature Evaluation Variable + {353f28f4-9aae-45d9-931e-e142ef9ce700}, !- Normalized Boiler Efficiency Curve Name + 0.00756981941937287, !- Design Water Flow Rate {m3/s} + 0, !- Minimum Part Load Ratio + 1.2, !- Maximum Part Load Ratio + 1, !- Optimum Part Load Ratio + {9d47f5c5-f02b-4fcc-a5e4-33e0f38491d7}, !- Boiler Water Inlet Node Name + {2d242001-3043-47c0-a9ce-b3e6702841f8}, !- Boiler Water Outlet Node Name + 95.0000000000001, !- Water Outlet Upper Temperature Limit {C} + LeavingSetpointModulated, !- Boiler Flow Mode + 0, !- On Cycle Parasitic Electric Load {W} + 0, !- Off Cycle Parasitic Fuel Load {W} + 1, !- Sizing Factor + General; !- End-Use Subcategory + +OS:Node, + {76d2ebfa-845c-4279-be11-45e5ca6b221d}, !- Handle + Boiler Outlet Water Node, !- Name + {2d242001-3043-47c0-a9ce-b3e6702841f8}, !- Inlet Port + {4123668d-0dbf-47dd-837b-3d43c77fe992}; !- Outlet Port + +OS:Connection, + {9d47f5c5-f02b-4fcc-a5e4-33e0f38491d7}, !- Handle + {aed9ae6f-aff4-4e50-b7ab-cdf3c11d0196}, !- Source Object + 3, !- Outlet Port + {3bd35e42-7117-4527-acd1-c9e986bd6478}, !- Target Object + 11; !- Inlet Port + +OS:Connection, + {2d242001-3043-47c0-a9ce-b3e6702841f8}, !- Handle + {3bd35e42-7117-4527-acd1-c9e986bd6478}, !- Source Object + 12, !- Outlet Port + {76d2ebfa-845c-4279-be11-45e5ca6b221d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4123668d-0dbf-47dd-837b-3d43c77fe992}, !- Handle + {76d2ebfa-845c-4279-be11-45e5ca6b221d}, !- Source Object + 3, !- Outlet Port + {fb85b33e-ff88-441a-b478-692b6a141d92}, !- Target Object + 3; !- Inlet Port + +OS:Pipe:Adiabatic, + {9f8bf9be-e86c-4172-a9ae-8121cd3f1427}, !- Handle + Hot Water Loop Supply Equipment Bypass, !- Name + {694b3947-34dc-4d0f-874a-aa579665c94b}, !- Inlet Node Name + {aadb82af-32a3-4bff-b111-369db2b972d6}; !- Outlet Node Name + +OS:Node, + {ad5be365-bb7c-4b19-8d69-0101022c36fe}, !- Handle + Hot Water Loop Supply Equipment Bypass Inlet Water Node, !- Name + {28533192-2983-4392-a820-62779ba78f46}, !- Inlet Port + {694b3947-34dc-4d0f-874a-aa579665c94b}; !- Outlet Port + +OS:Connection, + {28533192-2983-4392-a820-62779ba78f46}, !- Handle + {bdd0a32d-5e9a-4a71-86ed-10e0bb8958a0}, !- Source Object + 4, !- Outlet Port + {ad5be365-bb7c-4b19-8d69-0101022c36fe}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {51bcc83d-d98c-4886-a437-f674320ccc9e}, !- Handle + Hot Water Loop Supply Equipment Bypass Outlet Water Node, !- Name + {aadb82af-32a3-4bff-b111-369db2b972d6}, !- Inlet Port + {d066c462-1d90-4bcf-9baf-4e5830685c3b}; !- Outlet Port + +OS:Connection, + {694b3947-34dc-4d0f-874a-aa579665c94b}, !- Handle + {ad5be365-bb7c-4b19-8d69-0101022c36fe}, !- Source Object + 3, !- Outlet Port + {9f8bf9be-e86c-4172-a9ae-8121cd3f1427}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {aadb82af-32a3-4bff-b111-369db2b972d6}, !- Handle + {9f8bf9be-e86c-4172-a9ae-8121cd3f1427}, !- Source Object + 3, !- Outlet Port + {51bcc83d-d98c-4886-a437-f674320ccc9e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d066c462-1d90-4bcf-9baf-4e5830685c3b}, !- Handle + {51bcc83d-d98c-4886-a437-f674320ccc9e}, !- Source Object + 3, !- Outlet Port + {fb85b33e-ff88-441a-b478-692b6a141d92}, !- Target Object + 4; !- Inlet Port + +OS:Pipe:Adiabatic, + {565a8b08-7d44-4e0c-a912-2870e417de03}, !- Handle + Hot Water Loop Coil Bypass, !- Name + {e5d88584-6d7d-48b7-918f-939ce79468ad}, !- Inlet Node Name + {0e9712b7-7d3a-43f9-9c44-f0ae699b6c46}; !- Outlet Node Name + +OS:Node, + {466480ac-de95-4139-8df7-6314430eb854}, !- Handle + Hot Water Loop Coil Bypass Outlet Water Node, !- Name + {0e9712b7-7d3a-43f9-9c44-f0ae699b6c46}, !- Inlet Port + {3854f541-e821-45c2-b338-9d56b2d96f9c}; !- Outlet Port + +OS:Connection, + {e5d88584-6d7d-48b7-918f-939ce79468ad}, !- Handle + {a4fad3f9-9c3e-4843-a98c-e81ed08a0d2c}, !- Source Object + 3, !- Outlet Port + {565a8b08-7d44-4e0c-a912-2870e417de03}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0e9712b7-7d3a-43f9-9c44-f0ae699b6c46}, !- Handle + {565a8b08-7d44-4e0c-a912-2870e417de03}, !- Source Object + 3, !- Outlet Port + {466480ac-de95-4139-8df7-6314430eb854}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3854f541-e821-45c2-b338-9d56b2d96f9c}, !- Handle + {466480ac-de95-4139-8df7-6314430eb854}, !- Source Object + 3, !- Outlet Port + {03745b25-6d6c-4ee7-beef-d5c7d38a36b3}, !- Target Object + 3; !- Inlet Port + +OS:Pipe:Adiabatic, + {eef8c665-cbd5-4812-872a-cd1823a0232c}, !- Handle + Hot Water Loop Supply Outlet, !- Name + {9511049a-7f1d-4edb-b048-6ad1cbaedebe}, !- Inlet Node Name + {d4f5d583-445f-424f-b31e-cda137904fc5}; !- Outlet Node Name + +OS:Node, + {e91c55af-cb0e-4d5a-8bb6-3d8b0c1241cc}, !- Handle + Hot Water Loop Supply Outlet Inlet Water Node, !- Name + {a376397e-7b52-4e55-ad0d-9445c4d02279}, !- Inlet Port + {9511049a-7f1d-4edb-b048-6ad1cbaedebe}; !- Outlet Port + +OS:Connection, + {a376397e-7b52-4e55-ad0d-9445c4d02279}, !- Handle + {fb85b33e-ff88-441a-b478-692b6a141d92}, !- Source Object + 2, !- Outlet Port + {e91c55af-cb0e-4d5a-8bb6-3d8b0c1241cc}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9511049a-7f1d-4edb-b048-6ad1cbaedebe}, !- Handle + {e91c55af-cb0e-4d5a-8bb6-3d8b0c1241cc}, !- Source Object + 3, !- Outlet Port + {eef8c665-cbd5-4812-872a-cd1823a0232c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d4f5d583-445f-424f-b31e-cda137904fc5}, !- Handle + {eef8c665-cbd5-4812-872a-cd1823a0232c}, !- Source Object + 3, !- Outlet Port + {50877bf8-47ba-42e9-ad44-4c205b33f80b}, !- Target Object + 2; !- Inlet Port + +OS:Pipe:Adiabatic, + {298246fe-5f4c-4c67-89cb-3e112e4f6f58}, !- Handle + Hot Water Loop Demand Inlet, !- Name + {12ab7f5d-79f6-4d66-95a0-06f2771018f7}, !- Inlet Node Name + {b8f2af9d-c1ed-4e66-babb-438526eee82a}; !- Outlet Node Name + +OS:Node, + {a5d9a639-80da-4a86-ae5a-e21305758edf}, !- Handle + Hot Water Loop Demand Inlet Outlet Water Node, !- Name + {b8f2af9d-c1ed-4e66-babb-438526eee82a}, !- Inlet Port + {8aed65ca-610d-41d9-8009-be0ea1d672fc}; !- Outlet Port + +OS:Connection, + {12ab7f5d-79f6-4d66-95a0-06f2771018f7}, !- Handle + {3421655d-0815-4e73-8132-0e728179c69a}, !- Source Object + 3, !- Outlet Port + {298246fe-5f4c-4c67-89cb-3e112e4f6f58}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b8f2af9d-c1ed-4e66-babb-438526eee82a}, !- Handle + {298246fe-5f4c-4c67-89cb-3e112e4f6f58}, !- Source Object + 3, !- Outlet Port + {a5d9a639-80da-4a86-ae5a-e21305758edf}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8aed65ca-610d-41d9-8009-be0ea1d672fc}, !- Handle + {a5d9a639-80da-4a86-ae5a-e21305758edf}, !- Source Object + 3, !- Outlet Port + {fc7029a4-d6c5-4617-a6af-648f0520fd6a}, !- Target Object + 2; !- Inlet Port + +OS:Pipe:Adiabatic, + {f182a4f3-869c-4c5f-98ab-b45d97b6bd9c}, !- Handle + Hot Water Loop Demand Outlet, !- Name + {d7092785-f622-4d2b-b03a-2af5f1af6b7a}, !- Inlet Node Name + {f46545f0-2dfc-479d-9079-f25364ddbb2f}; !- Outlet Node Name + +OS:Node, + {283f45c9-5bd9-4e50-ac0c-ea837a1af1a8}, !- Handle + Hot Water Loop Demand Outlet Inlet Water Node, !- Name + {cdfada9f-eb4d-499d-b6e5-f9b8329c72ed}, !- Inlet Port + {d7092785-f622-4d2b-b03a-2af5f1af6b7a}; !- Outlet Port + +OS:Connection, + {cdfada9f-eb4d-499d-b6e5-f9b8329c72ed}, !- Handle + {03745b25-6d6c-4ee7-beef-d5c7d38a36b3}, !- Source Object + 2, !- Outlet Port + {283f45c9-5bd9-4e50-ac0c-ea837a1af1a8}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d7092785-f622-4d2b-b03a-2af5f1af6b7a}, !- Handle + {283f45c9-5bd9-4e50-ac0c-ea837a1af1a8}, !- Source Object + 3, !- Outlet Port + {f182a4f3-869c-4c5f-98ab-b45d97b6bd9c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f46545f0-2dfc-479d-9079-f25364ddbb2f}, !- Handle + {f182a4f3-869c-4c5f-98ab-b45d97b6bd9c}, !- Source Object + 3, !- Outlet Port + {e5f4ae0c-64b5-4008-8bc7-9d8bf41502d8}, !- Target Object + 2; !- Inlet Port + +OS:PlantLoop, + {e55c6187-1156-4998-9bf4-9933739d8ecb}, !- Handle + Condenser Water Loop, !- Name + , !- Fluid Type + 0, !- Glycol Concentration + , !- User Defined Fluid Type + , !- Plant Equipment Operation Heating Load + , !- Plant Equipment Operation Cooling Load + , !- Primary Plant Equipment Operation Scheme + {386b3f5a-d186-40f1-b62b-3094efc11083}, !- Loop Temperature Setpoint Node Name + 80, !- Maximum Loop Temperature {C} + 5, !- Minimum Loop Temperature {C} + 0.0275577781643372, !- Maximum Loop Flow Rate {m3/s} + , !- Minimum Loop Flow Rate {m3/s} + 3.30693337972047, !- Plant Loop Volume {m3} + {0f40d633-51a7-4783-a8eb-e8b19269ae72}, !- Plant Side Inlet Node Name + {96355d15-265f-4f7d-a705-a861d96a2301}, !- Plant Side Outlet Node Name + , !- Plant Side Branch List Name + {ce43ba53-886a-4e2e-996d-b2465e9c4324}, !- Demand Side Inlet Node Name + {f4bf6073-9e43-44e0-90b7-3fa1f4cad082}, !- Demand Side Outlet Node Name + , !- Demand Side Branch List Name + , !- Demand Side Connector List Name + Optimal, !- Load Distribution Scheme + {e99a657e-f891-454b-b921-e71e242c25e4}, !- Availability Manager List Name + , !- Plant Loop Demand Calculation Scheme + , !- Common Pipe Simulation + , !- Pressure Simulation Type + , !- Plant Equipment Operation Heating Load Schedule + , !- Plant Equipment Operation Cooling Load Schedule + , !- Primary Plant Equipment Operation Scheme Schedule + , !- Component Setpoint Operation Scheme Schedule + {6f406660-b129-4a72-a2d7-40f8db5919ee}, !- Demand Mixer Name + {0f2269a1-5132-4f0b-b976-0719d5a737a7}, !- Demand Splitter Name + {fe2fee83-7a68-4351-983f-2250ae358c61}, !- Supply Mixer Name + {18b87e80-7432-4c68-8d9b-2f454f28e712}; !- Supply Splitter Name + +OS:Node, + {353c4a83-594a-45ee-9a0d-d311ad6fd91c}, !- Handle + Condenser Water Loop Supply Inlet Node, !- Name + {0f40d633-51a7-4783-a8eb-e8b19269ae72}, !- Inlet Port + {59332948-8909-4c76-81e0-8fe2b12493fb}; !- Outlet Port + +OS:Node, + {386b3f5a-d186-40f1-b62b-3094efc11083}, !- Handle + Condenser Water Loop Supply Outlet Node, !- Name + {1dd8a6c8-8aa2-41fe-bacf-eaaf7f8938f5}, !- Inlet Port + {96355d15-265f-4f7d-a705-a861d96a2301}; !- Outlet Port + +OS:Node, + {2d9476ad-8265-403b-a12a-e6e981fb3274}, !- Handle + Propeller or Axial Variable Speed Fan Open Cooling Tower Inlet Water Node, !- Name + {2e70c9e0-c280-411a-a736-faa99608f8b5}, !- Inlet Port + {07e083e0-6a3c-43b0-bd1b-e324abf1815a}; !- Outlet Port + +OS:Connector:Mixer, + {fe2fee83-7a68-4351-983f-2250ae358c61}, !- Handle + Connector Mixer 5, !- Name + {fc54b39e-6226-411b-bb94-1709ad039d12}, !- Outlet Branch Name + {35d8c588-ec64-4ffd-bcd6-ec4a6d79b43b}, !- Inlet Branch Name 1 + {00bdae50-5aec-4421-83b9-370443ff3d2f}; !- Inlet Branch Name 2 + +OS:Connector:Splitter, + {18b87e80-7432-4c68-8d9b-2f454f28e712}, !- Handle + Connector Splitter 5, !- Name + {878b820d-4db9-4e02-a628-cbd782734f45}, !- Inlet Branch Name + {2e70c9e0-c280-411a-a736-faa99608f8b5}, !- Outlet Branch Name 1 + {54ca19cc-9fb9-426e-a8cf-307e2547a0f2}; !- Outlet Branch Name 2 + +OS:Connection, + {0f40d633-51a7-4783-a8eb-e8b19269ae72}, !- Handle + {e55c6187-1156-4998-9bf4-9933739d8ecb}, !- Source Object + 14, !- Outlet Port + {353c4a83-594a-45ee-9a0d-d311ad6fd91c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2e70c9e0-c280-411a-a736-faa99608f8b5}, !- Handle + {18b87e80-7432-4c68-8d9b-2f454f28e712}, !- Source Object + 3, !- Outlet Port + {2d9476ad-8265-403b-a12a-e6e981fb3274}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {96355d15-265f-4f7d-a705-a861d96a2301}, !- Handle + {386b3f5a-d186-40f1-b62b-3094efc11083}, !- Source Object + 3, !- Outlet Port + {e55c6187-1156-4998-9bf4-9933739d8ecb}, !- Target Object + 15; !- Inlet Port + +OS:Node, + {e11b66ac-dab6-4e99-a5b8-b87c3fe1e3d7}, !- Handle + Condenser Water Loop Demand Inlet Node, !- Name + {ce43ba53-886a-4e2e-996d-b2465e9c4324}, !- Inlet Port + {472d4623-5e66-4aaa-950e-6901112f4c35}; !- Outlet Port + +OS:Node, + {0b0fc419-c5da-47fa-b100-b357b959e9b9}, !- Handle + Condenser Water Loop Demand Outlet Node, !- Name + {7d9caf5e-8c8b-43e4-b5b8-4face9ed0cf9}, !- Inlet Port + {f4bf6073-9e43-44e0-90b7-3fa1f4cad082}; !- Outlet Port + +OS:Node, + {c194f97d-bed4-4ad3-83ff-4081894c986a}, !- Handle + Condenser Water Loop Chiller Bypass Inlet Water Node, !- Name + {a1627ba5-05ec-47db-82e1-360ae72efb95}, !- Inlet Port + {6182b717-9dd2-49b0-b015-666ce212bcfe}; !- Outlet Port + +OS:Connector:Mixer, + {6f406660-b129-4a72-a2d7-40f8db5919ee}, !- Handle + Connector Mixer 6, !- Name + {1bd9a395-1325-4e0d-bc4b-a855f47d2ac6}, !- Outlet Branch Name + {a3c411e6-8917-4503-baa6-cd7057ec7c23}, !- Inlet Branch Name 1 + {fcf44e7f-c490-4124-908b-52c301ee925a}; !- Inlet Branch Name 2 + +OS:Connector:Splitter, + {0f2269a1-5132-4f0b-b976-0719d5a737a7}, !- Handle + Connector Splitter 6, !- Name + {9062b79e-0b10-4864-8a1d-06b9ef51a460}, !- Inlet Branch Name + {a1627ba5-05ec-47db-82e1-360ae72efb95}, !- Outlet Branch Name 1 + {832cefc3-de89-4f9c-afad-068120313008}; !- Outlet Branch Name 2 + +OS:Connection, + {ce43ba53-886a-4e2e-996d-b2465e9c4324}, !- Handle + {e55c6187-1156-4998-9bf4-9933739d8ecb}, !- Source Object + 17, !- Outlet Port + {e11b66ac-dab6-4e99-a5b8-b87c3fe1e3d7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a1627ba5-05ec-47db-82e1-360ae72efb95}, !- Handle + {0f2269a1-5132-4f0b-b976-0719d5a737a7}, !- Source Object + 3, !- Outlet Port + {c194f97d-bed4-4ad3-83ff-4081894c986a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f4bf6073-9e43-44e0-90b7-3fa1f4cad082}, !- Handle + {0b0fc419-c5da-47fa-b100-b357b959e9b9}, !- Source Object + 3, !- Outlet Port + {e55c6187-1156-4998-9bf4-9933739d8ecb}, !- Target Object + 18; !- Inlet Port + +OS:Sizing:Plant, + {e0ef9515-9265-4a0c-8f01-e20854599865}, !- Handle + {e55c6187-1156-4998-9bf4-9933739d8ecb}, !- Plant or Condenser Loop Name + Condenser, !- Loop Type + 29.4444444444445, !- Design Loop Exit Temperature {C} + 5.55555555555556, !- Loop Design Temperature Difference {deltaC} + Coincident, !- Sizing Option + 6, !- Zone Timesteps in Averaging Window + GlobalCoolingSizingFactor; !- Coincident Sizing Factor Mode + +OS:AvailabilityManagerAssignmentList, + {e99a657e-f891-454b-b921-e71e242c25e4}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 2; !- Name + +OS:SetpointManager:FollowOutdoorAirTemperature, + {dd16fa29-00b0-4a5e-a1ac-f53d793e0c49}, !- Handle + Condenser Water Loop Setpoint Manager Follow OATwb with 6.9F Approach, !- Name + Temperature, !- Control Variable + OutdoorAirWetBulb, !- Reference Temperature Type + 3.84444444444446, !- Offset Temperature Difference {deltaC} + 29.4444444444445, !- Maximum Setpoint Temperature {C} + 21.1111111111111, !- Minimum Setpoint Temperature {C} + {386b3f5a-d186-40f1-b62b-3094efc11083}; !- Setpoint Node or NodeList Name + +OS:Pump:ConstantSpeed, + {b21d9433-69b1-4b0a-8bbc-3a2fd4747cee}, !- Handle + Condenser Water Loop Constant Pump, !- Name + {59332948-8909-4c76-81e0-8fe2b12493fb}, !- Inlet Node Name + {04f58077-5799-4d56-9ab0-a840e6e25088}, !- Outlet Node Name + 0.0275577781643372, !- Rated Flow Rate {m3/s} + 148556.625924, !- Rated Pump Head {Pa} + 5864.33253386659, !- Rated Power Consumption {W} + 0.895, !- Motor Efficiency + 0, !- Fraction of Motor Inefficiencies to Fluid Stream + Intermittent, !- Pump Control Type + , !- Pump Flow Rate Schedule + , !- Pump Curve + , !- Impeller Diameter {m} + , !- Rotational Speed {rev/min} + , !- Zone + , !- Skin Loss Radiative Fraction + PowerPerFlowPerPressure, !- Design Power Sizing Method + 348701.1, !- Design Electric Power per Unit Flow Rate {W/(m3/s)} + 1.282051282, !- Design Shaft Power per Unit Flow Rate per Unit Head {W-s/m3-Pa} + General; !- End-Use Subcategory + +OS:Node, + {0dd1d3f0-2183-4038-85f2-0c0c5db520cb}, !- Handle + Condenser Water Loop Constant Pump Outlet Water Node, !- Name + {04f58077-5799-4d56-9ab0-a840e6e25088}, !- Inlet Port + {878b820d-4db9-4e02-a628-cbd782734f45}; !- Outlet Port + +OS:Connection, + {59332948-8909-4c76-81e0-8fe2b12493fb}, !- Handle + {353c4a83-594a-45ee-9a0d-d311ad6fd91c}, !- Source Object + 3, !- Outlet Port + {b21d9433-69b1-4b0a-8bbc-3a2fd4747cee}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {04f58077-5799-4d56-9ab0-a840e6e25088}, !- Handle + {b21d9433-69b1-4b0a-8bbc-3a2fd4747cee}, !- Source Object + 3, !- Outlet Port + {0dd1d3f0-2183-4038-85f2-0c0c5db520cb}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {878b820d-4db9-4e02-a628-cbd782734f45}, !- Handle + {0dd1d3f0-2183-4038-85f2-0c0c5db520cb}, !- Source Object + 3, !- Outlet Port + {18b87e80-7432-4c68-8d9b-2f454f28e712}, !- Target Object + 2; !- Inlet Port + +OS:CoolingTower:VariableSpeed, + {33ffc419-0209-4862-9a92-3fbea2c9703d}, !- Handle + Propeller or Axial Variable Speed Fan Open Cooling Tower 38.2 gpm/hp 38.2 gpm/hp, !- Name + {07e083e0-6a3c-43b0-bd1b-e324abf1815a}, !- Water Inlet Node + {ef7d2dde-98cf-4c11-86d0-553c4bf2aa8b}, !- Water Outlet Node + CoolToolsCrossFlow, !- Model Type + , !- Model Coefficient + 25.6, !- Design Inlet Air Wet-Bulb Temperature {C} + 3.84444444444446, !- Design Approach Temperature {deltaC} + 5.55555555555556, !- Design Range Temperature {deltaC} + 0.0275577781643372, !- Design Water Flow Rate {m3/s} + 22.2127385995957, !- Design Air Flow Rate {m3/s} + 8416.85021003748, !- Design Fan Power {W} + {50b0965c-47fb-422a-8e51-1b29a19f0b29}, !- Fan Power Ratio Function of Air Flow Rate Ratio Curve + 0.2, !- Minimum Air Flow Rate Ratio + 0.125, !- Fraction of Tower Capacity in Free Convection Regime + 0, !- Basin Heater Capacity {W/K} + 2, !- Basin Heater Setpoint Temperature {C} + , !- Basin Heater Operating Schedule + SaturatedExit, !- Evaporation Loss Mode + 0.2, !- Evaporation Loss Factor {percent/K} + 0.008, !- Drift Loss Percent {percent} + ConcentrationRatio, !- Blowdown Calculation Mode + 3, !- Blowdown Concentration Ratio + , !- Blowdown Makeup Water Usage Schedule + , !- Supply Water Storage Tank + , !- Outdoor Air Inlet Node + 1, !- Number of Cells + , !- Cell Control + , !- Cell Minimum Water Flow Rate Fraction + , !- Cell Maximum Water Flow Rate Fraction + 1, !- Sizing Factor + General; !- End-Use Subcategory + +OS:Curve:Cubic, + {50b0965c-47fb-422a-8e51-1b29a19f0b29}, !- Handle + VSD-TWR-FAN-FPLR, !- Name + 0.33162901, !- Coefficient1 Constant + -0.88567609, !- Coefficient2 x + 0.60556507, !- Coefficient3 x**2 + 0.9484823, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:Node, + {b6319ad9-e9ad-4c1a-9374-f10b589e678c}, !- Handle + Propeller or Axial Variable Speed Fan Open Cooling Tower Outlet Water Node, !- Name + {ef7d2dde-98cf-4c11-86d0-553c4bf2aa8b}, !- Inlet Port + {35d8c588-ec64-4ffd-bcd6-ec4a6d79b43b}; !- Outlet Port + +OS:Connection, + {07e083e0-6a3c-43b0-bd1b-e324abf1815a}, !- Handle + {2d9476ad-8265-403b-a12a-e6e981fb3274}, !- Source Object + 3, !- Outlet Port + {33ffc419-0209-4862-9a92-3fbea2c9703d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ef7d2dde-98cf-4c11-86d0-553c4bf2aa8b}, !- Handle + {33ffc419-0209-4862-9a92-3fbea2c9703d}, !- Source Object + 3, !- Outlet Port + {b6319ad9-e9ad-4c1a-9374-f10b589e678c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {35d8c588-ec64-4ffd-bcd6-ec4a6d79b43b}, !- Handle + {b6319ad9-e9ad-4c1a-9374-f10b589e678c}, !- Source Object + 3, !- Outlet Port + {fe2fee83-7a68-4351-983f-2250ae358c61}, !- Target Object + 3; !- Inlet Port + +OS:Pipe:Adiabatic, + {cedbea62-d833-405a-a525-e2fc28da7b32}, !- Handle + Condenser Water Loop Cooling Tower Bypass, !- Name + {0d9da4df-b696-4927-8d5f-405bb6333297}, !- Inlet Node Name + {c302cfd4-f889-4b8c-a9d0-2be06537d703}; !- Outlet Node Name + +OS:Node, + {febb8b5a-3aeb-4d67-8b53-163fbf08d655}, !- Handle + Condenser Water Loop Cooling Tower Bypass Inlet Water Node, !- Name + {54ca19cc-9fb9-426e-a8cf-307e2547a0f2}, !- Inlet Port + {0d9da4df-b696-4927-8d5f-405bb6333297}; !- Outlet Port + +OS:Connection, + {54ca19cc-9fb9-426e-a8cf-307e2547a0f2}, !- Handle + {18b87e80-7432-4c68-8d9b-2f454f28e712}, !- Source Object + 4, !- Outlet Port + {febb8b5a-3aeb-4d67-8b53-163fbf08d655}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {3cc5d3d6-bf5c-416b-9b90-01095d6a2f50}, !- Handle + Condenser Water Loop Cooling Tower Bypass Outlet Water Node, !- Name + {c302cfd4-f889-4b8c-a9d0-2be06537d703}, !- Inlet Port + {00bdae50-5aec-4421-83b9-370443ff3d2f}; !- Outlet Port + +OS:Connection, + {0d9da4df-b696-4927-8d5f-405bb6333297}, !- Handle + {febb8b5a-3aeb-4d67-8b53-163fbf08d655}, !- Source Object + 3, !- Outlet Port + {cedbea62-d833-405a-a525-e2fc28da7b32}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c302cfd4-f889-4b8c-a9d0-2be06537d703}, !- Handle + {cedbea62-d833-405a-a525-e2fc28da7b32}, !- Source Object + 3, !- Outlet Port + {3cc5d3d6-bf5c-416b-9b90-01095d6a2f50}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00bdae50-5aec-4421-83b9-370443ff3d2f}, !- Handle + {3cc5d3d6-bf5c-416b-9b90-01095d6a2f50}, !- Source Object + 3, !- Outlet Port + {fe2fee83-7a68-4351-983f-2250ae358c61}, !- Target Object + 4; !- Inlet Port + +OS:Pipe:Adiabatic, + {4e2c845e-7597-4b37-ad9b-d27dd9036cc2}, !- Handle + Condenser Water Loop Chiller Bypass, !- Name + {6182b717-9dd2-49b0-b015-666ce212bcfe}, !- Inlet Node Name + {65e36c07-89ba-43b7-96d8-6d1137ad2a53}; !- Outlet Node Name + +OS:Node, + {40b3fbc9-1958-4410-b2cd-8618c6bc2dd6}, !- Handle + Condenser Water Loop Chiller Bypass Outlet Water Node, !- Name + {65e36c07-89ba-43b7-96d8-6d1137ad2a53}, !- Inlet Port + {a3c411e6-8917-4503-baa6-cd7057ec7c23}; !- Outlet Port + +OS:Connection, + {6182b717-9dd2-49b0-b015-666ce212bcfe}, !- Handle + {c194f97d-bed4-4ad3-83ff-4081894c986a}, !- Source Object + 3, !- Outlet Port + {4e2c845e-7597-4b37-ad9b-d27dd9036cc2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {65e36c07-89ba-43b7-96d8-6d1137ad2a53}, !- Handle + {4e2c845e-7597-4b37-ad9b-d27dd9036cc2}, !- Source Object + 3, !- Outlet Port + {40b3fbc9-1958-4410-b2cd-8618c6bc2dd6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a3c411e6-8917-4503-baa6-cd7057ec7c23}, !- Handle + {40b3fbc9-1958-4410-b2cd-8618c6bc2dd6}, !- Source Object + 3, !- Outlet Port + {6f406660-b129-4a72-a2d7-40f8db5919ee}, !- Target Object + 3; !- Inlet Port + +OS:Pipe:Adiabatic, + {67febc8a-268b-4727-9868-4cd576f8ca9d}, !- Handle + Condenser Water Loop Supply Outlet, !- Name + {b4ca7fd7-aaff-474c-bc72-2606595cd07c}, !- Inlet Node Name + {1dd8a6c8-8aa2-41fe-bacf-eaaf7f8938f5}; !- Outlet Node Name + +OS:Node, + {2a722c05-8d76-4032-8454-74f3f730af12}, !- Handle + Condenser Water Loop Supply Outlet Inlet Water Node, !- Name + {fc54b39e-6226-411b-bb94-1709ad039d12}, !- Inlet Port + {b4ca7fd7-aaff-474c-bc72-2606595cd07c}; !- Outlet Port + +OS:Connection, + {fc54b39e-6226-411b-bb94-1709ad039d12}, !- Handle + {fe2fee83-7a68-4351-983f-2250ae358c61}, !- Source Object + 2, !- Outlet Port + {2a722c05-8d76-4032-8454-74f3f730af12}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b4ca7fd7-aaff-474c-bc72-2606595cd07c}, !- Handle + {2a722c05-8d76-4032-8454-74f3f730af12}, !- Source Object + 3, !- Outlet Port + {67febc8a-268b-4727-9868-4cd576f8ca9d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1dd8a6c8-8aa2-41fe-bacf-eaaf7f8938f5}, !- Handle + {67febc8a-268b-4727-9868-4cd576f8ca9d}, !- Source Object + 3, !- Outlet Port + {386b3f5a-d186-40f1-b62b-3094efc11083}, !- Target Object + 2; !- Inlet Port + +OS:Pipe:Adiabatic, + {6b8e3c88-2fbb-47e1-924e-0cea97239809}, !- Handle + Condenser Water Loop Demand Inlet, !- Name + {472d4623-5e66-4aaa-950e-6901112f4c35}, !- Inlet Node Name + {5e40d4e9-1c09-442f-ad67-96be32cb6e70}; !- Outlet Node Name + +OS:Node, + {457a00ae-3c6f-42c2-9984-7e774d4f8028}, !- Handle + Condenser Water Loop Demand Inlet Outlet Water Node, !- Name + {5e40d4e9-1c09-442f-ad67-96be32cb6e70}, !- Inlet Port + {9062b79e-0b10-4864-8a1d-06b9ef51a460}; !- Outlet Port + +OS:Connection, + {472d4623-5e66-4aaa-950e-6901112f4c35}, !- Handle + {e11b66ac-dab6-4e99-a5b8-b87c3fe1e3d7}, !- Source Object + 3, !- Outlet Port + {6b8e3c88-2fbb-47e1-924e-0cea97239809}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {5e40d4e9-1c09-442f-ad67-96be32cb6e70}, !- Handle + {6b8e3c88-2fbb-47e1-924e-0cea97239809}, !- Source Object + 3, !- Outlet Port + {457a00ae-3c6f-42c2-9984-7e774d4f8028}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9062b79e-0b10-4864-8a1d-06b9ef51a460}, !- Handle + {457a00ae-3c6f-42c2-9984-7e774d4f8028}, !- Source Object + 3, !- Outlet Port + {0f2269a1-5132-4f0b-b976-0719d5a737a7}, !- Target Object + 2; !- Inlet Port + +OS:Pipe:Adiabatic, + {bb04932c-17d8-4449-9f40-71a27a32bd19}, !- Handle + Condenser Water Loop Demand Outlet, !- Name + {4e765a78-414b-452e-9a45-879407fc82c0}, !- Inlet Node Name + {7d9caf5e-8c8b-43e4-b5b8-4face9ed0cf9}; !- Outlet Node Name + +OS:Node, + {7ff9fac4-9af4-44d5-8a6a-dd563a7c7ca6}, !- Handle + Condenser Water Loop Demand Outlet Inlet Water Node, !- Name + {1bd9a395-1325-4e0d-bc4b-a855f47d2ac6}, !- Inlet Port + {4e765a78-414b-452e-9a45-879407fc82c0}; !- Outlet Port + +OS:Connection, + {1bd9a395-1325-4e0d-bc4b-a855f47d2ac6}, !- Handle + {6f406660-b129-4a72-a2d7-40f8db5919ee}, !- Source Object + 2, !- Outlet Port + {7ff9fac4-9af4-44d5-8a6a-dd563a7c7ca6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4e765a78-414b-452e-9a45-879407fc82c0}, !- Handle + {7ff9fac4-9af4-44d5-8a6a-dd563a7c7ca6}, !- Source Object + 3, !- Outlet Port + {bb04932c-17d8-4449-9f40-71a27a32bd19}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7d9caf5e-8c8b-43e4-b5b8-4face9ed0cf9}, !- Handle + {bb04932c-17d8-4449-9f40-71a27a32bd19}, !- Source Object + 3, !- Outlet Port + {0b0fc419-c5da-47fa-b100-b357b959e9b9}, !- Target Object + 2; !- Inlet Port + +OS:PlantLoop, + {46b3bcb8-6938-4462-abb7-0ff04afd5ae5}, !- Handle + Chilled Water Loop, !- Name + , !- Fluid Type + 0, !- Glycol Concentration + , !- User Defined Fluid Type + , !- Plant Equipment Operation Heating Load + , !- Plant Equipment Operation Cooling Load + , !- Primary Plant Equipment Operation Scheme + {a479939b-bb25-459b-b287-4e88d4d883c7}, !- Loop Temperature Setpoint Node Name + 40, !- Maximum Loop Temperature {C} + 1, !- Minimum Loop Temperature {C} + 0.0176399901557234, !- Maximum Loop Flow Rate {m3/s} + , !- Minimum Loop Flow Rate {m3/s} + 2.11679881868681, !- Plant Loop Volume {m3} + {ef7d7c9c-d05c-4014-b7d9-d5799f2d9e99}, !- Plant Side Inlet Node Name + {2e255c87-7e23-4b8f-b79a-ef63026377fb}, !- Plant Side Outlet Node Name + , !- Plant Side Branch List Name + {720e686d-bcef-4b95-9a60-f13b32a16a3f}, !- Demand Side Inlet Node Name + {4b5a42ad-bcd1-40a8-9d71-c3bca6a8357a}, !- Demand Side Outlet Node Name + , !- Demand Side Branch List Name + , !- Demand Side Connector List Name + Optimal, !- Load Distribution Scheme + {1a0357c2-d96c-4dfd-8549-1b895b4b0b55}, !- Availability Manager List Name + , !- Plant Loop Demand Calculation Scheme + CommonPipe, !- Common Pipe Simulation + , !- Pressure Simulation Type + , !- Plant Equipment Operation Heating Load Schedule + , !- Plant Equipment Operation Cooling Load Schedule + , !- Primary Plant Equipment Operation Scheme Schedule + , !- Component Setpoint Operation Scheme Schedule + {d641fc75-7ed0-41f5-b24d-cca20e4ee544}, !- Demand Mixer Name + {d1de74b3-6e5e-4ff1-8469-a18a7c48cc97}, !- Demand Splitter Name + {9b975b03-76e7-4245-a0c2-7b54bca75a2d}, !- Supply Mixer Name + {7063287b-04a4-4ee5-b81b-20ee0e764749}; !- Supply Splitter Name + +OS:Node, + {d2f30241-7d11-42fe-bf8e-82757b274910}, !- Handle + Chilled Water Loop Supply Inlet Node, !- Name + {ef7d7c9c-d05c-4014-b7d9-d5799f2d9e99}, !- Inlet Port + {000d0ccb-b705-43ec-9b4a-5af68aad0e3e}; !- Outlet Port + +OS:Node, + {a479939b-bb25-459b-b287-4e88d4d883c7}, !- Handle + Chilled Water Loop Supply Outlet Node, !- Name + {e98767a3-dcb1-44f5-8c02-c8604c85a062}, !- Inlet Port + {2e255c87-7e23-4b8f-b79a-ef63026377fb}; !- Outlet Port + +OS:Node, + {118bfc65-846f-41d9-84e2-69d4225857fb}, !- Handle + ComStock DOE Ref Pre-1980 WaterCooled Rotary Screw Chiller 0 Supply Inlet Water Node, !- Name + {a6e0e4f1-5818-4e44-aa44-25cda643585b}, !- Inlet Port + {3318329a-1fc2-4bc6-b3be-08b57482abc0}; !- Outlet Port + +OS:Connector:Mixer, + {9b975b03-76e7-4245-a0c2-7b54bca75a2d}, !- Handle + Connector Mixer 7, !- Name + {e6c3963d-206d-4aaf-8b6b-7d71ada967e2}, !- Outlet Branch Name + {4556dca7-2726-4996-803f-1c9a20e2e137}, !- Inlet Branch Name 1 + {32dd6c35-46ad-47a9-b676-5d07d36cf370}; !- Inlet Branch Name 2 + +OS:Connector:Splitter, + {7063287b-04a4-4ee5-b81b-20ee0e764749}, !- Handle + Connector Splitter 7, !- Name + {798fb9d3-8426-4fd4-b561-8b86f17e8535}, !- Inlet Branch Name + {a6e0e4f1-5818-4e44-aa44-25cda643585b}, !- Outlet Branch Name 1 + {a4ec8cc8-33ed-44c2-8dcc-be08a9d85545}; !- Outlet Branch Name 2 + +OS:Connection, + {ef7d7c9c-d05c-4014-b7d9-d5799f2d9e99}, !- Handle + {46b3bcb8-6938-4462-abb7-0ff04afd5ae5}, !- Source Object + 14, !- Outlet Port + {d2f30241-7d11-42fe-bf8e-82757b274910}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a6e0e4f1-5818-4e44-aa44-25cda643585b}, !- Handle + {7063287b-04a4-4ee5-b81b-20ee0e764749}, !- Source Object + 3, !- Outlet Port + {118bfc65-846f-41d9-84e2-69d4225857fb}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2e255c87-7e23-4b8f-b79a-ef63026377fb}, !- Handle + {a479939b-bb25-459b-b287-4e88d4d883c7}, !- Source Object + 3, !- Outlet Port + {46b3bcb8-6938-4462-abb7-0ff04afd5ae5}, !- Target Object + 15; !- Inlet Port + +OS:Node, + {bfa1c108-0a0c-4212-8677-57fe636f1dfd}, !- Handle + Chilled Water Loop Demand Inlet Node, !- Name + {720e686d-bcef-4b95-9a60-f13b32a16a3f}, !- Inlet Port + {2e11973a-af6a-459f-a3d2-77ec1aa0d1d3}; !- Outlet Port + +OS:Node, + {fa1a0f8c-f3cb-47bc-a6ee-245ba2e36460}, !- Handle + Chilled Water Loop Demand Outlet Node, !- Name + {10abc554-196a-434d-8898-768842c61922}, !- Inlet Port + {4b5a42ad-bcd1-40a8-9d71-c3bca6a8357a}; !- Outlet Port + +OS:Node, + {e956da2c-53c2-4b5d-a93c-8bd8d645ed6c}, !- Handle + Chilled Water Loop Coil Bypass Inlet Water Node, !- Name + {c3298776-6ed6-431e-b05a-9cf674b51bc1}, !- Inlet Port + {fe5697d1-7bf7-4827-b132-73912e55bfd2}; !- Outlet Port + +OS:Connector:Mixer, + {d641fc75-7ed0-41f5-b24d-cca20e4ee544}, !- Handle + Connector Mixer 8, !- Name + {f5c88139-3188-48e6-8a84-89712fe5e6ec}, !- Outlet Branch Name + {e73fd547-2375-4ccb-98c3-db79b75ca968}, !- Inlet Branch Name 1 + {b4f0f7a0-2331-44ab-a8fb-71cbd559fa67}; !- Inlet Branch Name 2 + +OS:Connector:Splitter, + {d1de74b3-6e5e-4ff1-8469-a18a7c48cc97}, !- Handle + Connector Splitter 8, !- Name + {6086b1f5-2606-47b8-8386-2e238e67ee68}, !- Inlet Branch Name + {c3298776-6ed6-431e-b05a-9cf674b51bc1}, !- Outlet Branch Name 1 + {764b9381-da7a-44f4-9af1-ebe783e7764a}; !- Outlet Branch Name 2 + +OS:Connection, + {720e686d-bcef-4b95-9a60-f13b32a16a3f}, !- Handle + {46b3bcb8-6938-4462-abb7-0ff04afd5ae5}, !- Source Object + 17, !- Outlet Port + {bfa1c108-0a0c-4212-8677-57fe636f1dfd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c3298776-6ed6-431e-b05a-9cf674b51bc1}, !- Handle + {d1de74b3-6e5e-4ff1-8469-a18a7c48cc97}, !- Source Object + 3, !- Outlet Port + {e956da2c-53c2-4b5d-a93c-8bd8d645ed6c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4b5a42ad-bcd1-40a8-9d71-c3bca6a8357a}, !- Handle + {fa1a0f8c-f3cb-47bc-a6ee-245ba2e36460}, !- Source Object + 3, !- Outlet Port + {46b3bcb8-6938-4462-abb7-0ff04afd5ae5}, !- Target Object + 18; !- Inlet Port + +OS:Sizing:Plant, + {d19b58c5-0f76-4dee-a158-752e745b8e8b}, !- Handle + {46b3bcb8-6938-4462-abb7-0ff04afd5ae5}, !- Plant or Condenser Loop Name + Cooling, !- Loop Type + 6.66666666666669, !- Design Loop Exit Temperature {C} + 5.61111111111111, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode + +OS:AvailabilityManagerAssignmentList, + {1a0357c2-d96c-4dfd-8549-1b895b4b0b55}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 3; !- Name + +OS:Schedule:Ruleset, + {fb3f11ca-c005-401b-ace7-3afede5cc7e4}, !- Handle + Chilled Water Loop Temp - 44F, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + {8f30696c-4f67-4b33-8b40-9420b883ac55}; !- Default Day Schedule Name + +OS:Schedule:Day, + {8f30696c-4f67-4b33-8b40-9420b883ac55}, !- Handle + Chilled Water Loop Temp - 44F Default, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 6.66666666666669; !- Value Until Time 1 + +OS:SetpointManager:Scheduled, + {3cc66f9a-7af8-46e9-a51a-7df16a1eec4a}, !- Handle + Chilled Water Loop Setpoint Manager, !- Name + Temperature, !- Control Variable + {fb3f11ca-c005-401b-ace7-3afede5cc7e4}, !- Schedule Name + {a479939b-bb25-459b-b287-4e88d4d883c7}; !- Setpoint Node or NodeList Name + +OS:Pump:ConstantSpeed, + {088db631-f541-4c16-963d-e5f6aad6d343}, !- Handle + Chilled Water Loop Primary Pump, !- Name + {000d0ccb-b705-43ec-9b4a-5af68aad0e3e}, !- Inlet Node Name + {d73efecd-c649-4db9-8e46-041411f9a6b7}, !- Outlet Node Name + 0.0176399901557234, !- Rated Flow Rate {m3/s} + 44836.0038, !- Rated Pump Head {Pa} + 1207.1225055286, !- Rated Power Consumption {W} + 0.84, !- Motor Efficiency + 0, !- Fraction of Motor Inefficiencies to Fluid Stream + Intermittent, !- Pump Control Type + , !- Pump Flow Rate Schedule + , !- Pump Curve + , !- Impeller Diameter {m} + , !- Rotational Speed {rev/min} + , !- Zone + , !- Skin Loss Radiative Fraction + PowerPerFlowPerPressure, !- Design Power Sizing Method + 348701.1, !- Design Electric Power per Unit Flow Rate {W/(m3/s)} + 1.282051282, !- Design Shaft Power per Unit Flow Rate per Unit Head {W-s/m3-Pa} + General; !- End-Use Subcategory + +OS:Node, + {a4c9c964-a732-4051-823e-b52fca511f27}, !- Handle + Chilled Water Loop Primary Pump Outlet Water Node, !- Name + {d73efecd-c649-4db9-8e46-041411f9a6b7}, !- Inlet Port + {798fb9d3-8426-4fd4-b561-8b86f17e8535}; !- Outlet Port + +OS:Connection, + {000d0ccb-b705-43ec-9b4a-5af68aad0e3e}, !- Handle + {d2f30241-7d11-42fe-bf8e-82757b274910}, !- Source Object + 3, !- Outlet Port + {088db631-f541-4c16-963d-e5f6aad6d343}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d73efecd-c649-4db9-8e46-041411f9a6b7}, !- Handle + {088db631-f541-4c16-963d-e5f6aad6d343}, !- Source Object + 3, !- Outlet Port + {a4c9c964-a732-4051-823e-b52fca511f27}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {798fb9d3-8426-4fd4-b561-8b86f17e8535}, !- Handle + {a4c9c964-a732-4051-823e-b52fca511f27}, !- Source Object + 3, !- Outlet Port + {7063287b-04a4-4ee5-b81b-20ee0e764749}, !- Target Object + 2; !- Inlet Port + +OS:Pump:VariableSpeed, + {9e3fa752-16d1-41b2-8be8-964df6ab0189}, !- Handle + Chilled Water Loop Secondary Pump, !- Name + {dcdc0ab8-dfab-4c08-89b1-e3bf23e40b99}, !- Inlet Node Name + {21fdaf53-97a8-4753-a2af-a547edff4be5}, !- Outlet Node Name + 0.0176399901557234, !- Rated Flow Rate {m3/s} + 134508.0114, !- Rated Pump Head {Pa} + 3476.51281592238, !- Rated Power Consumption {W} + 0.875, !- Motor Efficiency + 0, !- Fraction of Motor Inefficiencies to Fluid Stream + 0, !- Coefficient 1 of the Part Load Performance Curve + 0.5726, !- Coefficient 2 of the Part Load Performance Curve + -0.301, !- Coefficient 3 of the Part Load Performance Curve + 0.7347, !- Coefficient 4 of the Part Load Performance Curve + , !- Minimum Flow Rate {m3/s} + Intermittent, !- Pump Control Type + , !- Pump Flow Rate Schedule Name + , !- Pump Curve Name + , !- Impeller Diameter {m} + , !- VFD Control Type + , !- Pump RPM Schedule Name + , !- Minimum Pressure Schedule {Pa} + , !- Maximum Pressure Schedule {Pa} + , !- Minimum RPM Schedule {rev/min} + , !- Maximum RPM Schedule {rev/min} + , !- Zone Name + 0.5, !- Skin Loss Radiative Fraction + PowerPerFlowPerPressure, !- Design Power Sizing Method + 348701.1, !- Design Electric Power per Unit Flow Rate {W/(m3/s)} + 1.282051282, !- Design Shaft Power per Unit Flow Rate per Unit Head {W-s/m3-Pa} + 0, !- Design Minimum Flow Rate Fraction + General; !- End-Use Subcategory + +OS:Node, + {836d60f7-b159-4e47-a78b-beb4c8963ea1}, !- Handle + Chilled Water Loop Secondary Pump Outlet Water Node, !- Name + {21fdaf53-97a8-4753-a2af-a547edff4be5}, !- Inlet Port + {6086b1f5-2606-47b8-8386-2e238e67ee68}; !- Outlet Port + +OS:Connection, + {21fdaf53-97a8-4753-a2af-a547edff4be5}, !- Handle + {9e3fa752-16d1-41b2-8be8-964df6ab0189}, !- Source Object + 3, !- Outlet Port + {836d60f7-b159-4e47-a78b-beb4c8963ea1}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6086b1f5-2606-47b8-8386-2e238e67ee68}, !- Handle + {836d60f7-b159-4e47-a78b-beb4c8963ea1}, !- Source Object + 3, !- Outlet Port + {d1de74b3-6e5e-4ff1-8469-a18a7c48cc97}, !- Target Object + 2; !- Inlet Port + +OS:Chiller:Electric:EIR, + {70a54128-0485-4c1d-94ba-7564f1a1774f}, !- Handle + ComStock DOE Ref Pre-1980 WaterCooled Rotary Screw Chiller 0 116tons 0.852kW/ton 118tons 0.926kW/ton, !- Name + 415468.497407846, !- Reference Capacity {W} + 3.79805615550756, !- Reference COP {W/W} + 6.66666666666669, !- Reference Leaving Chilled Water Temperature {C} + 35.0000000000001, !- Reference Entering Condenser Fluid Temperature {C} + 0.0176399901557234, !- Reference Chilled Water Flow Rate {m3/s} + 0.0226038578704781, !- Reference Condenser Fluid Flow Rate {m3/s} + {8cf9e7ef-f3ac-4656-bccb-2dc9b96dddb4}, !- Cooling Capacity Function of Temperature Curve Name + {567b07dc-c251-4873-a4b2-94265458145d}, !- Electric Input to Cooling Output Ratio Function of Temperature Curve Name + {2e7051e6-69c8-4be9-b9ee-617dc6af311b}, !- Electric Input to Cooling Output Ratio Function of Part Load Ratio Curve Name + 0.15, !- Minimum Part Load Ratio + 1, !- Maximum Part Load Ratio + 1, !- Optimum Part Load Ratio + 0.25, !- Minimum Unloading Ratio + {3318329a-1fc2-4bc6-b3be-08b57482abc0}, !- Chilled Water Inlet Node Name + {a9179b1e-9c6c-45a2-a60a-2d3faff3a38f}, !- Chilled Water Outlet Node Name + {6bacd511-83d0-4d18-8b73-a5604670e2c7}, !- Condenser Inlet Node Name + {02b8cca4-4249-4693-b78e-7e945fd1f893}, !- Condenser Outlet Node Name + WaterCooled, !- Condenser Type + , !- Condenser Fan Power Ratio {W/W} + , !- Fraction of Compressor Electric Consumption Rejected by Condenser + 2.22222222222229, !- Leaving Chilled Water Lower Temperature Limit {C} + ConstantFlow, !- Chiller Flow Mode + Autosize, !- Design Heat Recovery Water Flow Rate {m3/s} + , !- Heat Recovery Inlet Node Name + , !- Heat Recovery Outlet Node Name + 1, !- Sizing Factor + 0, !- Basin Heater Capacity {W/K} + 10, !- Basin Heater Setpoint Temperature {C} + , !- Basin Heater Operating Schedule Name + 1, !- Condenser Heat Recovery Relative Capacity Fraction + , !- Heat Recovery Inlet High Temperature Limit Schedule Name + , !- Heat Recovery Leaving Temperature Setpoint Node Name + General; !- End-Use Subcategory + +OS:Node, + {a69ce83b-82b8-4f8a-abad-24bfde4ef7b4}, !- Handle + ComStock DOE Ref Pre-1980 WaterCooled Rotary Screw Chiller 0 Supply Outlet Water Node, !- Name + {a9179b1e-9c6c-45a2-a60a-2d3faff3a38f}, !- Inlet Port + {4556dca7-2726-4996-803f-1c9a20e2e137}; !- Outlet Port + +OS:Connection, + {3318329a-1fc2-4bc6-b3be-08b57482abc0}, !- Handle + {118bfc65-846f-41d9-84e2-69d4225857fb}, !- Source Object + 3, !- Outlet Port + {70a54128-0485-4c1d-94ba-7564f1a1774f}, !- Target Object + 15; !- Inlet Port + +OS:Connection, + {a9179b1e-9c6c-45a2-a60a-2d3faff3a38f}, !- Handle + {70a54128-0485-4c1d-94ba-7564f1a1774f}, !- Source Object + 16, !- Outlet Port + {a69ce83b-82b8-4f8a-abad-24bfde4ef7b4}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4556dca7-2726-4996-803f-1c9a20e2e137}, !- Handle + {a69ce83b-82b8-4f8a-abad-24bfde4ef7b4}, !- Source Object + 3, !- Outlet Port + {9b975b03-76e7-4245-a0c2-7b54bca75a2d}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {5c6fef63-63a1-4f9d-8cc9-3d61c1cad7c4}, !- Handle + ComStock DOE Ref Pre-1980 WaterCooled Rotary Screw Chiller 0 Demand Inlet Water Node, !- Name + {832cefc3-de89-4f9c-afad-068120313008}, !- Inlet Port + {6bacd511-83d0-4d18-8b73-a5604670e2c7}; !- Outlet Port + +OS:Connection, + {832cefc3-de89-4f9c-afad-068120313008}, !- Handle + {0f2269a1-5132-4f0b-b976-0719d5a737a7}, !- Source Object + 4, !- Outlet Port + {5c6fef63-63a1-4f9d-8cc9-3d61c1cad7c4}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {47d79c61-6551-4070-9700-550ed6e4394d}, !- Handle + ComStock DOE Ref Pre-1980 WaterCooled Rotary Screw Chiller 0 Demand Outlet Water Node, !- Name + {02b8cca4-4249-4693-b78e-7e945fd1f893}, !- Inlet Port + {fcf44e7f-c490-4124-908b-52c301ee925a}; !- Outlet Port + +OS:Connection, + {6bacd511-83d0-4d18-8b73-a5604670e2c7}, !- Handle + {5c6fef63-63a1-4f9d-8cc9-3d61c1cad7c4}, !- Source Object + 3, !- Outlet Port + {70a54128-0485-4c1d-94ba-7564f1a1774f}, !- Target Object + 17; !- Inlet Port + +OS:Connection, + {02b8cca4-4249-4693-b78e-7e945fd1f893}, !- Handle + {70a54128-0485-4c1d-94ba-7564f1a1774f}, !- Source Object + 18, !- Outlet Port + {47d79c61-6551-4070-9700-550ed6e4394d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fcf44e7f-c490-4124-908b-52c301ee925a}, !- Handle + {47d79c61-6551-4070-9700-550ed6e4394d}, !- Source Object + 3, !- Outlet Port + {6f406660-b129-4a72-a2d7-40f8db5919ee}, !- Target Object + 4; !- Inlet Port + +OS:Pipe:Adiabatic, + {d997257e-206f-438d-94f3-6464cff9427f}, !- Handle + Chilled Water Loop Chiller Bypass, !- Name + {df8ded2e-de4f-49f6-9536-027ff7b088ca}, !- Inlet Node Name + {9045a3f5-9615-4a56-b7b5-4e3a45f7f6d4}; !- Outlet Node Name + +OS:Node, + {9f4d70f7-070d-49f3-9ce4-40a289cb0fab}, !- Handle + Chilled Water Loop Chiller Bypass Inlet Water Node, !- Name + {a4ec8cc8-33ed-44c2-8dcc-be08a9d85545}, !- Inlet Port + {df8ded2e-de4f-49f6-9536-027ff7b088ca}; !- Outlet Port + +OS:Connection, + {a4ec8cc8-33ed-44c2-8dcc-be08a9d85545}, !- Handle + {7063287b-04a4-4ee5-b81b-20ee0e764749}, !- Source Object + 4, !- Outlet Port + {9f4d70f7-070d-49f3-9ce4-40a289cb0fab}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {8e9948a5-f6ba-462d-9c3b-1ca112dbc0b2}, !- Handle + Chilled Water Loop Chiller Bypass Outlet Water Node, !- Name + {9045a3f5-9615-4a56-b7b5-4e3a45f7f6d4}, !- Inlet Port + {32dd6c35-46ad-47a9-b676-5d07d36cf370}; !- Outlet Port + +OS:Connection, + {df8ded2e-de4f-49f6-9536-027ff7b088ca}, !- Handle + {9f4d70f7-070d-49f3-9ce4-40a289cb0fab}, !- Source Object + 3, !- Outlet Port + {d997257e-206f-438d-94f3-6464cff9427f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9045a3f5-9615-4a56-b7b5-4e3a45f7f6d4}, !- Handle + {d997257e-206f-438d-94f3-6464cff9427f}, !- Source Object + 3, !- Outlet Port + {8e9948a5-f6ba-462d-9c3b-1ca112dbc0b2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {32dd6c35-46ad-47a9-b676-5d07d36cf370}, !- Handle + {8e9948a5-f6ba-462d-9c3b-1ca112dbc0b2}, !- Source Object + 3, !- Outlet Port + {9b975b03-76e7-4245-a0c2-7b54bca75a2d}, !- Target Object + 4; !- Inlet Port + +OS:Pipe:Adiabatic, + {f26abcb5-8440-40cf-9d56-4512b6b765c7}, !- Handle + Chilled Water Loop Coil Bypass, !- Name + {fe5697d1-7bf7-4827-b132-73912e55bfd2}, !- Inlet Node Name + {b59da5f9-1bca-41ad-a57b-89d29eb86f15}; !- Outlet Node Name + +OS:Node, + {9dd346bc-8575-43e0-9c73-4e8e87dbf5a0}, !- Handle + Chilled Water Loop Coil Bypass Outlet Water Node, !- Name + {b59da5f9-1bca-41ad-a57b-89d29eb86f15}, !- Inlet Port + {e73fd547-2375-4ccb-98c3-db79b75ca968}; !- Outlet Port + +OS:Connection, + {fe5697d1-7bf7-4827-b132-73912e55bfd2}, !- Handle + {e956da2c-53c2-4b5d-a93c-8bd8d645ed6c}, !- Source Object + 3, !- Outlet Port + {f26abcb5-8440-40cf-9d56-4512b6b765c7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b59da5f9-1bca-41ad-a57b-89d29eb86f15}, !- Handle + {f26abcb5-8440-40cf-9d56-4512b6b765c7}, !- Source Object + 3, !- Outlet Port + {9dd346bc-8575-43e0-9c73-4e8e87dbf5a0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e73fd547-2375-4ccb-98c3-db79b75ca968}, !- Handle + {9dd346bc-8575-43e0-9c73-4e8e87dbf5a0}, !- Source Object + 3, !- Outlet Port + {d641fc75-7ed0-41f5-b24d-cca20e4ee544}, !- Target Object + 3; !- Inlet Port + +OS:Pipe:Adiabatic, + {35d91c06-b53e-43fd-8551-4f87d807cd0e}, !- Handle + Chilled Water Loop Supply Outlet, !- Name + {7b1c99ee-d43b-4990-802d-2414c1fdf3b5}, !- Inlet Node Name + {e98767a3-dcb1-44f5-8c02-c8604c85a062}; !- Outlet Node Name + +OS:Node, + {99ea912f-46d9-4a5f-8d60-d7dbf3d87e0a}, !- Handle + Chilled Water Loop Supply Outlet Inlet Water Node, !- Name + {e6c3963d-206d-4aaf-8b6b-7d71ada967e2}, !- Inlet Port + {7b1c99ee-d43b-4990-802d-2414c1fdf3b5}; !- Outlet Port + +OS:Connection, + {e6c3963d-206d-4aaf-8b6b-7d71ada967e2}, !- Handle + {9b975b03-76e7-4245-a0c2-7b54bca75a2d}, !- Source Object + 2, !- Outlet Port + {99ea912f-46d9-4a5f-8d60-d7dbf3d87e0a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7b1c99ee-d43b-4990-802d-2414c1fdf3b5}, !- Handle + {99ea912f-46d9-4a5f-8d60-d7dbf3d87e0a}, !- Source Object + 3, !- Outlet Port + {35d91c06-b53e-43fd-8551-4f87d807cd0e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e98767a3-dcb1-44f5-8c02-c8604c85a062}, !- Handle + {35d91c06-b53e-43fd-8551-4f87d807cd0e}, !- Source Object + 3, !- Outlet Port + {a479939b-bb25-459b-b287-4e88d4d883c7}, !- Target Object + 2; !- Inlet Port + +OS:Pipe:Adiabatic, + {eb7af0a9-36da-45f5-909c-9923e68231b0}, !- Handle + Chilled Water Loop Demand Inlet, !- Name + {2e11973a-af6a-459f-a3d2-77ec1aa0d1d3}, !- Inlet Node Name + {8045c9b1-6806-42e7-a00a-2826bd5e01ce}; !- Outlet Node Name + +OS:Node, + {14131fc3-3be5-44ea-8d96-c947b7d0e774}, !- Handle + Chilled Water Loop Secondary Pump Inlet Water Node, !- Name + {8045c9b1-6806-42e7-a00a-2826bd5e01ce}, !- Inlet Port + {dcdc0ab8-dfab-4c08-89b1-e3bf23e40b99}; !- Outlet Port + +OS:Connection, + {2e11973a-af6a-459f-a3d2-77ec1aa0d1d3}, !- Handle + {bfa1c108-0a0c-4212-8677-57fe636f1dfd}, !- Source Object + 3, !- Outlet Port + {eb7af0a9-36da-45f5-909c-9923e68231b0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8045c9b1-6806-42e7-a00a-2826bd5e01ce}, !- Handle + {eb7af0a9-36da-45f5-909c-9923e68231b0}, !- Source Object + 3, !- Outlet Port + {14131fc3-3be5-44ea-8d96-c947b7d0e774}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {dcdc0ab8-dfab-4c08-89b1-e3bf23e40b99}, !- Handle + {14131fc3-3be5-44ea-8d96-c947b7d0e774}, !- Source Object + 3, !- Outlet Port + {9e3fa752-16d1-41b2-8be8-964df6ab0189}, !- Target Object + 2; !- Inlet Port + +OS:Pipe:Adiabatic, + {9d7f9318-815e-4e67-9a3b-16f4e7d2c7a1}, !- Handle + Chilled Water Loop Demand Outlet, !- Name + {dd4473dc-cbee-4cff-bef5-ff16207cf3f5}, !- Inlet Node Name + {10abc554-196a-434d-8898-768842c61922}; !- Outlet Node Name + +OS:Node, + {7e221978-64dd-4f02-92f8-e43ae748ac63}, !- Handle + Chilled Water Loop Demand Outlet Inlet Water Node, !- Name + {f5c88139-3188-48e6-8a84-89712fe5e6ec}, !- Inlet Port + {dd4473dc-cbee-4cff-bef5-ff16207cf3f5}; !- Outlet Port + +OS:Connection, + {f5c88139-3188-48e6-8a84-89712fe5e6ec}, !- Handle + {d641fc75-7ed0-41f5-b24d-cca20e4ee544}, !- Source Object + 2, !- Outlet Port + {7e221978-64dd-4f02-92f8-e43ae748ac63}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {dd4473dc-cbee-4cff-bef5-ff16207cf3f5}, !- Handle + {7e221978-64dd-4f02-92f8-e43ae748ac63}, !- Source Object + 3, !- Outlet Port + {9d7f9318-815e-4e67-9a3b-16f4e7d2c7a1}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {10abc554-196a-434d-8898-768842c61922}, !- Handle + {9d7f9318-815e-4e67-9a3b-16f4e7d2c7a1}, !- Source Object + 3, !- Outlet Port + {fa1a0f8c-f3cb-47bc-a6ee-245ba2e36460}, !- Target Object + 2; !- Inlet Port + +OS:AirLoopHVAC, + {71a2186f-ba5b-4291-9ffb-84844a5fb755}, !- Handle + 96 Zone DOAS, !- Name + , !- Controller List Name + {c1e3bfe6-7c14-4422-a0f7-ae32114b3cbe}, !- Availability Schedule + {e44592c1-d5a6-4d62-a8dd-972c089b5ccf}, !- Availability Manager List Name + 9.10143653827629, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {03e1f033-5cd9-4991-a5d7-0b8e649102c4}, !- Supply Side Inlet Node Name + {594235fc-8e66-4454-b89f-31dc2296dd0e}, !- Demand Side Outlet Node Name + {f5d981d6-d71e-4f68-82ad-f3256c9acfb9}, !- Demand Side Inlet Node A + {7dea1095-ac42-4417-b0c0-7f527a089091}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Demand Mixer Name + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:Node, + {3d4aeb70-686e-453d-bc79-82c123217be6}, !- Handle + 96 Zone DOAS Supply Inlet Node, !- Name + {03e1f033-5cd9-4991-a5d7-0b8e649102c4}, !- Inlet Port + {3d602b62-725d-4c62-8175-48cdd6d91d31}; !- Outlet Port + +OS:Node, + {1d6c2574-c75d-4556-8035-f7ba2222b851}, !- Handle + 96 Zone DOAS Supply Outlet Node, !- Name + {54a9f0ac-ef21-42ee-a685-d146dfe3aa34}, !- Inlet Port + {7dea1095-ac42-4417-b0c0-7f527a089091}; !- Outlet Port + +OS:Connection, + {03e1f033-5cd9-4991-a5d7-0b8e649102c4}, !- Handle + {71a2186f-ba5b-4291-9ffb-84844a5fb755}, !- Source Object + 9, !- Outlet Port + {3d4aeb70-686e-453d-bc79-82c123217be6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7dea1095-ac42-4417-b0c0-7f527a089091}, !- Handle + {1d6c2574-c75d-4556-8035-f7ba2222b851}, !- Source Object + 3, !- Outlet Port + {71a2186f-ba5b-4291-9ffb-84844a5fb755}, !- Target Object + 12; !- Inlet Port + +OS:Node, + {9ff668d6-516d-42f1-9f40-e47dd07987c0}, !- Handle + 96 Zone DOAS Demand Inlet Node, !- Name + {f5d981d6-d71e-4f68-82ad-f3256c9acfb9}, !- Inlet Port + {aa29f4e4-4c4c-4ad7-b2ce-6b606a4f46bf}; !- Outlet Port + +OS:Node, + {a62b8ea4-82b3-4bed-9b61-8821ef71efe7}, !- Handle + 96 Zone DOAS Demand Outlet Node, !- Name + {20ba38a9-9db4-4f37-b0fd-86d59c9510e0}, !- Inlet Port + {594235fc-8e66-4454-b89f-31dc2296dd0e}; !- Outlet Port + +OS:Node, + {0d5aa525-408c-47f4-ba22-bad40e924a05}, !- Handle + Zone Outpatient Anesthesia A - Story ground Air Terminal Outlet Air Node, !- Name + {1f873c59-de4c-49ca-8f95-2460ef3698c5}, !- Inlet Port + {d35c85f1-9721-4ae6-a444-fff808034b91}; !- Outlet Port + +OS:Connection, + {f5d981d6-d71e-4f68-82ad-f3256c9acfb9}, !- Handle + {71a2186f-ba5b-4291-9ffb-84844a5fb755}, !- Source Object + 11, !- Outlet Port + {9ff668d6-516d-42f1-9f40-e47dd07987c0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {594235fc-8e66-4454-b89f-31dc2296dd0e}, !- Handle + {a62b8ea4-82b3-4bed-9b61-8821ef71efe7}, !- Source Object + 3, !- Outlet Port + {71a2186f-ba5b-4291-9ffb-84844a5fb755}, !- Target Object + 10; !- Inlet Port + +OS:AirLoopHVAC:ZoneSplitter, + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Handle + Air Loop HVAC Zone Splitter 1, !- Name + {aa29f4e4-4c4c-4ad7-b2ce-6b606a4f46bf}, !- Inlet Node Name + {c55a3d22-ec29-4add-8a9f-bbeb1c365875}, !- Outlet Node Name 1 + {dd21508b-4cc9-415a-8478-be7a60d5eddd}, !- Outlet Node Name 2 + {c2c87adc-3c08-43e9-8b7f-ebbb295f7904}, !- Outlet Node Name 3 + {42b896da-8b95-4fa2-8042-3032cd0f29ed}, !- Outlet Node Name 4 + {7bdcfce3-df9b-43ee-9af3-5ac8b18a7bf3}, !- Outlet Node Name 5 + {1586fc3f-f7ec-46d0-a00c-467cf94812c5}, !- Outlet Node Name 6 + {22b3e23e-dcad-4e4a-b9d4-34f306649277}, !- Outlet Node Name 7 + {2c68137b-0694-4102-a2ff-0cbd02ab1642}, !- Outlet Node Name 8 + {47fdf745-4dd8-4025-bf33-7675fd02e985}, !- Outlet Node Name 9 + {22e66866-cf07-45da-9afc-7156bd6bb79a}, !- Outlet Node Name 10 + {b3f19f3c-e831-4230-8204-683b38a81633}, !- Outlet Node Name 11 + {f80a4761-5f16-4548-8f8d-3a8904316fe7}, !- Outlet Node Name 12 + {00203e57-a06c-48ad-b690-b4a55808861c}, !- Outlet Node Name 13 + {c8189464-7dbf-4f5b-8d7e-935fb1a64285}, !- Outlet Node Name 14 + {00821dff-b0c3-4fcf-9eb0-0a50fb5c7695}, !- Outlet Node Name 15 + {1dce8421-316c-4d3c-85ec-87233fa8771c}, !- Outlet Node Name 16 + {0a780d48-448d-4a44-9c16-4e6a1f2df821}, !- Outlet Node Name 17 + {aa249209-463d-4e13-a16e-18b0bb2ab7be}, !- Outlet Node Name 18 + {f3f54a94-e741-47d7-afdb-4b1e4b9fea1e}, !- Outlet Node Name 19 + {271a5824-4a76-4972-9329-089da6d832d6}, !- Outlet Node Name 20 + {e08dc785-f122-454e-8947-d5a6aecaf6b1}, !- Outlet Node Name 21 + {8a60baa8-e696-4db7-b330-e411737b2493}, !- Outlet Node Name 22 + {a0577ce0-784d-42d3-a059-f84d22f08748}, !- Outlet Node Name 23 + {a36183cf-182f-4fe6-9a6c-ca3493049382}, !- Outlet Node Name 24 + {8cdee070-99b4-44e1-829c-ab63245681bc}, !- Outlet Node Name 25 + {f1ae79e2-a260-48a0-9ff0-dc25347a7dd1}, !- Outlet Node Name 26 + {f109279c-62bb-4d79-8672-275f4e2a16b3}, !- Outlet Node Name 27 + {289fb44a-03d5-4da7-b413-b57bd7dfb374}, !- Outlet Node Name 28 + {8816a6e7-c285-45a6-8db5-2e927fa16f62}, !- Outlet Node Name 29 + {d7fec518-67cf-4cc7-b466-f61cc25009bf}, !- Outlet Node Name 30 + {74adb212-5e25-4f47-805b-9b186222c778}, !- Outlet Node Name 31 + {6c08a1e5-c655-44a8-9c6e-eb0c9601cfea}, !- Outlet Node Name 32 + {27ddd498-35a2-4973-8444-ccfbc37c444d}, !- Outlet Node Name 33 + {6a3e8a6f-b8a9-4e2a-8962-95e92615c3b0}, !- Outlet Node Name 34 + {e14e58fe-5d4a-4cbe-baae-00d3fea68a09}, !- Outlet Node Name 35 + {fc978655-fb86-482e-b904-9981af178dc2}, !- Outlet Node Name 36 + {7fcd9380-e9e0-4a4a-8e54-724bf41b1c8d}, !- Outlet Node Name 37 + {49ea804a-02cf-41a3-8fb3-ce315666ba46}, !- Outlet Node Name 38 + {886e55f0-d25c-4f5a-b182-1dc27d771ab9}, !- Outlet Node Name 39 + {5c207465-8fe7-4fe0-bc70-209e58f1ec8f}, !- Outlet Node Name 40 + {44f368f9-507a-41d4-a2d1-33acb569068a}, !- Outlet Node Name 41 + {5815aa63-c1fc-41d2-8544-b95b4d546a65}, !- Outlet Node Name 42 + {0bb869bc-9ab7-4ea7-9a10-c9afd46ce5da}, !- Outlet Node Name 43 + {4347aaa0-2c7e-4609-adb9-7570e0ee14ca}, !- Outlet Node Name 44 + {54f602d5-dff1-4e07-b5fe-ed4a25efc0be}, !- Outlet Node Name 45 + {d4975297-c427-4c6f-9c5b-aa823ee6dcfb}, !- Outlet Node Name 46 + {c439b220-e1a6-4d67-be3f-9e97c4f8f1ea}, !- Outlet Node Name 47 + {eeb4e482-bf3b-46c8-8b27-c66ed04d5860}, !- Outlet Node Name 48 + {aa17d1f7-e312-4dfa-8841-d32e1dfc2340}, !- Outlet Node Name 49 + {dd99a080-4086-49c2-8d25-fcfc6b64c1a4}, !- Outlet Node Name 50 + {3661a731-dad9-463e-8727-c26b6d4e14bd}, !- Outlet Node Name 51 + {a6887a90-677f-4b41-85bf-5a9a3443daa6}, !- Outlet Node Name 52 + {a1a236ee-868c-482f-9ee1-1e4cf62ea1a9}, !- Outlet Node Name 53 + {25e1c321-c705-4042-8568-71384a92b4e8}, !- Outlet Node Name 54 + {88b9eb69-d96e-4f30-97ca-effc1ed6c0e8}, !- Outlet Node Name 55 + {a181c0c5-62d2-45c0-96b8-03f2f7228a78}, !- Outlet Node Name 56 + {cbd754f5-9f3a-4ae1-bbb0-84c337a0243b}, !- Outlet Node Name 57 + {cc566df9-3b00-427d-bf47-68989dd003fe}, !- Outlet Node Name 58 + {eccdb700-da1b-42ac-8d80-2b0682d7b6bb}, !- Outlet Node Name 59 + {7d413604-f03f-49c8-b5de-859ad67cd3e7}, !- Outlet Node Name 60 + {7482f2c8-a19a-4ae6-aa07-cce22e9f4a05}, !- Outlet Node Name 61 + {b2fe772b-0800-410a-9066-531a18cba1fd}, !- Outlet Node Name 62 + {ad0b3d69-3ccc-4d49-91aa-885d372b938a}, !- Outlet Node Name 63 + {7a7dd79d-c08d-49d8-a22a-741eb480befe}, !- Outlet Node Name 64 + {5c0c7d90-bfa6-4b00-a7c9-b471bd27e608}, !- Outlet Node Name 65 + {32fca541-38f2-4cf5-8e7c-e4f82dd82353}, !- Outlet Node Name 66 + {0c51a16b-37b8-4d44-8a12-e67775683415}, !- Outlet Node Name 67 + {c8e49054-e115-4db4-8e12-58332f95fd24}, !- Outlet Node Name 68 + {28cf6912-ee49-4209-b5f3-babf03112b23}, !- Outlet Node Name 69 + {f0706e5f-e768-4c6d-95b8-48aca7fb09b7}, !- Outlet Node Name 70 + {1ef2abd3-65f4-470b-97e2-25906094ba60}, !- Outlet Node Name 71 + {402b7f65-4003-44a4-99ec-7edc73ab65b2}, !- Outlet Node Name 72 + {54e55516-b5e3-40f6-b54e-78bbf15902ec}, !- Outlet Node Name 73 + {28333440-a473-49f9-97d0-ca071209e566}, !- Outlet Node Name 74 + {edb2023d-0b5b-44b7-b712-f8f783c3225b}, !- Outlet Node Name 75 + {6c1fcd7c-88e5-49ac-87ff-41f0de60cc88}, !- Outlet Node Name 76 + {e9b594d4-4977-4f94-963a-bab45c3e6177}, !- Outlet Node Name 77 + {2ed8b415-ceff-4861-9645-95a4ef594486}, !- Outlet Node Name 78 + {e06c8c18-7274-47cf-abff-4e374dadaf5e}, !- Outlet Node Name 79 + {bd863e45-9b17-4917-8d39-8a604bfa2df1}, !- Outlet Node Name 80 + {6bf12369-27c7-4578-8b72-5d003bd1e161}; !- Outlet Node Name 81 + +OS:AirLoopHVAC:ZoneMixer, + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Handle + Air Loop HVAC Zone Mixer 1, !- Name + {20ba38a9-9db4-4f37-b0fd-86d59c9510e0}, !- Outlet Node Name + {cabece02-6103-45e6-bfbb-8d771e1c0241}, !- Inlet Node Name 1 + {12d7ed0b-697f-4ad1-8fc2-53ea90b84084}, !- Inlet Node Name 2 + {1a0ca7a8-3c61-4c2e-ad19-f3a1f68ab787}, !- Inlet Node Name 3 + {58616d50-008c-4b49-b8b0-f58cc6ec0102}, !- Inlet Node Name 4 + {d3d9eef4-b630-4830-890d-0f703eae3889}, !- Inlet Node Name 5 + {0753c4bd-960c-443f-a839-407aae0cf567}, !- Inlet Node Name 6 + {96f2f857-1e32-45b6-8223-d1fdd2e62bd6}, !- Inlet Node Name 7 + {140f9536-7e56-438e-9060-21549ea0b9fd}, !- Inlet Node Name 8 + {def3fad3-b251-403a-93a8-fe996d30861a}, !- Inlet Node Name 9 + {ab6fef81-88ff-41d6-a974-923d52e3a275}, !- Inlet Node Name 10 + {d1592e48-0d9a-430b-8a54-b1a8b0262509}, !- Inlet Node Name 11 + {0ab5d606-f243-47bf-bc02-da615d84ec62}, !- Inlet Node Name 12 + {eed0b404-506c-411d-aff4-8af1cc0e1baa}, !- Inlet Node Name 13 + {fc8b6b6f-0816-46e6-aa59-fbba12ff1e60}, !- Inlet Node Name 14 + {f79164b5-1e64-48ed-8e7b-9277002eae84}, !- Inlet Node Name 15 + {9b3f6251-cb51-4035-9bdd-950557ea4af9}, !- Inlet Node Name 16 + {488925cd-6c15-4ce5-aee9-cbad16f474bf}, !- Inlet Node Name 17 + {8a074042-b680-411a-8daa-a8682d708a6d}, !- Inlet Node Name 18 + {8c93d227-1731-420c-af0c-96af5b1e2ce3}, !- Inlet Node Name 19 + {568692b0-1c7b-4721-a363-487879958c03}, !- Inlet Node Name 20 + {5f77cc5a-2e54-48f7-993c-e8e97438329b}, !- Inlet Node Name 21 + {e29bcfbe-0695-4212-a331-2962dc1ef962}, !- Inlet Node Name 22 + {15e299fa-d57c-4e7a-b9cb-fb51a0ed148d}, !- Inlet Node Name 23 + {eb9f05b5-2b3c-4f57-a7b7-df138b9262d6}, !- Inlet Node Name 24 + {b9341a3a-da92-4786-8b4e-ba0d831e3ae7}, !- Inlet Node Name 25 + {52030128-16c6-4dee-832a-6e888ed57feb}, !- Inlet Node Name 26 + {6b89d844-bea8-4163-94db-ef34f0b09573}, !- Inlet Node Name 27 + {674d9d19-e76e-43d4-8d00-1c4d428fb1bc}, !- Inlet Node Name 28 + {78f3150b-d02a-44c0-bb1b-c623bfc44bf9}, !- Inlet Node Name 29 + {2c85df21-79b1-4e31-bb5a-a597b9c1d1da}, !- Inlet Node Name 30 + {92e001f1-d618-41ac-a821-1603c3e65038}, !- Inlet Node Name 31 + {ca488ece-b6b1-4d28-be29-c886c3ad8d07}, !- Inlet Node Name 32 + {f4dce8f3-16f4-4151-8cb5-b54d3133d45f}, !- Inlet Node Name 33 + {766cf60b-b883-4dd3-9469-00b523a1506c}, !- Inlet Node Name 34 + {ebec27ea-c73e-44ea-8c2c-bf0a6ab99659}, !- Inlet Node Name 35 + {c8fca0d2-38e5-436d-98e3-8e6023094c32}, !- Inlet Node Name 36 + {0f5d9140-69cf-49f4-932d-4a6097a8d6ad}, !- Inlet Node Name 37 + {1bbefbb6-0f99-44a4-8f7e-2ed996f6c395}, !- Inlet Node Name 38 + {1b482e84-6056-4ad8-b8ab-f662a3542f01}, !- Inlet Node Name 39 + {cab57f93-a149-4372-bcd5-d856c1e2d927}, !- Inlet Node Name 40 + {ee022d81-b524-49e2-a481-a20b85cd6196}, !- Inlet Node Name 41 + {3b7e484f-51dd-4c58-ab8f-57d2e3463278}, !- Inlet Node Name 42 + {5ade2f6a-fa12-4cef-adc5-b6384be492bc}, !- Inlet Node Name 43 + {1c444abb-02ea-472e-a24a-3d0a7027f8f4}, !- Inlet Node Name 44 + {336d9de7-c22c-435f-b6fb-94d4bea7aa79}, !- Inlet Node Name 45 + {41c794a7-03ff-4801-828b-c5c3c5a730e8}, !- Inlet Node Name 46 + {33f7e0e0-20bb-45b8-9952-46658b590168}, !- Inlet Node Name 47 + {79ad96d2-a591-41c8-806b-341289c3d85b}, !- Inlet Node Name 48 + {662592ad-8910-465c-bcde-bedd22800009}, !- Inlet Node Name 49 + {4834feb4-e1e2-4ae3-80dd-00a7e4fc5816}, !- Inlet Node Name 50 + {974d1c17-26a0-4abc-b502-3656f8666042}, !- Inlet Node Name 51 + {aea28925-eef8-489d-a7d9-0c289136a9c7}, !- Inlet Node Name 52 + {73a4914a-84df-433a-8dc7-d5a484c4c70d}, !- Inlet Node Name 53 + {8452622d-4a26-4e28-84e7-9675f3eef56d}, !- Inlet Node Name 54 + {e4cb39a3-326d-4823-b5f1-c4e2c64ff124}, !- Inlet Node Name 55 + {4736b832-1cd0-456c-9df7-b3795715ed6e}, !- Inlet Node Name 56 + {5206be6a-b40a-4b23-830d-7ee70bbe1473}, !- Inlet Node Name 57 + {ebbb6b37-e113-4009-aeb3-c24968895750}, !- Inlet Node Name 58 + {39613633-0a51-4789-bf2e-6b24fad36130}, !- Inlet Node Name 59 + {fa6df9eb-81a1-498c-956b-90a925e0f614}, !- Inlet Node Name 60 + {c057bbb3-eb15-4cb7-85e7-662e05ee0601}, !- Inlet Node Name 61 + {65eacf58-b8c9-4245-9a26-3bc53f311fea}, !- Inlet Node Name 62 + {d4ff10c8-d2e6-4b64-a883-342bab5597e4}, !- Inlet Node Name 63 + {8129a51e-6583-4542-aa27-d714edffde55}, !- Inlet Node Name 64 + {71059e5e-dae8-40ba-9384-125679e55560}, !- Inlet Node Name 65 + {70d0fda0-c5d5-4154-b033-bb28dd59cb57}, !- Inlet Node Name 66 + {45327b70-45d0-497c-b431-4e2667115cbd}, !- Inlet Node Name 67 + {581a585c-679b-4eca-b103-cec361d323d9}, !- Inlet Node Name 68 + {ae218968-24d7-4537-9065-1e38d9b3df56}, !- Inlet Node Name 69 + {3b61a2ba-3f8b-44fa-9d10-3342fdbe060f}, !- Inlet Node Name 70 + {de5b7366-6384-4249-b8af-1de4d788c9cd}, !- Inlet Node Name 71 + {fd2ed887-3561-4762-9cee-951297a56320}, !- Inlet Node Name 72 + {eeb69944-9a5f-4012-8dc0-f045c8bb8d6e}, !- Inlet Node Name 73 + {ee1c9e75-d611-4d08-8fe9-2eb1d174a99e}, !- Inlet Node Name 74 + {2cc9dcd8-a5bf-418c-9885-d5cc305b6305}, !- Inlet Node Name 75 + {0068e1c7-ca20-4041-b424-42282cddaaa1}, !- Inlet Node Name 76 + {a45fa7e6-9992-4dc9-88bc-84df38ce8dc0}, !- Inlet Node Name 77 + {413feb80-1ab5-4091-b79b-e94aeacd5858}, !- Inlet Node Name 78 + {62c7779b-e18e-4622-a78e-d501feb682d8}, !- Inlet Node Name 79 + {40936a79-823f-4302-9092-6377a4a1b1b2}, !- Inlet Node Name 80 + {2c074bab-e9bc-4268-99b4-87e7884720e8}; !- Inlet Node Name 81 + +OS:Connection, + {aa29f4e4-4c4c-4ad7-b2ce-6b606a4f46bf}, !- Handle + {9ff668d6-516d-42f1-9f40-e47dd07987c0}, !- Source Object + 3, !- Outlet Port + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {20ba38a9-9db4-4f37-b0fd-86d59c9510e0}, !- Handle + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Source Object + 2, !- Outlet Port + {a62b8ea4-82b3-4bed-9b61-8821ef71efe7}, !- Target Object + 2; !- Inlet Port + +OS:Sizing:System, + {573ac9fa-37c2-4b87-a051-4f1802566e64}, !- Handle + {71a2186f-ba5b-4291-9ffb-84844a5fb755}, !- AirLoop Name + VentilationRequirement, !- Type of Load to Size On + 9.10143653827629, !- Design Outdoor Air Flow Rate {m3/s} + 1, !- Central Heating Maximum System Air Flow Ratio + 7, !- Preheat Design Temperature {C} + 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air} + 12.8, !- Precool Design Temperature {C} + 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air} + 15.5555555555556, !- Central Cooling Design Supply Air Temperature {C} + 21.1111111111111, !- Central Heating Design Supply Air Temperature {C} + Coincident, !- Sizing Option + Yes, !- 100% Outdoor Air in Cooling + Yes, !- 100% Outdoor Air in Heating + 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} + , !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + ZoneSum, !- System Outdoor Air Method + 1, !- Zone Maximum Outdoor Air Fraction {dimensionless} + 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate + 3.9475456e-05, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W} + 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2} + 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate + 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate + 3.1588213e-05, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W} + CoolingDesignCapacity, !- Cooling Design Capacity Method + 208064.75, !- Cooling Design Capacity {W} + 234.7, !- Cooling Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Cooling Design Capacity + HeatingDesignCapacity, !- Heating Design Capacity Method + 346083.06, !- Heating Design Capacity {W} + 157, !- Heating Design Capacity Per Floor Area {W/m2} + 1, !- Fraction of Autosized Heating Design Capacity + OnOff, !- Central Cooling Capacity Control Method + 1; !- Occupant Diversity + +OS:AvailabilityManagerAssignmentList, + {e44592c1-d5a6-4d62-a8dd-972c089b5ccf}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name + {cebb4c3e-d950-4212-919a-45c0e2140558}; !- Availability Manager Name 1 + +OS:Fan:ConstantVolume, + {740568e7-ed71-4528-a034-461328816a8b}, !- Handle + DOAS Supply Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.6006, !- Fan Total Efficiency + 1110.9365386, !- Pressure Rise {Pa} + 9.10143653827629, !- Maximum Flow Rate {m3/s} + 0.924, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + {9d5f29ef-4fc6-40cd-845a-a9da28be6127}, !- Air Inlet Node Name + {54a9f0ac-ef21-42ee-a685-d146dfe3aa34}, !- Air Outlet Node Name + DOAS Fans; !- End-Use Subcategory + +OS:Connection, + {54a9f0ac-ef21-42ee-a685-d146dfe3aa34}, !- Handle + {740568e7-ed71-4528-a034-461328816a8b}, !- Source Object + 9, !- Outlet Port + {1d6c2574-c75d-4556-8035-f7ba2222b851}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Water, + {f6bd1628-cf84-43c6-b63b-fd649e49b5a8}, !- Handle + 96 Zone DOAS Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 5013.10771670022, !- U-Factor Times Area Value {W/K} + 0.00756981941937287, !- Maximum Water Flow Rate {m3/s} + {70b7f62c-c5bd-43ec-8848-f758f38704c5}, !- Water Inlet Node Name + {359d60d4-123b-47b6-82ac-bc301d98a90f}, !- Water Outlet Node Name + {1afba627-02f8-44bb-b71c-62f3e6b215e4}, !- Air Inlet Node Name + {56194cc0-610b-4aa0-8ef6-0d977fa475c5}, !- Air Outlet Node Name + , !- Performance Input Method + 346083.060070424, !- Rated Capacity {W} + 82.2222222222223, !- Rated Inlet Water Temperature {C} + 16.6, !- Rated Inlet Air Temperature {C} + 71.1111111111112, !- Rated Outlet Water Temperature {C} + 32.2, !- Rated Outlet Air Temperature {C} + ; !- Rated Ratio for Air and Water Convection + +OS:Node, + {983d7627-61c8-44ac-b965-b8d7a173ed2a}, !- Handle + 96 Zone DOAS Htg Coil Inlet Water Node, !- Name + {12748e21-5fa0-4b83-ba05-ccd030cad707}, !- Inlet Port + {70b7f62c-c5bd-43ec-8848-f758f38704c5}; !- Outlet Port + +OS:Connection, + {12748e21-5fa0-4b83-ba05-ccd030cad707}, !- Handle + {fc7029a4-d6c5-4617-a6af-648f0520fd6a}, !- Source Object + 4, !- Outlet Port + {983d7627-61c8-44ac-b965-b8d7a173ed2a}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {14ef3fff-a37b-4289-b840-3a5aa74dc3ff}, !- Handle + 96 Zone DOAS Htg Coil Outlet Water Node, !- Name + {359d60d4-123b-47b6-82ac-bc301d98a90f}, !- Inlet Port + {16698194-9bde-4bbc-8f81-44a459190d2e}; !- Outlet Port + +OS:Connection, + {70b7f62c-c5bd-43ec-8848-f758f38704c5}, !- Handle + {983d7627-61c8-44ac-b965-b8d7a173ed2a}, !- Source Object + 3, !- Outlet Port + {f6bd1628-cf84-43c6-b63b-fd649e49b5a8}, !- Target Object + 5; !- Inlet Port + +OS:Connection, + {359d60d4-123b-47b6-82ac-bc301d98a90f}, !- Handle + {f6bd1628-cf84-43c6-b63b-fd649e49b5a8}, !- Source Object + 6, !- Outlet Port + {14ef3fff-a37b-4289-b840-3a5aa74dc3ff}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {16698194-9bde-4bbc-8f81-44a459190d2e}, !- Handle + {14ef3fff-a37b-4289-b840-3a5aa74dc3ff}, !- Source Object + 3, !- Outlet Port + {03745b25-6d6c-4ee7-beef-d5c7d38a36b3}, !- Target Object + 4; !- Inlet Port + +OS:Controller:WaterCoil, + {0580746a-c517-4b9e-a7aa-6c885211129b}, !- Handle + 96 Zone DOAS Htg Coil Controller, !- Name + {f6bd1628-cf84-43c6-b63b-fd649e49b5a8}, !- Water Coil Name + , !- Control Variable + Normal, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 0.0001, !- Controller Convergence Tolerance {deltaC} + 0.00756981941937287, !- Maximum Actuated Flow {m3/s} + 0; !- Minimum Actuated Flow {m3/s} + +OS:Node, + {3fb97ca4-5572-41ed-b59c-cb652b2dc206}, !- Handle + 96 Zone DOAS Htg Coil Outlet Air Node, !- Name + {56194cc0-610b-4aa0-8ef6-0d977fa475c5}, !- Inlet Port + {9d5f29ef-4fc6-40cd-845a-a9da28be6127}; !- Outlet Port + +OS:Connection, + {56194cc0-610b-4aa0-8ef6-0d977fa475c5}, !- Handle + {f6bd1628-cf84-43c6-b63b-fd649e49b5a8}, !- Source Object + 8, !- Outlet Port + {3fb97ca4-5572-41ed-b59c-cb652b2dc206}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9d5f29ef-4fc6-40cd-845a-a9da28be6127}, !- Handle + {3fb97ca4-5572-41ed-b59c-cb652b2dc206}, !- Source Object + 3, !- Outlet Port + {740568e7-ed71-4528-a034-461328816a8b}, !- Target Object + 8; !- Inlet Port + +OS:Coil:Cooling:Water, + {4ec6bc4a-c218-4ff4-a465-81a6468fd6b8}, !- Handle + 96 Zone DOAS Clg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.0176399901557234, !- Design Water Flow Rate {m3/s} + 9.10143653827629, !- Design Air Flow Rate {m3/s} + 6.66666666666669, !- Design Inlet Water Temperature {C} + 34.5, !- Design Inlet Air Temperature {C} + 14.064578856536, !- Design Outlet Air Temperature {C} + 0.0151880216516235, !- Design Inlet Air Humidity Ratio {kg-H2O/kg-air} + 0.0085, !- Design Outlet Air Humidity Ratio {kg-H2O/kg-air} + {64a111bf-1cff-4c4f-80b0-2015f9cba0fa}, !- Water Inlet Node Name + {1b9fc870-1955-47a0-b5a8-d68754e2ea1c}, !- Water Outlet Node Name + {9ce15c2e-fe79-4db4-8cce-2f8ec208f536}, !- Air Inlet Node Name + {440cae74-343a-42f5-8f1e-ce83fddda5fa}, !- Air Outlet Node Name + , !- Type of Analysis + CrossFlow; !- Heat Exchanger Configuration + +OS:Node, + {8d2c5cfe-ac38-4b22-a96e-2b10faf31bee}, !- Handle + 96 Zone DOAS Clg Coil Inlet Water Node, !- Name + {764b9381-da7a-44f4-9af1-ebe783e7764a}, !- Inlet Port + {64a111bf-1cff-4c4f-80b0-2015f9cba0fa}; !- Outlet Port + +OS:Connection, + {764b9381-da7a-44f4-9af1-ebe783e7764a}, !- Handle + {d1de74b3-6e5e-4ff1-8469-a18a7c48cc97}, !- Source Object + 4, !- Outlet Port + {8d2c5cfe-ac38-4b22-a96e-2b10faf31bee}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {ed99f73b-c356-460e-95e0-ba624a5edff8}, !- Handle + 96 Zone DOAS Clg Coil Outlet Water Node, !- Name + {1b9fc870-1955-47a0-b5a8-d68754e2ea1c}, !- Inlet Port + {b4f0f7a0-2331-44ab-a8fb-71cbd559fa67}; !- Outlet Port + +OS:Connection, + {64a111bf-1cff-4c4f-80b0-2015f9cba0fa}, !- Handle + {8d2c5cfe-ac38-4b22-a96e-2b10faf31bee}, !- Source Object + 3, !- Outlet Port + {4ec6bc4a-c218-4ff4-a465-81a6468fd6b8}, !- Target Object + 10; !- Inlet Port + +OS:Connection, + {1b9fc870-1955-47a0-b5a8-d68754e2ea1c}, !- Handle + {4ec6bc4a-c218-4ff4-a465-81a6468fd6b8}, !- Source Object + 11, !- Outlet Port + {ed99f73b-c356-460e-95e0-ba624a5edff8}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b4f0f7a0-2331-44ab-a8fb-71cbd559fa67}, !- Handle + {ed99f73b-c356-460e-95e0-ba624a5edff8}, !- Source Object + 3, !- Outlet Port + {d641fc75-7ed0-41f5-b24d-cca20e4ee544}, !- Target Object + 4; !- Inlet Port + +OS:Controller:WaterCoil, + {79e362a1-848f-4ae7-806c-e2674c2ee343}, !- Handle + 96 Zone DOAS Clg Coil Controller, !- Name + {4ec6bc4a-c218-4ff4-a465-81a6468fd6b8}, !- Water Coil Name + , !- Control Variable + Reverse, !- Action + , !- Actuator Variable + , !- Sensor Node Name + , !- Actuator Node Name + 2.69949400190551e-05, !- Controller Convergence Tolerance {deltaC} + 0.0176399901557234, !- Maximum Actuated Flow {m3/s} + 0; !- Minimum Actuated Flow {m3/s} + +OS:Node, + {5f4aa021-1757-4fdf-a471-ddb866e9000a}, !- Handle + 96 Zone DOAS Clg Coil Outlet Air Node, !- Name + {440cae74-343a-42f5-8f1e-ce83fddda5fa}, !- Inlet Port + {1afba627-02f8-44bb-b71c-62f3e6b215e4}; !- Outlet Port + +OS:Connection, + {440cae74-343a-42f5-8f1e-ce83fddda5fa}, !- Handle + {4ec6bc4a-c218-4ff4-a465-81a6468fd6b8}, !- Source Object + 13, !- Outlet Port + {5f4aa021-1757-4fdf-a471-ddb866e9000a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1afba627-02f8-44bb-b71c-62f3e6b215e4}, !- Handle + {5f4aa021-1757-4fdf-a471-ddb866e9000a}, !- Source Object + 3, !- Outlet Port + {f6bd1628-cf84-43c6-b63b-fd649e49b5a8}, !- Target Object + 7; !- Inlet Port + +OS:Controller:OutdoorAir, + {632a9fd8-3723-4dbd-84ae-0793978e6f89}, !- Handle + 96 Zone DOAS Outdoor Air Controller, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + 9.10143653827629, !- Minimum Outdoor Air Flow Rate {m3/s} + 9.10143653827629, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 12.7777777777778, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + , !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + , !- Economizer Minimum Limit Dry-Bulb Temperature {C} + LockoutWithHeating, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Minimum Outdoor Air Schedule Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {18e4ad48-353e-47cd-a75a-b566a2b44a43}, !- Controller Mechanical Ventilation + , !- Time of Day Economizer Control Schedule Name + No, !- High Humidity Control + , !- Humidistat Control Zone Name + , !- High Humidity Outdoor Air Flow Ratio + , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio + BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging + +OS:Controller:MechanicalVentilation, + {18e4ad48-353e-47cd-a75a-b566a2b44a43}, !- Handle + 96 Zone DOAS Mechanical Ventilation Controller, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule + , !- Demand Controlled Ventilation + ZoneSum; !- System Outdoor Air Method + +OS:AirLoopHVAC:OutdoorAirSystem, + {be9afe76-1c75-4e75-9e87-caea197b3daa}, !- Handle + 96 Zone DOAS OA System, !- Name + {632a9fd8-3723-4dbd-84ae-0793978e6f89}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {864c9ff9-e5e7-4266-a9f1-da6b222ecc5d}, !- Mixed Air Node Name + {68a432a6-596f-4bf8-8d23-1a254a0518f2}, !- Outdoor Air Stream Node Name + {9fdb1eb9-6a82-4689-8af3-517c4d6a2b54}, !- Relief Air Stream Node Name + {37a3893d-077e-40f1-80cd-a4a2c2fa1262}; !- Return Air Stream Node Name + +OS:Node, + {0f173666-bc5a-41b7-9665-f6499ac904f4}, !- Handle + 96 Zone DOAS Outdoor Air Node, !- Name + , !- Inlet Port + {68a432a6-596f-4bf8-8d23-1a254a0518f2}; !- Outlet Port + +OS:Connection, + {68a432a6-596f-4bf8-8d23-1a254a0518f2}, !- Handle + {0f173666-bc5a-41b7-9665-f6499ac904f4}, !- Source Object + 3, !- Outlet Port + {be9afe76-1c75-4e75-9e87-caea197b3daa}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {af314b8f-5943-4960-a4a9-7e9d5af854e9}, !- Handle + 96 Zone DOAS Relief Air Node, !- Name + {9fdb1eb9-6a82-4689-8af3-517c4d6a2b54}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {9fdb1eb9-6a82-4689-8af3-517c4d6a2b54}, !- Handle + {be9afe76-1c75-4e75-9e87-caea197b3daa}, !- Source Object + 7, !- Outlet Port + {af314b8f-5943-4960-a4a9-7e9d5af854e9}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {c104fcbe-f510-4adb-ae5b-07ee2176d0ef}, !- Handle + 96 Zone DOAS Mixed Air Node, !- Name + {864c9ff9-e5e7-4266-a9f1-da6b222ecc5d}, !- Inlet Port + {9ce15c2e-fe79-4db4-8cce-2f8ec208f536}; !- Outlet Port + +OS:Connection, + {864c9ff9-e5e7-4266-a9f1-da6b222ecc5d}, !- Handle + {be9afe76-1c75-4e75-9e87-caea197b3daa}, !- Source Object + 5, !- Outlet Port + {c104fcbe-f510-4adb-ae5b-07ee2176d0ef}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9ce15c2e-fe79-4db4-8cce-2f8ec208f536}, !- Handle + {c104fcbe-f510-4adb-ae5b-07ee2176d0ef}, !- Source Object + 3, !- Outlet Port + {4ec6bc4a-c218-4ff4-a465-81a6468fd6b8}, !- Target Object + 12; !- Inlet Port + +OS:Fan:ConstantVolume, + {a5bb613a-7927-4581-b9a4-bc13dbff024b}, !- Handle + DOAS Exhaust Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.6006, !- Fan Total Efficiency + 1110.9365386, !- Pressure Rise {Pa} + 9.10143653827629, !- Maximum Flow Rate {m3/s} + 0.924, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + {3d602b62-725d-4c62-8175-48cdd6d91d31}, !- Air Inlet Node Name + {736ba393-8425-48bf-b15a-53359b58bf96}, !- Air Outlet Node Name + DOAS Fans; !- End-Use Subcategory + +OS:Node, + {ad98c3ef-7ccc-45d0-92e0-61190aeefeb2}, !- Handle + DOAS Exhaust Fan Outlet Air Node, !- Name + {736ba393-8425-48bf-b15a-53359b58bf96}, !- Inlet Port + {37a3893d-077e-40f1-80cd-a4a2c2fa1262}; !- Outlet Port + +OS:Connection, + {3d602b62-725d-4c62-8175-48cdd6d91d31}, !- Handle + {3d4aeb70-686e-453d-bc79-82c123217be6}, !- Source Object + 3, !- Outlet Port + {a5bb613a-7927-4581-b9a4-bc13dbff024b}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {736ba393-8425-48bf-b15a-53359b58bf96}, !- Handle + {a5bb613a-7927-4581-b9a4-bc13dbff024b}, !- Source Object + 9, !- Outlet Port + {ad98c3ef-7ccc-45d0-92e0-61190aeefeb2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {37a3893d-077e-40f1-80cd-a4a2c2fa1262}, !- Handle + {ad98c3ef-7ccc-45d0-92e0-61190aeefeb2}, !- Source Object + 3, !- Outlet Port + {be9afe76-1c75-4e75-9e87-caea197b3daa}, !- Target Object + 8; !- Inlet Port + +OS:SetpointManager:OutdoorAirReset, + {d9a55076-635b-4aac-9a1a-45d3d5af234f}, !- Handle + 96 Zone DOAS SAT Reset, !- Name + Temperature, !- Control Variable + 21.1111111111111, !- Setpoint at Outdoor Low Temperature {C} + 12.7777777777778, !- Outdoor Low Temperature {C} + 15.5555555555556, !- Setpoint at Outdoor High Temperature {C} + 21.1111111111111, !- Outdoor High Temperature {C} + {1d6c2574-c75d-4556-8035-f7ba2222b851}, !- Setpoint Node or NodeList Name + , !- Schedule Name + , !- Setpoint at Outdoor Low Temperature 2 {C} + , !- Outdoor Low Temperature 2 {C} + , !- Setpoint at Outdoor High Temperature 2 {C} + ; !- Outdoor High Temperature 2 {C} + +OS:AvailabilityManager:NightCycle, + {cebb4c3e-d950-4212-919a-45c0e2140558}, !- Handle + Availability Manager Night Cycle 1, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Applicability Schedule + , !- Fan Schedule + CycleOnAny, !- Control Type + 1.9999, !- Thermostat Tolerance {deltaC} + Thermostat, !- Cycling Run Time Control Type + 3600, !- Cycling Run Time {s} + {d6982b6b-1131-496d-9010-2a0d11fda362}, !- Control Zone or Zone List Name + {b66637d6-d436-4fd2-a2f3-103ba6bb4502}, !- Cooling Control Zone or Zone List Name + {6e67157f-40a8-4cd7-bc86-9bb0ad2ba42f}, !- Heating Control Zone or Zone List Name + {e7d412bb-b09b-4d59-b538-6f7034d50e3e}; !- Heating Zone Fans Only Zone or Zone List Name + +OS:ModelObjectList, + {d6982b6b-1131-496d-9010-2a0d11fda362}, !- Handle + Availability Manager Night Cycle 1 Control Zone List; !- Name + +OS:ModelObjectList, + {b66637d6-d436-4fd2-a2f3-103ba6bb4502}, !- Handle + Availability Manager Night Cycle 1 Cooling Control Zone List; !- Name + +OS:ModelObjectList, + {6e67157f-40a8-4cd7-bc86-9bb0ad2ba42f}, !- Handle + Availability Manager Night Cycle 1 Heating Control Zone List; !- Name + +OS:ModelObjectList, + {e7d412bb-b09b-4d59-b538-6f7034d50e3e}, !- Handle + Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {cbaa8823-5933-4e19-aabf-35f33b6158d1}, !- Handle + Zone Outpatient Anesthesia A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {cb972e58-b43f-4b6b-a9c0-495c12571fda}, !- Air Inlet Node Name + {1f873c59-de4c-49ca-8f95-2460ef3698c5}, !- Air Outlet Node Name + 0.0053517587084594; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {5f7ffd7c-d967-443d-adc5-23f7ede1d15d}, !- Handle + Zone Outpatient Anesthesia A - Story ground Return Air Node, !- Name + {bda29912-e5a6-4fee-b59e-7f6bf654aa92}, !- Inlet Port + {cabece02-6103-45e6-bfbb-8d771e1c0241}; !- Outlet Port + +OS:Connection, + {d35c85f1-9721-4ae6-a444-fff808034b91}, !- Handle + {0d5aa525-408c-47f4-ba22-bad40e924a05}, !- Source Object + 3, !- Outlet Port + {f006732e-7d77-416e-b3f4-3f95eb618e1a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bda29912-e5a6-4fee-b59e-7f6bf654aa92}, !- Handle + {c5a0c5fd-7fd0-4479-b8f9-7db132d1d6cc}, !- Source Object + 2, !- Outlet Port + {5f7ffd7c-d967-443d-adc5-23f7ede1d15d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {cabece02-6103-45e6-bfbb-8d771e1c0241}, !- Handle + {5f7ffd7c-d967-443d-adc5-23f7ede1d15d}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {f3c567e0-1e68-463c-bfb8-bdb28c7f6903}, !- Handle + Zone Outpatient Anesthesia A - Story ground Air Terminal Inlet Air Node, !- Name + {c55a3d22-ec29-4add-8a9f-bbeb1c365875}, !- Inlet Port + {cb972e58-b43f-4b6b-a9c0-495c12571fda}; !- Outlet Port + +OS:Connection, + {c55a3d22-ec29-4add-8a9f-bbeb1c365875}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 3, !- Outlet Port + {f3c567e0-1e68-463c-bfb8-bdb28c7f6903}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {cb972e58-b43f-4b6b-a9c0-495c12571fda}, !- Handle + {f3c567e0-1e68-463c-bfb8-bdb28c7f6903}, !- Source Object + 3, !- Outlet Port + {cbaa8823-5933-4e19-aabf-35f33b6158d1}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {1f873c59-de4c-49ca-8f95-2460ef3698c5}, !- Handle + {cbaa8823-5933-4e19-aabf-35f33b6158d1}, !- Source Object + 4, !- Outlet Port + {0d5aa525-408c-47f4-ba22-bad40e924a05}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {8741b971-3bde-48f9-a894-37f72325bf4b}, !- Handle + Schedule Constant 1, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {6ab55bf5-3cf2-48ad-9da4-1e048f348c43}, !- Handle + Schedule Constant 2, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {a160a2ce-20ab-4a8d-b9de-37e7fcc81a58}, !- Handle + Zone Outpatient Anesthesia B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {17cc2f12-06ee-4941-bb40-61c5748a34b6}, !- Air Inlet Node Name + {b75006a3-9a58-46bb-b721-0c9eab0dcfd6}, !- Air Outlet Node Name + 0.0435202313762822; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {9f3f4df3-3a97-4e12-ba5c-ac03c1387de3}, !- Handle + Zone Outpatient Anesthesia B - Story ground Air Terminal Outlet Air Node, !- Name + {b75006a3-9a58-46bb-b721-0c9eab0dcfd6}, !- Inlet Port + {aeddcf12-30f6-49f8-b409-180362ed7fa4}; !- Outlet Port + +OS:Node, + {c6f9de6f-12db-491d-8c47-6938db32483b}, !- Handle + Zone Outpatient Anesthesia B - Story ground Return Air Node, !- Name + {0029acc0-a913-4d85-9e77-1cb48be46001}, !- Inlet Port + {12d7ed0b-697f-4ad1-8fc2-53ea90b84084}; !- Outlet Port + +OS:Connection, + {aeddcf12-30f6-49f8-b409-180362ed7fa4}, !- Handle + {9f3f4df3-3a97-4e12-ba5c-ac03c1387de3}, !- Source Object + 3, !- Outlet Port + {a31419b7-7a96-4c1d-9299-392563e67500}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0029acc0-a913-4d85-9e77-1cb48be46001}, !- Handle + {28ab78d5-19a6-4277-8a3a-d7ca1a107ab7}, !- Source Object + 2, !- Outlet Port + {c6f9de6f-12db-491d-8c47-6938db32483b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {12d7ed0b-697f-4ad1-8fc2-53ea90b84084}, !- Handle + {c6f9de6f-12db-491d-8c47-6938db32483b}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 4; !- Inlet Port + +OS:Node, + {4595059d-9a33-4c98-8ebd-d5180d51f4c0}, !- Handle + Zone Outpatient Anesthesia B - Story ground Air Terminal Inlet Air Node, !- Name + {dd21508b-4cc9-415a-8478-be7a60d5eddd}, !- Inlet Port + {17cc2f12-06ee-4941-bb40-61c5748a34b6}; !- Outlet Port + +OS:Connection, + {dd21508b-4cc9-415a-8478-be7a60d5eddd}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 4, !- Outlet Port + {4595059d-9a33-4c98-8ebd-d5180d51f4c0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {17cc2f12-06ee-4941-bb40-61c5748a34b6}, !- Handle + {4595059d-9a33-4c98-8ebd-d5180d51f4c0}, !- Source Object + 3, !- Outlet Port + {a160a2ce-20ab-4a8d-b9de-37e7fcc81a58}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {b75006a3-9a58-46bb-b721-0c9eab0dcfd6}, !- Handle + {a160a2ce-20ab-4a8d-b9de-37e7fcc81a58}, !- Source Object + 4, !- Outlet Port + {9f3f4df3-3a97-4e12-ba5c-ac03c1387de3}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {c3b734c4-1515-4ef1-a08d-bea350b04f40}, !- Handle + Schedule Constant 3, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {c8d0b368-3fc7-49fe-b590-ebb5fdc5a269}, !- Handle + Schedule Constant 4, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {8598a5b1-c33e-45d5-bcd0-45476aed716a}, !- Handle + Zone Outpatient Anesthesia C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {c91e6449-b71c-4154-b2e9-f27b2d539173}, !- Air Inlet Node Name + {cd3de5c2-0662-4f10-8094-30697bbf59e0}, !- Air Outlet Node Name + 0.0053517587084593; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {2eb41f25-ba40-49f7-bb5b-b4600c3d49e2}, !- Handle + Zone Outpatient Anesthesia C - Story ground Air Terminal Outlet Air Node, !- Name + {cd3de5c2-0662-4f10-8094-30697bbf59e0}, !- Inlet Port + {4d19c315-fd41-4686-9b2b-cfa01df89c18}; !- Outlet Port + +OS:Node, + {4f7cc660-a95b-4e94-97b7-627b86311f5a}, !- Handle + Zone Outpatient Anesthesia C - Story ground Return Air Node, !- Name + {40b37d1f-7edd-4381-819e-b7d9921caf63}, !- Inlet Port + {1a0ca7a8-3c61-4c2e-ad19-f3a1f68ab787}; !- Outlet Port + +OS:Connection, + {4d19c315-fd41-4686-9b2b-cfa01df89c18}, !- Handle + {2eb41f25-ba40-49f7-bb5b-b4600c3d49e2}, !- Source Object + 3, !- Outlet Port + {4514ca83-cd5a-4551-8be9-148d3a4047b8}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {40b37d1f-7edd-4381-819e-b7d9921caf63}, !- Handle + {470d35e3-624c-4b80-a1fb-ad0ba4f16721}, !- Source Object + 2, !- Outlet Port + {4f7cc660-a95b-4e94-97b7-627b86311f5a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1a0ca7a8-3c61-4c2e-ad19-f3a1f68ab787}, !- Handle + {4f7cc660-a95b-4e94-97b7-627b86311f5a}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 5; !- Inlet Port + +OS:Node, + {2e8eebd2-fc2d-433b-9c9e-4d04895531bd}, !- Handle + Zone Outpatient Anesthesia C - Story ground Air Terminal Inlet Air Node, !- Name + {c2c87adc-3c08-43e9-8b7f-ebbb295f7904}, !- Inlet Port + {c91e6449-b71c-4154-b2e9-f27b2d539173}; !- Outlet Port + +OS:Connection, + {c2c87adc-3c08-43e9-8b7f-ebbb295f7904}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 5, !- Outlet Port + {2e8eebd2-fc2d-433b-9c9e-4d04895531bd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c91e6449-b71c-4154-b2e9-f27b2d539173}, !- Handle + {2e8eebd2-fc2d-433b-9c9e-4d04895531bd}, !- Source Object + 3, !- Outlet Port + {8598a5b1-c33e-45d5-bcd0-45476aed716a}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {cd3de5c2-0662-4f10-8094-30697bbf59e0}, !- Handle + {8598a5b1-c33e-45d5-bcd0-45476aed716a}, !- Source Object + 4, !- Outlet Port + {2eb41f25-ba40-49f7-bb5b-b4600c3d49e2}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {411298ec-ce6d-40c6-88e8-65d0fca7b843}, !- Handle + Schedule Constant 5, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {fa5e6954-7a38-446b-bdb4-3815ccb96cc3}, !- Handle + Schedule Constant 6, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {1743d4ee-2fa5-4544-be60-f22dbec284ff}, !- Handle + Zone Outpatient BioHazard A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {e846805a-21f2-473d-97ad-5bf2c2532783}, !- Air Inlet Node Name + {1b88737b-1526-4c71-ba47-c914f7ddfc4a}, !- Air Outlet Node Name + 0; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {a2841046-ae85-4a39-a781-f8fd1006f34e}, !- Handle + Zone Outpatient BioHazard A - Story ground Air Terminal Outlet Air Node, !- Name + {1b88737b-1526-4c71-ba47-c914f7ddfc4a}, !- Inlet Port + {01a534b4-34c9-4f8a-bc08-aa7e24dd90c6}; !- Outlet Port + +OS:Node, + {11f24697-2cbe-4fee-bf2a-83da29d6e863}, !- Handle + Zone Outpatient BioHazard A - Story ground Return Air Node, !- Name + {20826aff-2e70-4864-b21b-784936863623}, !- Inlet Port + {58616d50-008c-4b49-b8b0-f58cc6ec0102}; !- Outlet Port + +OS:Connection, + {01a534b4-34c9-4f8a-bc08-aa7e24dd90c6}, !- Handle + {a2841046-ae85-4a39-a781-f8fd1006f34e}, !- Source Object + 3, !- Outlet Port + {25d74a51-df4c-4df1-b554-aed5ad29bc7a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {20826aff-2e70-4864-b21b-784936863623}, !- Handle + {d77c4ac7-eabf-431d-b860-6c6a9b77e5ff}, !- Source Object + 2, !- Outlet Port + {11f24697-2cbe-4fee-bf2a-83da29d6e863}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {58616d50-008c-4b49-b8b0-f58cc6ec0102}, !- Handle + {11f24697-2cbe-4fee-bf2a-83da29d6e863}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 6; !- Inlet Port + +OS:Node, + {2aebe833-810e-414f-ad1b-63a68b7e5692}, !- Handle + Zone Outpatient BioHazard A - Story ground Air Terminal Inlet Air Node, !- Name + {42b896da-8b95-4fa2-8042-3032cd0f29ed}, !- Inlet Port + {e846805a-21f2-473d-97ad-5bf2c2532783}; !- Outlet Port + +OS:Connection, + {42b896da-8b95-4fa2-8042-3032cd0f29ed}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 6, !- Outlet Port + {2aebe833-810e-414f-ad1b-63a68b7e5692}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e846805a-21f2-473d-97ad-5bf2c2532783}, !- Handle + {2aebe833-810e-414f-ad1b-63a68b7e5692}, !- Source Object + 3, !- Outlet Port + {1743d4ee-2fa5-4544-be60-f22dbec284ff}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {1b88737b-1526-4c71-ba47-c914f7ddfc4a}, !- Handle + {1743d4ee-2fa5-4544-be60-f22dbec284ff}, !- Source Object + 4, !- Outlet Port + {a2841046-ae85-4a39-a781-f8fd1006f34e}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {0ba0da35-0556-4368-a1b2-82b5f204287f}, !- Handle + Schedule Constant 7, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {692ec71b-eedc-43af-9d59-f68076a45e69}, !- Handle + Schedule Constant 8, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {c4570aee-4fc6-4dc4-af28-7cb3459cedab}, !- Handle + Zone Outpatient BioHazard B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {42b375d0-43ba-4a93-bf7b-c08bb0f21c21}, !- Air Inlet Node Name + {7e9ed2c6-0c2a-4d12-835e-9b146d3d2843}, !- Air Outlet Node Name + 0.00781132358035597; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {65dd2adf-e33f-4a66-a60e-00cf44a8bf18}, !- Handle + Zone Outpatient BioHazard B - Story ground Air Terminal Outlet Air Node, !- Name + {7e9ed2c6-0c2a-4d12-835e-9b146d3d2843}, !- Inlet Port + {ae4cd534-9771-45ed-a4db-23979f9664f7}; !- Outlet Port + +OS:Node, + {0727a533-87e6-41d0-a7e0-bc099355e47e}, !- Handle + Zone Outpatient BioHazard B - Story ground Return Air Node, !- Name + {44ab28d0-f61b-46b9-bb3a-baae5a922619}, !- Inlet Port + {d3d9eef4-b630-4830-890d-0f703eae3889}; !- Outlet Port + +OS:Connection, + {ae4cd534-9771-45ed-a4db-23979f9664f7}, !- Handle + {65dd2adf-e33f-4a66-a60e-00cf44a8bf18}, !- Source Object + 3, !- Outlet Port + {a73cdb59-88a4-4efb-898a-a936b9d4532c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {44ab28d0-f61b-46b9-bb3a-baae5a922619}, !- Handle + {c5465e0e-e68b-44ed-8f75-32929bac7232}, !- Source Object + 2, !- Outlet Port + {0727a533-87e6-41d0-a7e0-bc099355e47e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d3d9eef4-b630-4830-890d-0f703eae3889}, !- Handle + {0727a533-87e6-41d0-a7e0-bc099355e47e}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 7; !- Inlet Port + +OS:Node, + {2c8c4d9a-8a51-4b00-afa1-9aba6116f959}, !- Handle + Zone Outpatient BioHazard B - Story ground Air Terminal Inlet Air Node, !- Name + {7bdcfce3-df9b-43ee-9af3-5ac8b18a7bf3}, !- Inlet Port + {42b375d0-43ba-4a93-bf7b-c08bb0f21c21}; !- Outlet Port + +OS:Connection, + {7bdcfce3-df9b-43ee-9af3-5ac8b18a7bf3}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 7, !- Outlet Port + {2c8c4d9a-8a51-4b00-afa1-9aba6116f959}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {42b375d0-43ba-4a93-bf7b-c08bb0f21c21}, !- Handle + {2c8c4d9a-8a51-4b00-afa1-9aba6116f959}, !- Source Object + 3, !- Outlet Port + {c4570aee-4fc6-4dc4-af28-7cb3459cedab}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {7e9ed2c6-0c2a-4d12-835e-9b146d3d2843}, !- Handle + {c4570aee-4fc6-4dc4-af28-7cb3459cedab}, !- Source Object + 4, !- Outlet Port + {65dd2adf-e33f-4a66-a60e-00cf44a8bf18}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {3b5929a6-05bd-4ee8-a2a9-75d7cdb3e10e}, !- Handle + Schedule Constant 9, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {5f23f375-b201-411d-b37b-1eba3b1dd258}, !- Handle + Schedule Constant 10, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {b25ba963-0149-4c4b-b46e-e4f4a8539691}, !- Handle + Zone Outpatient BioHazard C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {713b51f4-ce14-4950-8b13-f76e0adf2c59}, !- Air Inlet Node Name + {2b70e96b-4e02-4947-980b-aaccc2b59c88}, !- Air Outlet Node Name + 0; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {71a4d611-257e-4904-95eb-2d0e27c491e2}, !- Handle + Zone Outpatient BioHazard C - Story ground Air Terminal Outlet Air Node, !- Name + {2b70e96b-4e02-4947-980b-aaccc2b59c88}, !- Inlet Port + {9ca78d38-d49b-4e89-8ca7-4ea2eb6af863}; !- Outlet Port + +OS:Node, + {333f2d8c-ca3d-40a4-bb56-b94c46ff5696}, !- Handle + Zone Outpatient BioHazard C - Story ground Return Air Node, !- Name + {504437de-ca86-4d49-9284-ac052563d714}, !- Inlet Port + {0753c4bd-960c-443f-a839-407aae0cf567}; !- Outlet Port + +OS:Connection, + {9ca78d38-d49b-4e89-8ca7-4ea2eb6af863}, !- Handle + {71a4d611-257e-4904-95eb-2d0e27c491e2}, !- Source Object + 3, !- Outlet Port + {518cf85b-e755-4a02-9a70-9b71a7295f27}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {504437de-ca86-4d49-9284-ac052563d714}, !- Handle + {db541477-03ed-420d-b7a3-ca5cc76476c4}, !- Source Object + 2, !- Outlet Port + {333f2d8c-ca3d-40a4-bb56-b94c46ff5696}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0753c4bd-960c-443f-a839-407aae0cf567}, !- Handle + {333f2d8c-ca3d-40a4-bb56-b94c46ff5696}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 8; !- Inlet Port + +OS:Node, + {6d8520cc-3ac2-4800-abf1-11515dbda98d}, !- Handle + Zone Outpatient BioHazard C - Story ground Air Terminal Inlet Air Node, !- Name + {1586fc3f-f7ec-46d0-a00c-467cf94812c5}, !- Inlet Port + {713b51f4-ce14-4950-8b13-f76e0adf2c59}; !- Outlet Port + +OS:Connection, + {1586fc3f-f7ec-46d0-a00c-467cf94812c5}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 8, !- Outlet Port + {6d8520cc-3ac2-4800-abf1-11515dbda98d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {713b51f4-ce14-4950-8b13-f76e0adf2c59}, !- Handle + {6d8520cc-3ac2-4800-abf1-11515dbda98d}, !- Source Object + 3, !- Outlet Port + {b25ba963-0149-4c4b-b46e-e4f4a8539691}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {2b70e96b-4e02-4947-980b-aaccc2b59c88}, !- Handle + {b25ba963-0149-4c4b-b46e-e4f4a8539691}, !- Source Object + 4, !- Outlet Port + {71a4d611-257e-4904-95eb-2d0e27c491e2}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {70a7b9c0-1dfa-4995-9465-9bffa2433618}, !- Handle + Schedule Constant 11, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {90d4cf3e-ce89-403d-8ced-868623722333}, !- Handle + Schedule Constant 12, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {cea7f45e-ccc0-4c1f-bd47-50f3582669de}, !- Handle + Zone Outpatient Cafe A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {ccda4489-f019-4405-9e6a-369504794061}, !- Air Inlet Node Name + {6c722e03-86cb-4a54-ad12-7b3158dc2865}, !- Air Outlet Node Name + 0.0875373906899605; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {c46af3b3-6377-4f8f-ba9c-ac5f50fe1ce6}, !- Handle + Zone Outpatient Cafe A - Story ground Air Terminal Outlet Air Node, !- Name + {6c722e03-86cb-4a54-ad12-7b3158dc2865}, !- Inlet Port + {7fc1c0fe-1473-4366-8558-b297060b5b1b}; !- Outlet Port + +OS:Node, + {77c9f963-f803-48a6-8b29-6fb6f272898d}, !- Handle + Zone Outpatient Cafe A - Story ground Return Air Node, !- Name + {10d1137d-9c15-46ce-a122-64b54715583c}, !- Inlet Port + {96f2f857-1e32-45b6-8223-d1fdd2e62bd6}; !- Outlet Port + +OS:Connection, + {7fc1c0fe-1473-4366-8558-b297060b5b1b}, !- Handle + {c46af3b3-6377-4f8f-ba9c-ac5f50fe1ce6}, !- Source Object + 3, !- Outlet Port + {4ae69b1f-dadb-49ae-874f-a10896cd3d59}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {10d1137d-9c15-46ce-a122-64b54715583c}, !- Handle + {85f11caf-8133-46d6-957f-415933a5d581}, !- Source Object + 2, !- Outlet Port + {77c9f963-f803-48a6-8b29-6fb6f272898d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {96f2f857-1e32-45b6-8223-d1fdd2e62bd6}, !- Handle + {77c9f963-f803-48a6-8b29-6fb6f272898d}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 9; !- Inlet Port + +OS:Node, + {1a473cc6-2da7-4a5c-ad14-257c300eb498}, !- Handle + Zone Outpatient Cafe A - Story ground Air Terminal Inlet Air Node, !- Name + {22b3e23e-dcad-4e4a-b9d4-34f306649277}, !- Inlet Port + {ccda4489-f019-4405-9e6a-369504794061}; !- Outlet Port + +OS:Connection, + {22b3e23e-dcad-4e4a-b9d4-34f306649277}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 9, !- Outlet Port + {1a473cc6-2da7-4a5c-ad14-257c300eb498}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ccda4489-f019-4405-9e6a-369504794061}, !- Handle + {1a473cc6-2da7-4a5c-ad14-257c300eb498}, !- Source Object + 3, !- Outlet Port + {cea7f45e-ccc0-4c1f-bd47-50f3582669de}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {6c722e03-86cb-4a54-ad12-7b3158dc2865}, !- Handle + {cea7f45e-ccc0-4c1f-bd47-50f3582669de}, !- Source Object + 4, !- Outlet Port + {c46af3b3-6377-4f8f-ba9c-ac5f50fe1ce6}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {9ee3ff9c-26a6-4049-98b2-e8b2a6e00d99}, !- Handle + Schedule Constant 13, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {62d1b100-cceb-41dc-bdd8-9ead3eb27695}, !- Handle + Schedule Constant 14, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {7a963c94-50ac-424e-9cd9-bd2887713e40}, !- Handle + Zone Outpatient Cafe B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {10498565-1ef2-4dd0-8a5c-c3f06c3ca370}, !- Air Inlet Node Name + {d68d99e9-45b2-475a-9275-1140cd4744b5}, !- Air Outlet Node Name + 0.711849637555828; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {88814a48-7095-40e9-8e2a-344890dd1236}, !- Handle + Zone Outpatient Cafe B - Story ground Air Terminal Outlet Air Node, !- Name + {d68d99e9-45b2-475a-9275-1140cd4744b5}, !- Inlet Port + {812b72aa-7881-4f96-b809-f11df503f287}; !- Outlet Port + +OS:Node, + {5f383eaa-5ad4-4707-a115-db7e86e746ae}, !- Handle + Zone Outpatient Cafe B - Story ground Return Air Node, !- Name + {405a5d79-cddd-4cc4-a4e1-1a25577f8ef3}, !- Inlet Port + {140f9536-7e56-438e-9060-21549ea0b9fd}; !- Outlet Port + +OS:Connection, + {812b72aa-7881-4f96-b809-f11df503f287}, !- Handle + {88814a48-7095-40e9-8e2a-344890dd1236}, !- Source Object + 3, !- Outlet Port + {05e9dc6e-6c8a-4d5a-b4b1-27a97e5e6f91}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {405a5d79-cddd-4cc4-a4e1-1a25577f8ef3}, !- Handle + {cef5d181-54bb-4cf1-8f1f-0424908cb5a9}, !- Source Object + 2, !- Outlet Port + {5f383eaa-5ad4-4707-a115-db7e86e746ae}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {140f9536-7e56-438e-9060-21549ea0b9fd}, !- Handle + {5f383eaa-5ad4-4707-a115-db7e86e746ae}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 10; !- Inlet Port + +OS:Node, + {cf79ca8f-179d-463b-aee1-e34fccadbe1d}, !- Handle + Zone Outpatient Cafe B - Story ground Air Terminal Inlet Air Node, !- Name + {2c68137b-0694-4102-a2ff-0cbd02ab1642}, !- Inlet Port + {10498565-1ef2-4dd0-8a5c-c3f06c3ca370}; !- Outlet Port + +OS:Connection, + {2c68137b-0694-4102-a2ff-0cbd02ab1642}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 10, !- Outlet Port + {cf79ca8f-179d-463b-aee1-e34fccadbe1d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {10498565-1ef2-4dd0-8a5c-c3f06c3ca370}, !- Handle + {cf79ca8f-179d-463b-aee1-e34fccadbe1d}, !- Source Object + 3, !- Outlet Port + {7a963c94-50ac-424e-9cd9-bd2887713e40}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {d68d99e9-45b2-475a-9275-1140cd4744b5}, !- Handle + {7a963c94-50ac-424e-9cd9-bd2887713e40}, !- Source Object + 4, !- Outlet Port + {88814a48-7095-40e9-8e2a-344890dd1236}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {2c1875e2-9870-468b-a135-cb1936bd6fcf}, !- Handle + Schedule Constant 15, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {b0d24390-b8fe-412c-a1a5-a100a1099ec6}, !- Handle + Schedule Constant 16, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {79b6e49c-e6e7-4f06-b7c6-cb0fbfc8d016}, !- Handle + Zone Outpatient Cafe C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {61a19831-b7f4-4f43-9a73-14f2352aa9eb}, !- Air Inlet Node Name + {66d8a5d6-7b05-4682-9d02-3b67ae7935b1}, !- Air Outlet Node Name + 0.0875373906899601; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {506a0a0e-3516-41d1-bdf2-b26885f0bc8a}, !- Handle + Zone Outpatient Cafe C - Story ground Air Terminal Outlet Air Node, !- Name + {66d8a5d6-7b05-4682-9d02-3b67ae7935b1}, !- Inlet Port + {787f573d-81bf-430a-96cd-96cf29be0541}; !- Outlet Port + +OS:Node, + {a52c2549-51cc-45d5-b121-058da73bbf87}, !- Handle + Zone Outpatient Cafe C - Story ground Return Air Node, !- Name + {ca4ce64a-57f7-4a63-8289-d007295ca6bb}, !- Inlet Port + {def3fad3-b251-403a-93a8-fe996d30861a}; !- Outlet Port + +OS:Connection, + {787f573d-81bf-430a-96cd-96cf29be0541}, !- Handle + {506a0a0e-3516-41d1-bdf2-b26885f0bc8a}, !- Source Object + 3, !- Outlet Port + {83954003-466a-484e-9f70-fb7b315aef8b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ca4ce64a-57f7-4a63-8289-d007295ca6bb}, !- Handle + {305b4f41-32aa-40c1-8aaf-7d43b7d45ecc}, !- Source Object + 2, !- Outlet Port + {a52c2549-51cc-45d5-b121-058da73bbf87}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {def3fad3-b251-403a-93a8-fe996d30861a}, !- Handle + {a52c2549-51cc-45d5-b121-058da73bbf87}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 11; !- Inlet Port + +OS:Node, + {f11a0315-4055-4f25-958e-d04d01b1a944}, !- Handle + Zone Outpatient Cafe C - Story ground Air Terminal Inlet Air Node, !- Name + {47fdf745-4dd8-4025-bf33-7675fd02e985}, !- Inlet Port + {61a19831-b7f4-4f43-9a73-14f2352aa9eb}; !- Outlet Port + +OS:Connection, + {47fdf745-4dd8-4025-bf33-7675fd02e985}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 11, !- Outlet Port + {f11a0315-4055-4f25-958e-d04d01b1a944}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {61a19831-b7f4-4f43-9a73-14f2352aa9eb}, !- Handle + {f11a0315-4055-4f25-958e-d04d01b1a944}, !- Source Object + 3, !- Outlet Port + {79b6e49c-e6e7-4f06-b7c6-cb0fbfc8d016}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {66d8a5d6-7b05-4682-9d02-3b67ae7935b1}, !- Handle + {79b6e49c-e6e7-4f06-b7c6-cb0fbfc8d016}, !- Source Object + 4, !- Outlet Port + {506a0a0e-3516-41d1-bdf2-b26885f0bc8a}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {245af122-2d01-4d34-9f13-73fe7dac80bf}, !- Handle + Schedule Constant 17, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {6bd2d375-e327-4c2b-8527-9d4768a648e9}, !- Handle + Schedule Constant 18, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {b4db1235-ea23-4e08-8536-5266d9d3fb2d}, !- Handle + Zone Outpatient CleanWork A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {2a7fa53d-76ae-4556-93b4-7df0e13572ae}, !- Air Inlet Node Name + {2954944f-f505-4c12-b5dd-fd67a2fe8248}, !- Air Outlet Node Name + 0.00974294534103978; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {5fffed36-1ddf-4279-b47a-90907119bb20}, !- Handle + Zone Outpatient CleanWork A - Story ground Air Terminal Outlet Air Node, !- Name + {2954944f-f505-4c12-b5dd-fd67a2fe8248}, !- Inlet Port + {49823f44-0a66-4efe-80a4-56bc43acae94}; !- Outlet Port + +OS:Node, + {aa9de338-b9bc-4d17-ad8d-5e4c25ccb5d0}, !- Handle + Zone Outpatient CleanWork A - Story ground Return Air Node, !- Name + {3bd14383-be23-4d05-a56c-bddb052d02bc}, !- Inlet Port + {ab6fef81-88ff-41d6-a974-923d52e3a275}; !- Outlet Port + +OS:Connection, + {49823f44-0a66-4efe-80a4-56bc43acae94}, !- Handle + {5fffed36-1ddf-4279-b47a-90907119bb20}, !- Source Object + 3, !- Outlet Port + {e862de05-130b-4f54-a644-a8ec575ab301}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3bd14383-be23-4d05-a56c-bddb052d02bc}, !- Handle + {666d4dc8-3d08-44c7-b7d5-c94cfb609ff9}, !- Source Object + 2, !- Outlet Port + {aa9de338-b9bc-4d17-ad8d-5e4c25ccb5d0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ab6fef81-88ff-41d6-a974-923d52e3a275}, !- Handle + {aa9de338-b9bc-4d17-ad8d-5e4c25ccb5d0}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 12; !- Inlet Port + +OS:Node, + {b0946d3b-6850-4482-b478-a80f6e2347cc}, !- Handle + Zone Outpatient CleanWork A - Story ground Air Terminal Inlet Air Node, !- Name + {22e66866-cf07-45da-9afc-7156bd6bb79a}, !- Inlet Port + {2a7fa53d-76ae-4556-93b4-7df0e13572ae}; !- Outlet Port + +OS:Connection, + {22e66866-cf07-45da-9afc-7156bd6bb79a}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 12, !- Outlet Port + {b0946d3b-6850-4482-b478-a80f6e2347cc}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2a7fa53d-76ae-4556-93b4-7df0e13572ae}, !- Handle + {b0946d3b-6850-4482-b478-a80f6e2347cc}, !- Source Object + 3, !- Outlet Port + {b4db1235-ea23-4e08-8536-5266d9d3fb2d}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {2954944f-f505-4c12-b5dd-fd67a2fe8248}, !- Handle + {b4db1235-ea23-4e08-8536-5266d9d3fb2d}, !- Source Object + 4, !- Outlet Port + {5fffed36-1ddf-4279-b47a-90907119bb20}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {3bc258fc-f2b2-4b78-afe8-a9cf03e65940}, !- Handle + Schedule Constant 19, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {800e64b0-0aa8-43e9-9d47-52de7c6c9ee0}, !- Handle + Schedule Constant 20, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {3472d834-24d4-48b0-be7b-b7d4412d73af}, !- Handle + Zone Outpatient CleanWork B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {5249f86d-8b94-4f13-9646-4a04112baaf7}, !- Air Inlet Node Name + {8a94f81f-e99a-4e44-9d53-5a412efa98da}, !- Air Outlet Node Name + 0.0792291391721915; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {ef6ceed0-76b5-4c28-adee-6f074b6e8aa4}, !- Handle + Zone Outpatient CleanWork B - Story ground Air Terminal Outlet Air Node, !- Name + {8a94f81f-e99a-4e44-9d53-5a412efa98da}, !- Inlet Port + {d40367d7-7de9-441a-aca5-f75cc9dff6c8}; !- Outlet Port + +OS:Node, + {a86f3efd-e5f3-4a41-8ae0-b93110f807a1}, !- Handle + Zone Outpatient CleanWork B - Story ground Return Air Node, !- Name + {a7d751a6-781b-47d1-b088-c06a577aba09}, !- Inlet Port + {d1592e48-0d9a-430b-8a54-b1a8b0262509}; !- Outlet Port + +OS:Connection, + {d40367d7-7de9-441a-aca5-f75cc9dff6c8}, !- Handle + {ef6ceed0-76b5-4c28-adee-6f074b6e8aa4}, !- Source Object + 3, !- Outlet Port + {e8255693-cf46-459b-9a6e-1cd23e09d5d6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a7d751a6-781b-47d1-b088-c06a577aba09}, !- Handle + {2448a4db-dad9-4948-a7b0-2462940274c3}, !- Source Object + 2, !- Outlet Port + {a86f3efd-e5f3-4a41-8ae0-b93110f807a1}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d1592e48-0d9a-430b-8a54-b1a8b0262509}, !- Handle + {a86f3efd-e5f3-4a41-8ae0-b93110f807a1}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 13; !- Inlet Port + +OS:Node, + {6dc60c5c-5412-49f8-b7a0-4d1bf5d67933}, !- Handle + Zone Outpatient CleanWork B - Story ground Air Terminal Inlet Air Node, !- Name + {b3f19f3c-e831-4230-8204-683b38a81633}, !- Inlet Port + {5249f86d-8b94-4f13-9646-4a04112baaf7}; !- Outlet Port + +OS:Connection, + {b3f19f3c-e831-4230-8204-683b38a81633}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 13, !- Outlet Port + {6dc60c5c-5412-49f8-b7a0-4d1bf5d67933}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {5249f86d-8b94-4f13-9646-4a04112baaf7}, !- Handle + {6dc60c5c-5412-49f8-b7a0-4d1bf5d67933}, !- Source Object + 3, !- Outlet Port + {3472d834-24d4-48b0-be7b-b7d4412d73af}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {8a94f81f-e99a-4e44-9d53-5a412efa98da}, !- Handle + {3472d834-24d4-48b0-be7b-b7d4412d73af}, !- Source Object + 4, !- Outlet Port + {ef6ceed0-76b5-4c28-adee-6f074b6e8aa4}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {a16664ab-b7c9-453c-8e72-95321f9cf927}, !- Handle + Schedule Constant 21, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {56deb7d4-4670-4788-aae4-7f71690fc6ad}, !- Handle + Schedule Constant 22, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {8cd69ef4-5a1e-4253-874a-5ef1f5b5c489}, !- Handle + Zone Outpatient CleanWork C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {e1ab7167-bb94-4623-aae1-d5965278e5e4}, !- Air Inlet Node Name + {a6f63c3c-212d-4f5a-897b-7c4999045bdc}, !- Air Outlet Node Name + 0.00974294534103976; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {e9960641-0758-4f00-bbc5-16e2e1f438ff}, !- Handle + Zone Outpatient CleanWork C - Story ground Air Terminal Outlet Air Node, !- Name + {a6f63c3c-212d-4f5a-897b-7c4999045bdc}, !- Inlet Port + {5dbbaed1-17ac-4086-8d8c-efed3c45e711}; !- Outlet Port + +OS:Node, + {29a5e62c-7ca3-4f96-8900-0a5738441589}, !- Handle + Zone Outpatient CleanWork C - Story ground Return Air Node, !- Name + {9219c879-72e5-43ad-925a-6a8b4e6bcbf7}, !- Inlet Port + {0ab5d606-f243-47bf-bc02-da615d84ec62}; !- Outlet Port + +OS:Connection, + {5dbbaed1-17ac-4086-8d8c-efed3c45e711}, !- Handle + {e9960641-0758-4f00-bbc5-16e2e1f438ff}, !- Source Object + 3, !- Outlet Port + {a476ca78-06e6-4281-b7dc-b8e19656fff7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9219c879-72e5-43ad-925a-6a8b4e6bcbf7}, !- Handle + {1855496e-ffa0-4903-abe6-1a113767431b}, !- Source Object + 2, !- Outlet Port + {29a5e62c-7ca3-4f96-8900-0a5738441589}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0ab5d606-f243-47bf-bc02-da615d84ec62}, !- Handle + {29a5e62c-7ca3-4f96-8900-0a5738441589}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 14; !- Inlet Port + +OS:Node, + {d179118c-cb48-49aa-a4c6-b014b5487133}, !- Handle + Zone Outpatient CleanWork C - Story ground Air Terminal Inlet Air Node, !- Name + {f80a4761-5f16-4548-8f8d-3a8904316fe7}, !- Inlet Port + {e1ab7167-bb94-4623-aae1-d5965278e5e4}; !- Outlet Port + +OS:Connection, + {f80a4761-5f16-4548-8f8d-3a8904316fe7}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 14, !- Outlet Port + {d179118c-cb48-49aa-a4c6-b014b5487133}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e1ab7167-bb94-4623-aae1-d5965278e5e4}, !- Handle + {d179118c-cb48-49aa-a4c6-b014b5487133}, !- Source Object + 3, !- Outlet Port + {8cd69ef4-5a1e-4253-874a-5ef1f5b5c489}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {a6f63c3c-212d-4f5a-897b-7c4999045bdc}, !- Handle + {8cd69ef4-5a1e-4253-874a-5ef1f5b5c489}, !- Source Object + 4, !- Outlet Port + {e9960641-0758-4f00-bbc5-16e2e1f438ff}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {a366a726-2993-41ad-8214-3f8bb6ee931a}, !- Handle + Schedule Constant 23, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {0a031bd6-3f07-453c-bf67-2bc6d17d0be0}, !- Handle + Schedule Constant 24, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {e59bdda4-e59e-4afc-bec6-85091b870875}, !- Handle + Zone Outpatient Conference A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {945c2a75-4920-4003-a522-58b985100a4a}, !- Air Inlet Node Name + {1fc3904f-f0d3-4316-af04-48418da5e40a}, !- Air Outlet Node Name + 0.034844980760081; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {e608da7f-1fa1-4f71-a23e-9dd49db0cbbe}, !- Handle + Zone Outpatient Conference A - Story ground Air Terminal Outlet Air Node, !- Name + {1fc3904f-f0d3-4316-af04-48418da5e40a}, !- Inlet Port + {4234bf74-529a-49f0-a483-92f2fe4b59f6}; !- Outlet Port + +OS:Node, + {a244fc05-9e2a-4252-a7d3-4bb6f508573c}, !- Handle + Zone Outpatient Conference A - Story ground Return Air Node, !- Name + {bab94e22-bb53-420a-ac44-7e83c7c6b7db}, !- Inlet Port + {eed0b404-506c-411d-aff4-8af1cc0e1baa}; !- Outlet Port + +OS:Connection, + {4234bf74-529a-49f0-a483-92f2fe4b59f6}, !- Handle + {e608da7f-1fa1-4f71-a23e-9dd49db0cbbe}, !- Source Object + 3, !- Outlet Port + {d8094532-a9d4-4c02-9d69-22e1cfeb16b0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bab94e22-bb53-420a-ac44-7e83c7c6b7db}, !- Handle + {17e176c3-77e0-47f9-8dd7-75df93e53970}, !- Source Object + 2, !- Outlet Port + {a244fc05-9e2a-4252-a7d3-4bb6f508573c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {eed0b404-506c-411d-aff4-8af1cc0e1baa}, !- Handle + {a244fc05-9e2a-4252-a7d3-4bb6f508573c}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 15; !- Inlet Port + +OS:Node, + {c718f8f6-0a3e-46cc-a62a-58bdb6a39d45}, !- Handle + Zone Outpatient Conference A - Story ground Air Terminal Inlet Air Node, !- Name + {00203e57-a06c-48ad-b690-b4a55808861c}, !- Inlet Port + {945c2a75-4920-4003-a522-58b985100a4a}; !- Outlet Port + +OS:Connection, + {00203e57-a06c-48ad-b690-b4a55808861c}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 15, !- Outlet Port + {c718f8f6-0a3e-46cc-a62a-58bdb6a39d45}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {945c2a75-4920-4003-a522-58b985100a4a}, !- Handle + {c718f8f6-0a3e-46cc-a62a-58bdb6a39d45}, !- Source Object + 3, !- Outlet Port + {e59bdda4-e59e-4afc-bec6-85091b870875}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {1fc3904f-f0d3-4316-af04-48418da5e40a}, !- Handle + {e59bdda4-e59e-4afc-bec6-85091b870875}, !- Source Object + 4, !- Outlet Port + {e608da7f-1fa1-4f71-a23e-9dd49db0cbbe}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {e3868add-47de-432e-b829-d1d57487f2b1}, !- Handle + Schedule Constant 25, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {0b7b07cf-5933-4454-8487-faddd76be6ff}, !- Handle + Schedule Constant 26, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {8ea298a0-9113-45d8-a1ab-c3463125d0e2}, !- Handle + Zone Outpatient Conference B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {78388210-aff3-4498-b6b7-1b34994edb29}, !- Air Inlet Node Name + {7305bc7a-a127-4e9d-855a-170120f03132}, !- Air Outlet Node Name + 0.283357622716398; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {5c5df717-f30d-4567-a283-e07767e3f950}, !- Handle + Zone Outpatient Conference B - Story ground Air Terminal Outlet Air Node, !- Name + {7305bc7a-a127-4e9d-855a-170120f03132}, !- Inlet Port + {b98282ff-8a11-4b9a-a273-faa46ea132e4}; !- Outlet Port + +OS:Node, + {7e0fa13c-cc10-4ba6-88c2-a5856c1507fe}, !- Handle + Zone Outpatient Conference B - Story ground Return Air Node, !- Name + {5a365a92-5e4b-4cbc-b38e-22e4f59d5d55}, !- Inlet Port + {fc8b6b6f-0816-46e6-aa59-fbba12ff1e60}; !- Outlet Port + +OS:Connection, + {b98282ff-8a11-4b9a-a273-faa46ea132e4}, !- Handle + {5c5df717-f30d-4567-a283-e07767e3f950}, !- Source Object + 3, !- Outlet Port + {6099d2ce-cf6b-4005-bd57-cd4a03421938}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {5a365a92-5e4b-4cbc-b38e-22e4f59d5d55}, !- Handle + {5c490f23-752c-4ea4-b9a2-c4499be0e574}, !- Source Object + 2, !- Outlet Port + {7e0fa13c-cc10-4ba6-88c2-a5856c1507fe}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fc8b6b6f-0816-46e6-aa59-fbba12ff1e60}, !- Handle + {7e0fa13c-cc10-4ba6-88c2-a5856c1507fe}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 16; !- Inlet Port + +OS:Node, + {c1fd88ef-5f74-4afd-892c-4a9831151d17}, !- Handle + Zone Outpatient Conference B - Story ground Air Terminal Inlet Air Node, !- Name + {c8189464-7dbf-4f5b-8d7e-935fb1a64285}, !- Inlet Port + {78388210-aff3-4498-b6b7-1b34994edb29}; !- Outlet Port + +OS:Connection, + {c8189464-7dbf-4f5b-8d7e-935fb1a64285}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 16, !- Outlet Port + {c1fd88ef-5f74-4afd-892c-4a9831151d17}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {78388210-aff3-4498-b6b7-1b34994edb29}, !- Handle + {c1fd88ef-5f74-4afd-892c-4a9831151d17}, !- Source Object + 3, !- Outlet Port + {8ea298a0-9113-45d8-a1ab-c3463125d0e2}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {7305bc7a-a127-4e9d-855a-170120f03132}, !- Handle + {8ea298a0-9113-45d8-a1ab-c3463125d0e2}, !- Source Object + 4, !- Outlet Port + {5c5df717-f30d-4567-a283-e07767e3f950}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {a0f0aadc-4081-489e-bc9c-46583e3310e2}, !- Handle + Schedule Constant 27, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {177c8b4f-b325-4905-99fb-aa773aecbbb0}, !- Handle + Schedule Constant 28, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {ceb44b5d-b8b0-46d0-a067-9a35bae94886}, !- Handle + Zone Outpatient Conference C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {edf017ce-5823-4fe4-bc29-e9cbe1910fad}, !- Air Inlet Node Name + {da233c8e-c6d5-4a32-8939-4bcd822fc106}, !- Air Outlet Node Name + 0.0348449807600811; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {36d9cc8d-4cda-4441-8748-63b72ffbf2fd}, !- Handle + Zone Outpatient Conference C - Story ground Air Terminal Outlet Air Node, !- Name + {da233c8e-c6d5-4a32-8939-4bcd822fc106}, !- Inlet Port + {625d9e78-3070-46e9-a3b4-01a9252223c9}; !- Outlet Port + +OS:Node, + {058e6a00-2d4e-4c0a-930b-2400aefefdca}, !- Handle + Zone Outpatient Conference C - Story ground Return Air Node, !- Name + {ca09c4dd-9285-4868-bd52-eee690abfb9b}, !- Inlet Port + {f79164b5-1e64-48ed-8e7b-9277002eae84}; !- Outlet Port + +OS:Connection, + {625d9e78-3070-46e9-a3b4-01a9252223c9}, !- Handle + {36d9cc8d-4cda-4441-8748-63b72ffbf2fd}, !- Source Object + 3, !- Outlet Port + {eca4e934-9ddb-4181-bed5-89b7c4f37a45}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ca09c4dd-9285-4868-bd52-eee690abfb9b}, !- Handle + {6b790f6a-6ef1-4613-8fa1-1c3d9244617b}, !- Source Object + 2, !- Outlet Port + {058e6a00-2d4e-4c0a-930b-2400aefefdca}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f79164b5-1e64-48ed-8e7b-9277002eae84}, !- Handle + {058e6a00-2d4e-4c0a-930b-2400aefefdca}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 17; !- Inlet Port + +OS:Node, + {59affff3-ede2-47bb-be9a-460abe52d23e}, !- Handle + Zone Outpatient Conference C - Story ground Air Terminal Inlet Air Node, !- Name + {00821dff-b0c3-4fcf-9eb0-0a50fb5c7695}, !- Inlet Port + {edf017ce-5823-4fe4-bc29-e9cbe1910fad}; !- Outlet Port + +OS:Connection, + {00821dff-b0c3-4fcf-9eb0-0a50fb5c7695}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 17, !- Outlet Port + {59affff3-ede2-47bb-be9a-460abe52d23e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {edf017ce-5823-4fe4-bc29-e9cbe1910fad}, !- Handle + {59affff3-ede2-47bb-be9a-460abe52d23e}, !- Source Object + 3, !- Outlet Port + {ceb44b5d-b8b0-46d0-a067-9a35bae94886}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {da233c8e-c6d5-4a32-8939-4bcd822fc106}, !- Handle + {ceb44b5d-b8b0-46d0-a067-9a35bae94886}, !- Source Object + 4, !- Outlet Port + {36d9cc8d-4cda-4441-8748-63b72ffbf2fd}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {ba45e029-609e-4564-bef0-a9defb3df3ad}, !- Handle + Schedule Constant 29, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {4937641e-2ae4-4d3d-a8fe-0d4f7f4de96e}, !- Handle + Schedule Constant 30, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {5804bcf6-6d01-4893-b12e-630481a251cc}, !- Handle + Zone Outpatient DressingRoom A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {25db98da-83b8-46f7-b3db-ac0ec663e571}, !- Air Inlet Node Name + {37518706-4828-4756-a9d0-968468700f7c}, !- Air Outlet Node Name + 0; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {46c90f18-15a9-460a-994f-f84ef4ccbc9d}, !- Handle + Zone Outpatient DressingRoom A - Story ground Air Terminal Outlet Air Node, !- Name + {37518706-4828-4756-a9d0-968468700f7c}, !- Inlet Port + {0b87205f-96cc-461a-b646-4119516863b8}; !- Outlet Port + +OS:Node, + {b06a61ee-8c02-440c-9cb3-08aa6fe5784f}, !- Handle + Zone Outpatient DressingRoom A - Story ground Return Air Node, !- Name + {093962d8-a4bd-4b38-a369-27ed67d517f5}, !- Inlet Port + {9b3f6251-cb51-4035-9bdd-950557ea4af9}; !- Outlet Port + +OS:Connection, + {0b87205f-96cc-461a-b646-4119516863b8}, !- Handle + {46c90f18-15a9-460a-994f-f84ef4ccbc9d}, !- Source Object + 3, !- Outlet Port + {1888e77d-428c-42d1-a754-d3eb3ea20582}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {093962d8-a4bd-4b38-a369-27ed67d517f5}, !- Handle + {43bc981a-d05a-4fc0-a6a0-dc7a5e95e4dc}, !- Source Object + 2, !- Outlet Port + {b06a61ee-8c02-440c-9cb3-08aa6fe5784f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9b3f6251-cb51-4035-9bdd-950557ea4af9}, !- Handle + {b06a61ee-8c02-440c-9cb3-08aa6fe5784f}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 18; !- Inlet Port + +OS:Node, + {aaae145b-701d-4e53-b1f5-315f22277a76}, !- Handle + Zone Outpatient DressingRoom A - Story ground Air Terminal Inlet Air Node, !- Name + {1dce8421-316c-4d3c-85ec-87233fa8771c}, !- Inlet Port + {25db98da-83b8-46f7-b3db-ac0ec663e571}; !- Outlet Port + +OS:Connection, + {1dce8421-316c-4d3c-85ec-87233fa8771c}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 18, !- Outlet Port + {aaae145b-701d-4e53-b1f5-315f22277a76}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {25db98da-83b8-46f7-b3db-ac0ec663e571}, !- Handle + {aaae145b-701d-4e53-b1f5-315f22277a76}, !- Source Object + 3, !- Outlet Port + {5804bcf6-6d01-4893-b12e-630481a251cc}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {37518706-4828-4756-a9d0-968468700f7c}, !- Handle + {5804bcf6-6d01-4893-b12e-630481a251cc}, !- Source Object + 4, !- Outlet Port + {46c90f18-15a9-460a-994f-f84ef4ccbc9d}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {19ba6123-5437-4abb-8b15-ad417c1847d4}, !- Handle + Schedule Constant 31, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {707945dc-1480-47d5-9e4a-e1b885222181}, !- Handle + Schedule Constant 32, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {328b5890-de42-4aed-8e17-c77d9c906fd9}, !- Handle + Zone Outpatient DressingRoom B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {7b31064f-fe72-4528-a0d8-135c7606506a}, !- Air Inlet Node Name + {f08229e0-649c-4609-b0f5-cd90da80a8b0}, !- Air Outlet Node Name + 0.00726453092973232; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {4bd8dd4d-e458-4630-b58a-2e85c69890a3}, !- Handle + Zone Outpatient DressingRoom B - Story ground Air Terminal Outlet Air Node, !- Name + {f08229e0-649c-4609-b0f5-cd90da80a8b0}, !- Inlet Port + {c4ec75dc-6cc3-4bee-9611-f239b65ba280}; !- Outlet Port + +OS:Node, + {44834106-e9db-46c8-9ce9-f71deb5303b0}, !- Handle + Zone Outpatient DressingRoom B - Story ground Return Air Node, !- Name + {60109d37-9ddb-455a-911c-7d0e55dd06e9}, !- Inlet Port + {488925cd-6c15-4ce5-aee9-cbad16f474bf}; !- Outlet Port + +OS:Connection, + {c4ec75dc-6cc3-4bee-9611-f239b65ba280}, !- Handle + {4bd8dd4d-e458-4630-b58a-2e85c69890a3}, !- Source Object + 3, !- Outlet Port + {4ed58ed7-fb25-4149-9d2e-3ec685b14c84}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {60109d37-9ddb-455a-911c-7d0e55dd06e9}, !- Handle + {4b9bf036-57ba-46b6-93da-ce289e8f76ae}, !- Source Object + 2, !- Outlet Port + {44834106-e9db-46c8-9ce9-f71deb5303b0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {488925cd-6c15-4ce5-aee9-cbad16f474bf}, !- Handle + {44834106-e9db-46c8-9ce9-f71deb5303b0}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 19; !- Inlet Port + +OS:Node, + {2d9c3098-7683-4528-916b-7bad4edad137}, !- Handle + Zone Outpatient DressingRoom B - Story ground Air Terminal Inlet Air Node, !- Name + {0a780d48-448d-4a44-9c16-4e6a1f2df821}, !- Inlet Port + {7b31064f-fe72-4528-a0d8-135c7606506a}; !- Outlet Port + +OS:Connection, + {0a780d48-448d-4a44-9c16-4e6a1f2df821}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 19, !- Outlet Port + {2d9c3098-7683-4528-916b-7bad4edad137}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7b31064f-fe72-4528-a0d8-135c7606506a}, !- Handle + {2d9c3098-7683-4528-916b-7bad4edad137}, !- Source Object + 3, !- Outlet Port + {328b5890-de42-4aed-8e17-c77d9c906fd9}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {f08229e0-649c-4609-b0f5-cd90da80a8b0}, !- Handle + {328b5890-de42-4aed-8e17-c77d9c906fd9}, !- Source Object + 4, !- Outlet Port + {4bd8dd4d-e458-4630-b58a-2e85c69890a3}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {f1b01866-0f9c-46d6-babf-b2bce40ffa1f}, !- Handle + Schedule Constant 33, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {05951e5b-74d6-43d4-b3f5-5bb74de00265}, !- Handle + Schedule Constant 34, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {d73915f1-4181-4e69-b9ed-00b1978011f6}, !- Handle + Zone Outpatient DressingRoom C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {a2840c57-860c-4a92-9fb3-5a0c713c0523}, !- Air Inlet Node Name + {a28f1fb8-5874-44d0-805e-7d2a29b90fff}, !- Air Outlet Node Name + 0; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {19fe2f27-7b0a-42bd-aaaf-22d68648fdae}, !- Handle + Zone Outpatient DressingRoom C - Story ground Air Terminal Outlet Air Node, !- Name + {a28f1fb8-5874-44d0-805e-7d2a29b90fff}, !- Inlet Port + {1e2225e0-4603-4803-b762-b2a2dc40b8eb}; !- Outlet Port + +OS:Node, + {b05070b4-7cd4-43b8-a24e-c51b18a70d93}, !- Handle + Zone Outpatient DressingRoom C - Story ground Return Air Node, !- Name + {70f1861f-f351-4746-a5df-4daa3965ec04}, !- Inlet Port + {8a074042-b680-411a-8daa-a8682d708a6d}; !- Outlet Port + +OS:Connection, + {1e2225e0-4603-4803-b762-b2a2dc40b8eb}, !- Handle + {19fe2f27-7b0a-42bd-aaaf-22d68648fdae}, !- Source Object + 3, !- Outlet Port + {597c798b-1791-4fd7-a153-75782f8330ac}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {70f1861f-f351-4746-a5df-4daa3965ec04}, !- Handle + {19c8d59a-9adb-4938-b915-34827f35796f}, !- Source Object + 2, !- Outlet Port + {b05070b4-7cd4-43b8-a24e-c51b18a70d93}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8a074042-b680-411a-8daa-a8682d708a6d}, !- Handle + {b05070b4-7cd4-43b8-a24e-c51b18a70d93}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 20; !- Inlet Port + +OS:Node, + {27ee3f71-dd15-4abc-b84c-7a4a406b800c}, !- Handle + Zone Outpatient DressingRoom C - Story ground Air Terminal Inlet Air Node, !- Name + {aa249209-463d-4e13-a16e-18b0bb2ab7be}, !- Inlet Port + {a2840c57-860c-4a92-9fb3-5a0c713c0523}; !- Outlet Port + +OS:Connection, + {aa249209-463d-4e13-a16e-18b0bb2ab7be}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 20, !- Outlet Port + {27ee3f71-dd15-4abc-b84c-7a4a406b800c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a2840c57-860c-4a92-9fb3-5a0c713c0523}, !- Handle + {27ee3f71-dd15-4abc-b84c-7a4a406b800c}, !- Source Object + 3, !- Outlet Port + {d73915f1-4181-4e69-b9ed-00b1978011f6}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {a28f1fb8-5874-44d0-805e-7d2a29b90fff}, !- Handle + {d73915f1-4181-4e69-b9ed-00b1978011f6}, !- Source Object + 4, !- Outlet Port + {19fe2f27-7b0a-42bd-aaaf-22d68648fdae}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {c3c15543-b276-498c-9615-d98937ae3553}, !- Handle + Schedule Constant 35, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {72f0f75f-d196-419b-86c6-ffca576b9465}, !- Handle + Schedule Constant 36, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {21674f7f-f403-4674-b5a2-7fb673f45695}, !- Handle + Zone Outpatient Exam A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {539ff37d-4f65-4ef6-8301-50923132f20a}, !- Air Inlet Node Name + {972f6237-6cd7-4822-aaad-1c335bbbdeca}, !- Air Outlet Node Name + 0.64713355841372; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {348a4916-6727-4d47-aba2-e133d181f833}, !- Handle + Zone Outpatient Exam A - Story ground Air Terminal Outlet Air Node, !- Name + {972f6237-6cd7-4822-aaad-1c335bbbdeca}, !- Inlet Port + {25696c53-d92a-406c-8a81-05d416f9c972}; !- Outlet Port + +OS:Node, + {e33e52fe-cd5a-4ded-bf78-e33fbbd31ac1}, !- Handle + Zone Outpatient Exam A - Story ground Return Air Node, !- Name + {1d6d1813-a23f-461b-a7c8-85b850312dcc}, !- Inlet Port + {8c93d227-1731-420c-af0c-96af5b1e2ce3}; !- Outlet Port + +OS:Connection, + {25696c53-d92a-406c-8a81-05d416f9c972}, !- Handle + {348a4916-6727-4d47-aba2-e133d181f833}, !- Source Object + 3, !- Outlet Port + {b87b26d2-d5fc-425e-97ec-f13ece7878a0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1d6d1813-a23f-461b-a7c8-85b850312dcc}, !- Handle + {5580b519-7612-4847-bbef-269b7fba5240}, !- Source Object + 2, !- Outlet Port + {e33e52fe-cd5a-4ded-bf78-e33fbbd31ac1}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8c93d227-1731-420c-af0c-96af5b1e2ce3}, !- Handle + {e33e52fe-cd5a-4ded-bf78-e33fbbd31ac1}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 21; !- Inlet Port + +OS:Node, + {264f2d51-97f5-4b7c-9c91-304df25f9327}, !- Handle + Zone Outpatient Exam A - Story ground Air Terminal Inlet Air Node, !- Name + {f3f54a94-e741-47d7-afdb-4b1e4b9fea1e}, !- Inlet Port + {539ff37d-4f65-4ef6-8301-50923132f20a}; !- Outlet Port + +OS:Connection, + {f3f54a94-e741-47d7-afdb-4b1e4b9fea1e}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 21, !- Outlet Port + {264f2d51-97f5-4b7c-9c91-304df25f9327}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {539ff37d-4f65-4ef6-8301-50923132f20a}, !- Handle + {264f2d51-97f5-4b7c-9c91-304df25f9327}, !- Source Object + 3, !- Outlet Port + {21674f7f-f403-4674-b5a2-7fb673f45695}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {972f6237-6cd7-4822-aaad-1c335bbbdeca}, !- Handle + {21674f7f-f403-4674-b5a2-7fb673f45695}, !- Source Object + 4, !- Outlet Port + {348a4916-6727-4d47-aba2-e133d181f833}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {6bb903a1-3e90-4e8d-b1f8-78e5986aa781}, !- Handle + Schedule Constant 37, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {a67ce377-4845-4806-99dd-c1f0bd01cc70}, !- Handle + Schedule Constant 38, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {46c7776a-3179-4765-813b-e04f005cbe44}, !- Handle + Zone Outpatient Exam A end_a - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {657f117f-dc9a-4401-b045-f8ad676a49ae}, !- Air Inlet Node Name + {ad2f0344-a894-496c-8d3b-d6206f223b3e}, !- Air Outlet Node Name + 0.0682028198964624; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {715b7fdb-2335-4281-8c49-0941aaa3171e}, !- Handle + Zone Outpatient Exam A end_a - Story ground Air Terminal Outlet Air Node, !- Name + {ad2f0344-a894-496c-8d3b-d6206f223b3e}, !- Inlet Port + {01ce372b-9738-40be-80a3-0802345490c6}; !- Outlet Port + +OS:Node, + {f26e9767-02cc-4869-9274-7642ab9569ec}, !- Handle + Zone Outpatient Exam A end_a - Story ground Return Air Node, !- Name + {269d49cd-9951-4523-aaae-71eb114db7c5}, !- Inlet Port + {568692b0-1c7b-4721-a363-487879958c03}; !- Outlet Port + +OS:Connection, + {01ce372b-9738-40be-80a3-0802345490c6}, !- Handle + {715b7fdb-2335-4281-8c49-0941aaa3171e}, !- Source Object + 3, !- Outlet Port + {e88a7202-c631-49b3-aca4-cb418a5eb612}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {269d49cd-9951-4523-aaae-71eb114db7c5}, !- Handle + {c202e7e4-a74a-4978-8c4e-14500f6cdeb5}, !- Source Object + 2, !- Outlet Port + {f26e9767-02cc-4869-9274-7642ab9569ec}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {568692b0-1c7b-4721-a363-487879958c03}, !- Handle + {f26e9767-02cc-4869-9274-7642ab9569ec}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 22; !- Inlet Port + +OS:Node, + {f68c2ea6-8107-4ece-b536-6ce65515e97f}, !- Handle + Zone Outpatient Exam A end_a - Story ground Air Terminal Inlet Air Node, !- Name + {271a5824-4a76-4972-9329-089da6d832d6}, !- Inlet Port + {657f117f-dc9a-4401-b045-f8ad676a49ae}; !- Outlet Port + +OS:Connection, + {271a5824-4a76-4972-9329-089da6d832d6}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 22, !- Outlet Port + {f68c2ea6-8107-4ece-b536-6ce65515e97f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {657f117f-dc9a-4401-b045-f8ad676a49ae}, !- Handle + {f68c2ea6-8107-4ece-b536-6ce65515e97f}, !- Source Object + 3, !- Outlet Port + {46c7776a-3179-4765-813b-e04f005cbe44}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {ad2f0344-a894-496c-8d3b-d6206f223b3e}, !- Handle + {46c7776a-3179-4765-813b-e04f005cbe44}, !- Source Object + 4, !- Outlet Port + {715b7fdb-2335-4281-8c49-0941aaa3171e}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {51a6dc4f-932c-4d2a-8ae1-1fdcace08d71}, !- Handle + Schedule Constant 39, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {d44257f8-b925-489b-9340-643764abc149}, !- Handle + Schedule Constant 40, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {d0431554-f3e3-4b1c-8249-3534e3eff75a}, !- Handle + Zone Outpatient Exam C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {cc172799-7d72-4270-b409-db742db1f5e1}, !- Air Inlet Node Name + {3aceb765-8297-4059-b0b5-bf74bb7552b1}, !- Air Outlet Node Name + 0.647133558413721; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {8180ec95-f38f-4aba-9085-ed478de24833}, !- Handle + Zone Outpatient Exam C - Story ground Air Terminal Outlet Air Node, !- Name + {3aceb765-8297-4059-b0b5-bf74bb7552b1}, !- Inlet Port + {b3899d3b-a88f-42cf-a3ee-a21e2b52dbc3}; !- Outlet Port + +OS:Node, + {61b16461-50c6-461b-ab56-47ffd0fd22b5}, !- Handle + Zone Outpatient Exam C - Story ground Return Air Node, !- Name + {e91cb2ba-8b28-49c6-8b6f-3d2d0c846484}, !- Inlet Port + {5f77cc5a-2e54-48f7-993c-e8e97438329b}; !- Outlet Port + +OS:Connection, + {b3899d3b-a88f-42cf-a3ee-a21e2b52dbc3}, !- Handle + {8180ec95-f38f-4aba-9085-ed478de24833}, !- Source Object + 3, !- Outlet Port + {040db27d-47bd-476d-8019-9a2b9c1b383a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e91cb2ba-8b28-49c6-8b6f-3d2d0c846484}, !- Handle + {58d48122-b22f-4542-8346-d771e392b75b}, !- Source Object + 2, !- Outlet Port + {61b16461-50c6-461b-ab56-47ffd0fd22b5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {5f77cc5a-2e54-48f7-993c-e8e97438329b}, !- Handle + {61b16461-50c6-461b-ab56-47ffd0fd22b5}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 23; !- Inlet Port + +OS:Node, + {22823cb9-3326-4ec4-830d-9bd4c78998ad}, !- Handle + Zone Outpatient Exam C - Story ground Air Terminal Inlet Air Node, !- Name + {e08dc785-f122-454e-8947-d5a6aecaf6b1}, !- Inlet Port + {cc172799-7d72-4270-b409-db742db1f5e1}; !- Outlet Port + +OS:Connection, + {e08dc785-f122-454e-8947-d5a6aecaf6b1}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 23, !- Outlet Port + {22823cb9-3326-4ec4-830d-9bd4c78998ad}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {cc172799-7d72-4270-b409-db742db1f5e1}, !- Handle + {22823cb9-3326-4ec4-830d-9bd4c78998ad}, !- Source Object + 3, !- Outlet Port + {d0431554-f3e3-4b1c-8249-3534e3eff75a}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {3aceb765-8297-4059-b0b5-bf74bb7552b1}, !- Handle + {d0431554-f3e3-4b1c-8249-3534e3eff75a}, !- Source Object + 4, !- Outlet Port + {8180ec95-f38f-4aba-9085-ed478de24833}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {8146a40b-1df4-4e8c-8aab-2a050c697709}, !- Handle + Schedule Constant 41, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {c1f8e336-7402-4584-8bff-3fd93728ba37}, !- Handle + Schedule Constant 42, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {36fb9209-319e-46e8-917e-d3d34a191e2f}, !- Handle + Zone Outpatient Exam C end_a - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {4645d839-4d73-497c-93bb-fd18a13a34ff}, !- Air Inlet Node Name + {1e8ced6e-be8a-4618-beca-89ee9ce80a5c}, !- Air Outlet Node Name + 0.0682028198964624; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {e6770f34-cc59-4987-afbd-248012de48c5}, !- Handle + Zone Outpatient Exam C end_a - Story ground Air Terminal Outlet Air Node, !- Name + {1e8ced6e-be8a-4618-beca-89ee9ce80a5c}, !- Inlet Port + {ae9f687e-f8a0-404e-b7c6-e2167cc6cc44}; !- Outlet Port + +OS:Node, + {5b514c0d-f299-4ca0-901d-f94c078d2c6d}, !- Handle + Zone Outpatient Exam C end_a - Story ground Return Air Node, !- Name + {af73acda-a1e0-4a24-b067-40a8d25f956a}, !- Inlet Port + {e29bcfbe-0695-4212-a331-2962dc1ef962}; !- Outlet Port + +OS:Connection, + {ae9f687e-f8a0-404e-b7c6-e2167cc6cc44}, !- Handle + {e6770f34-cc59-4987-afbd-248012de48c5}, !- Source Object + 3, !- Outlet Port + {f6c4c369-8269-45fc-b416-50a81132052a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {af73acda-a1e0-4a24-b067-40a8d25f956a}, !- Handle + {e75cbbd2-b5c9-4a3f-a350-3c5d44991bd3}, !- Source Object + 2, !- Outlet Port + {5b514c0d-f299-4ca0-901d-f94c078d2c6d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e29bcfbe-0695-4212-a331-2962dc1ef962}, !- Handle + {5b514c0d-f299-4ca0-901d-f94c078d2c6d}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 24; !- Inlet Port + +OS:Node, + {54294841-e9f7-4a78-ac36-66bf322a3925}, !- Handle + Zone Outpatient Exam C end_a - Story ground Air Terminal Inlet Air Node, !- Name + {8a60baa8-e696-4db7-b330-e411737b2493}, !- Inlet Port + {4645d839-4d73-497c-93bb-fd18a13a34ff}; !- Outlet Port + +OS:Connection, + {8a60baa8-e696-4db7-b330-e411737b2493}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 24, !- Outlet Port + {54294841-e9f7-4a78-ac36-66bf322a3925}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4645d839-4d73-497c-93bb-fd18a13a34ff}, !- Handle + {54294841-e9f7-4a78-ac36-66bf322a3925}, !- Source Object + 3, !- Outlet Port + {36fb9209-319e-46e8-917e-d3d34a191e2f}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {1e8ced6e-be8a-4618-beca-89ee9ce80a5c}, !- Handle + {36fb9209-319e-46e8-917e-d3d34a191e2f}, !- Source Object + 4, !- Outlet Port + {e6770f34-cc59-4987-afbd-248012de48c5}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {889cf581-5b18-4c7b-86ed-b484515da6eb}, !- Handle + Schedule Constant 43, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {a3db0d20-9f18-4e1d-9e89-cd7f35471cc8}, !- Handle + Schedule Constant 44, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {bddcec81-fdcd-4dbb-859d-06d019d67be9}, !- Handle + Zone Outpatient Hall B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {f59b9f6d-85af-4696-855b-663e4cafe8ee}, !- Air Inlet Node Name + {b0241f58-5bbd-4d60-9155-62c6f4789b62}, !- Air Outlet Node Name + 0.403331702749593; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {d9b635f7-9221-4940-9d82-0f5c25ef3bdc}, !- Handle + Zone Outpatient Hall B - Story ground Air Terminal Outlet Air Node, !- Name + {b0241f58-5bbd-4d60-9155-62c6f4789b62}, !- Inlet Port + {b97a6ed7-8543-46b6-94ea-ea948a2e72e4}; !- Outlet Port + +OS:Node, + {97455302-9ddb-4575-b1a7-c7205c96354e}, !- Handle + Zone Outpatient Hall B - Story ground Return Air Node, !- Name + {41dff447-fa80-4987-865c-bb4a5710ddb0}, !- Inlet Port + {15e299fa-d57c-4e7a-b9cb-fb51a0ed148d}; !- Outlet Port + +OS:Connection, + {b97a6ed7-8543-46b6-94ea-ea948a2e72e4}, !- Handle + {d9b635f7-9221-4940-9d82-0f5c25ef3bdc}, !- Source Object + 3, !- Outlet Port + {550a7d97-ea54-4014-86e3-b00783f75b61}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {41dff447-fa80-4987-865c-bb4a5710ddb0}, !- Handle + {c0411530-5b6b-4e14-9732-de4bffc93433}, !- Source Object + 2, !- Outlet Port + {97455302-9ddb-4575-b1a7-c7205c96354e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {15e299fa-d57c-4e7a-b9cb-fb51a0ed148d}, !- Handle + {97455302-9ddb-4575-b1a7-c7205c96354e}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 25; !- Inlet Port + +OS:Node, + {588dc636-052a-4391-892e-d07985b4eb87}, !- Handle + Zone Outpatient Hall B - Story ground Air Terminal Inlet Air Node, !- Name + {a0577ce0-784d-42d3-a059-f84d22f08748}, !- Inlet Port + {f59b9f6d-85af-4696-855b-663e4cafe8ee}; !- Outlet Port + +OS:Connection, + {a0577ce0-784d-42d3-a059-f84d22f08748}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 25, !- Outlet Port + {588dc636-052a-4391-892e-d07985b4eb87}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f59b9f6d-85af-4696-855b-663e4cafe8ee}, !- Handle + {588dc636-052a-4391-892e-d07985b4eb87}, !- Source Object + 3, !- Outlet Port + {bddcec81-fdcd-4dbb-859d-06d019d67be9}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {b0241f58-5bbd-4d60-9155-62c6f4789b62}, !- Handle + {bddcec81-fdcd-4dbb-859d-06d019d67be9}, !- Source Object + 4, !- Outlet Port + {d9b635f7-9221-4940-9d82-0f5c25ef3bdc}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {a4345ff3-cdd9-49a3-95e0-4a2d31f5bcf7}, !- Handle + Schedule Constant 45, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {54466a7c-3c92-414d-a38f-0fbe7cb53ad0}, !- Handle + Schedule Constant 46, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {d912fa57-9459-4a2b-a780-0df96dd0fe59}, !- Handle + Zone Outpatient Hall B end_a - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {c85d4a7f-26ef-409b-9b23-ccedc1f730b1}, !- Air Inlet Node Name + {7c374a7d-4d34-4ecc-82fa-419bcb0bbb37}, !- Air Outlet Node Name + 0.0425080095499816; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {f78659a8-c541-4a28-bb67-66063a352103}, !- Handle + Zone Outpatient Hall B end_a - Story ground Air Terminal Outlet Air Node, !- Name + {7c374a7d-4d34-4ecc-82fa-419bcb0bbb37}, !- Inlet Port + {37cb008f-58b7-4688-9755-f0007ae3cf50}; !- Outlet Port + +OS:Node, + {8396bc01-9b67-44ce-bb1c-c26794e573fe}, !- Handle + Zone Outpatient Hall B end_a - Story ground Return Air Node, !- Name + {b146f506-179f-4aaf-ad3b-c544a85939ce}, !- Inlet Port + {eb9f05b5-2b3c-4f57-a7b7-df138b9262d6}; !- Outlet Port + +OS:Connection, + {37cb008f-58b7-4688-9755-f0007ae3cf50}, !- Handle + {f78659a8-c541-4a28-bb67-66063a352103}, !- Source Object + 3, !- Outlet Port + {eda8d083-a741-4031-bbeb-49a63073c96c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b146f506-179f-4aaf-ad3b-c544a85939ce}, !- Handle + {2c922e44-8e0c-463a-84cc-d48a06f490ae}, !- Source Object + 2, !- Outlet Port + {8396bc01-9b67-44ce-bb1c-c26794e573fe}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {eb9f05b5-2b3c-4f57-a7b7-df138b9262d6}, !- Handle + {8396bc01-9b67-44ce-bb1c-c26794e573fe}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 26; !- Inlet Port + +OS:Node, + {116f1cd2-b281-4242-b8eb-5d3adacb5eba}, !- Handle + Zone Outpatient Hall B end_a - Story ground Air Terminal Inlet Air Node, !- Name + {a36183cf-182f-4fe6-9a6c-ca3493049382}, !- Inlet Port + {c85d4a7f-26ef-409b-9b23-ccedc1f730b1}; !- Outlet Port + +OS:Connection, + {a36183cf-182f-4fe6-9a6c-ca3493049382}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 26, !- Outlet Port + {116f1cd2-b281-4242-b8eb-5d3adacb5eba}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c85d4a7f-26ef-409b-9b23-ccedc1f730b1}, !- Handle + {116f1cd2-b281-4242-b8eb-5d3adacb5eba}, !- Source Object + 3, !- Outlet Port + {d912fa57-9459-4a2b-a780-0df96dd0fe59}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {7c374a7d-4d34-4ecc-82fa-419bcb0bbb37}, !- Handle + {d912fa57-9459-4a2b-a780-0df96dd0fe59}, !- Source Object + 4, !- Outlet Port + {f78659a8-c541-4a28-bb67-66063a352103}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {87e0a1ec-2f47-4f93-8866-9df03dc15183}, !- Handle + Schedule Constant 47, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {c5ae066d-5835-4763-9072-3c6a261cd3e7}, !- Handle + Schedule Constant 48, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {c8a04d0a-eb2e-4376-a85f-d139f7473dd4}, !- Handle + Zone Outpatient IT_Room A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {9ac76d32-07d1-435a-8551-9063686f6b24}, !- Air Inlet Node Name + {ac20a5d5-ae2e-4fc9-9992-67c18a15a51f}, !- Air Outlet Node Name + 0.00114856975358436; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {c131a083-dd0b-4931-9bee-061132385cd9}, !- Handle + Zone Outpatient IT_Room A - Story ground Air Terminal Outlet Air Node, !- Name + {ac20a5d5-ae2e-4fc9-9992-67c18a15a51f}, !- Inlet Port + {d02ab74c-4e9b-4081-9836-2d472787b89d}; !- Outlet Port + +OS:Node, + {354ff7fb-fb53-4b75-ace6-aabc1bd2b989}, !- Handle + Zone Outpatient IT_Room A - Story ground Return Air Node, !- Name + {cfb529d1-dbfa-41c1-82d9-1e906b99039a}, !- Inlet Port + {b9341a3a-da92-4786-8b4e-ba0d831e3ae7}; !- Outlet Port + +OS:Connection, + {d02ab74c-4e9b-4081-9836-2d472787b89d}, !- Handle + {c131a083-dd0b-4931-9bee-061132385cd9}, !- Source Object + 3, !- Outlet Port + {b50b2a81-4121-4ee8-b7ba-3d9147e7a831}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {cfb529d1-dbfa-41c1-82d9-1e906b99039a}, !- Handle + {84042b2f-2682-44f1-9b04-9ac5d436ee3f}, !- Source Object + 2, !- Outlet Port + {354ff7fb-fb53-4b75-ace6-aabc1bd2b989}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b9341a3a-da92-4786-8b4e-ba0d831e3ae7}, !- Handle + {354ff7fb-fb53-4b75-ace6-aabc1bd2b989}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 27; !- Inlet Port + +OS:Node, + {d0d1f0f4-fa3a-4a68-be61-36be24e90981}, !- Handle + Zone Outpatient IT_Room A - Story ground Air Terminal Inlet Air Node, !- Name + {8cdee070-99b4-44e1-829c-ab63245681bc}, !- Inlet Port + {9ac76d32-07d1-435a-8551-9063686f6b24}; !- Outlet Port + +OS:Connection, + {8cdee070-99b4-44e1-829c-ab63245681bc}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 27, !- Outlet Port + {d0d1f0f4-fa3a-4a68-be61-36be24e90981}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9ac76d32-07d1-435a-8551-9063686f6b24}, !- Handle + {d0d1f0f4-fa3a-4a68-be61-36be24e90981}, !- Source Object + 3, !- Outlet Port + {c8a04d0a-eb2e-4376-a85f-d139f7473dd4}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {ac20a5d5-ae2e-4fc9-9992-67c18a15a51f}, !- Handle + {c8a04d0a-eb2e-4376-a85f-d139f7473dd4}, !- Source Object + 4, !- Outlet Port + {c131a083-dd0b-4931-9bee-061132385cd9}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {eae06fd7-13bd-45c6-ba38-388672b1174b}, !- Handle + Schedule Constant 49, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {13297170-b41a-4fe7-9fee-d17d48fca5e1}, !- Handle + Schedule Constant 50, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {d68d8a9e-0e2a-4d46-83b9-e8f61b5d7af8}, !- Handle + Zone Outpatient IT_Room B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {5d88a362-e5e5-473d-a05d-8f37de4eb749}, !- Air Inlet Node Name + {8e92478b-efe0-426d-9c51-47c7c32c7b6a}, !- Air Outlet Node Name + 0.00934011119536835; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {b1f0ae44-507a-452e-8bec-706951942e2b}, !- Handle + Zone Outpatient IT_Room B - Story ground Air Terminal Outlet Air Node, !- Name + {8e92478b-efe0-426d-9c51-47c7c32c7b6a}, !- Inlet Port + {f726fb02-a846-43e5-a27f-27699dbaad9c}; !- Outlet Port + +OS:Node, + {80e4eb93-f471-4e89-9dcb-083708ea156b}, !- Handle + Zone Outpatient IT_Room B - Story ground Return Air Node, !- Name + {6daae294-ac59-4a99-a0c9-59f2b154e801}, !- Inlet Port + {52030128-16c6-4dee-832a-6e888ed57feb}; !- Outlet Port + +OS:Connection, + {f726fb02-a846-43e5-a27f-27699dbaad9c}, !- Handle + {b1f0ae44-507a-452e-8bec-706951942e2b}, !- Source Object + 3, !- Outlet Port + {af3cd633-f5cc-4983-96ae-059e3d8683ac}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6daae294-ac59-4a99-a0c9-59f2b154e801}, !- Handle + {17e734e7-d515-4d38-b698-bdf5ba1c6add}, !- Source Object + 2, !- Outlet Port + {80e4eb93-f471-4e89-9dcb-083708ea156b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {52030128-16c6-4dee-832a-6e888ed57feb}, !- Handle + {80e4eb93-f471-4e89-9dcb-083708ea156b}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 28; !- Inlet Port + +OS:Node, + {106af844-1b21-497b-ad5f-b23f31b4f17d}, !- Handle + Zone Outpatient IT_Room B - Story ground Air Terminal Inlet Air Node, !- Name + {f1ae79e2-a260-48a0-9ff0-dc25347a7dd1}, !- Inlet Port + {5d88a362-e5e5-473d-a05d-8f37de4eb749}; !- Outlet Port + +OS:Connection, + {f1ae79e2-a260-48a0-9ff0-dc25347a7dd1}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 28, !- Outlet Port + {106af844-1b21-497b-ad5f-b23f31b4f17d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {5d88a362-e5e5-473d-a05d-8f37de4eb749}, !- Handle + {106af844-1b21-497b-ad5f-b23f31b4f17d}, !- Source Object + 3, !- Outlet Port + {d68d8a9e-0e2a-4d46-83b9-e8f61b5d7af8}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {8e92478b-efe0-426d-9c51-47c7c32c7b6a}, !- Handle + {d68d8a9e-0e2a-4d46-83b9-e8f61b5d7af8}, !- Source Object + 4, !- Outlet Port + {b1f0ae44-507a-452e-8bec-706951942e2b}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {766078f7-128d-439f-98de-126178720017}, !- Handle + Schedule Constant 51, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {f139aad2-aa30-4ec0-8c8b-f13b6458312e}, !- Handle + Schedule Constant 52, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {d31187d9-e45c-4181-ad7c-6cec4e3db490}, !- Handle + Zone Outpatient IT_Room C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {c0e95eab-53ee-47ec-b0c5-c086d2cad12c}, !- Air Inlet Node Name + {888d2aad-faab-4a0a-9270-534b6e39eac8}, !- Air Outlet Node Name + 0.00114856975358438; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {8f4da5de-c902-4b6b-b0cf-8b766705d0cc}, !- Handle + Zone Outpatient IT_Room C - Story ground Air Terminal Outlet Air Node, !- Name + {888d2aad-faab-4a0a-9270-534b6e39eac8}, !- Inlet Port + {39d5e367-5991-4a18-a6e9-d9ed77f1e50a}; !- Outlet Port + +OS:Node, + {1d4c9171-5a7d-4969-a4e5-1cc94eabc2eb}, !- Handle + Zone Outpatient IT_Room C - Story ground Return Air Node, !- Name + {bed9f506-d4c3-4818-b788-ab812b8436d0}, !- Inlet Port + {6b89d844-bea8-4163-94db-ef34f0b09573}; !- Outlet Port + +OS:Connection, + {39d5e367-5991-4a18-a6e9-d9ed77f1e50a}, !- Handle + {8f4da5de-c902-4b6b-b0cf-8b766705d0cc}, !- Source Object + 3, !- Outlet Port + {2b250855-5e0c-4fda-9ab4-696c9c4bc3ef}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bed9f506-d4c3-4818-b788-ab812b8436d0}, !- Handle + {d75a5161-bc5f-4e3b-937a-457f56977798}, !- Source Object + 2, !- Outlet Port + {1d4c9171-5a7d-4969-a4e5-1cc94eabc2eb}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6b89d844-bea8-4163-94db-ef34f0b09573}, !- Handle + {1d4c9171-5a7d-4969-a4e5-1cc94eabc2eb}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 29; !- Inlet Port + +OS:Node, + {9c5c524c-1376-434e-b96d-cfff65ef2244}, !- Handle + Zone Outpatient IT_Room C - Story ground Air Terminal Inlet Air Node, !- Name + {f109279c-62bb-4d79-8672-275f4e2a16b3}, !- Inlet Port + {c0e95eab-53ee-47ec-b0c5-c086d2cad12c}; !- Outlet Port + +OS:Connection, + {f109279c-62bb-4d79-8672-275f4e2a16b3}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 29, !- Outlet Port + {9c5c524c-1376-434e-b96d-cfff65ef2244}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c0e95eab-53ee-47ec-b0c5-c086d2cad12c}, !- Handle + {9c5c524c-1376-434e-b96d-cfff65ef2244}, !- Source Object + 3, !- Outlet Port + {d31187d9-e45c-4181-ad7c-6cec4e3db490}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {888d2aad-faab-4a0a-9270-534b6e39eac8}, !- Handle + {d31187d9-e45c-4181-ad7c-6cec4e3db490}, !- Source Object + 4, !- Outlet Port + {8f4da5de-c902-4b6b-b0cf-8b766705d0cc}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {2d413423-880d-4e76-88c4-dd871d0ee5df}, !- Handle + Schedule Constant 53, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {3c9c2cce-2aa9-4c56-a2ba-f1b4a7157fe4}, !- Handle + Schedule Constant 54, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {dfe38005-fa45-4277-93cc-b5180509d052}, !- Handle + Zone Outpatient Lobby A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {e1ae74a6-e348-43e5-99c0-cd6ee9f342ed}, !- Air Inlet Node Name + {daa3d7ed-fc6a-4596-8db5-806d2b493afe}, !- Air Outlet Node Name + 0.0290971004241415; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {e72f147c-5473-49d1-894f-a16ef6105a96}, !- Handle + Zone Outpatient Lobby A - Story ground Air Terminal Outlet Air Node, !- Name + {daa3d7ed-fc6a-4596-8db5-806d2b493afe}, !- Inlet Port + {35feb845-47cf-4146-b365-e0ec40b542f7}; !- Outlet Port + +OS:Node, + {5fdef9da-23bd-4242-8bb9-88629a0e2895}, !- Handle + Zone Outpatient Lobby A - Story ground Return Air Node, !- Name + {b093e06d-2248-41b1-936e-6289f8413ca4}, !- Inlet Port + {674d9d19-e76e-43d4-8d00-1c4d428fb1bc}; !- Outlet Port + +OS:Connection, + {35feb845-47cf-4146-b365-e0ec40b542f7}, !- Handle + {e72f147c-5473-49d1-894f-a16ef6105a96}, !- Source Object + 3, !- Outlet Port + {24ab798d-4ba6-47ca-960f-4dbfe7ac0b2b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b093e06d-2248-41b1-936e-6289f8413ca4}, !- Handle + {1005c53e-9164-483b-b4f2-82ad622cd263}, !- Source Object + 2, !- Outlet Port + {5fdef9da-23bd-4242-8bb9-88629a0e2895}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {674d9d19-e76e-43d4-8d00-1c4d428fb1bc}, !- Handle + {5fdef9da-23bd-4242-8bb9-88629a0e2895}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 30; !- Inlet Port + +OS:Node, + {a2ad4237-74d2-438f-a3b8-302de44dac9b}, !- Handle + Zone Outpatient Lobby A - Story ground Air Terminal Inlet Air Node, !- Name + {289fb44a-03d5-4da7-b413-b57bd7dfb374}, !- Inlet Port + {e1ae74a6-e348-43e5-99c0-cd6ee9f342ed}; !- Outlet Port + +OS:Connection, + {289fb44a-03d5-4da7-b413-b57bd7dfb374}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 30, !- Outlet Port + {a2ad4237-74d2-438f-a3b8-302de44dac9b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e1ae74a6-e348-43e5-99c0-cd6ee9f342ed}, !- Handle + {a2ad4237-74d2-438f-a3b8-302de44dac9b}, !- Source Object + 3, !- Outlet Port + {dfe38005-fa45-4277-93cc-b5180509d052}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {daa3d7ed-fc6a-4596-8db5-806d2b493afe}, !- Handle + {dfe38005-fa45-4277-93cc-b5180509d052}, !- Source Object + 4, !- Outlet Port + {e72f147c-5473-49d1-894f-a16ef6105a96}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {ebfaa2ca-4696-4505-bc63-d80cbe201540}, !- Handle + Schedule Constant 55, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {d3f79dfc-ca78-4655-aa3a-f66a7561e7d8}, !- Handle + Schedule Constant 56, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {517f94db-3611-48f2-bb1b-0452a40e914a}, !- Handle + Zone Outpatient Lobby B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {0510ab37-e97d-42bb-827c-004f125bb72e}, !- Air Inlet Node Name + {351a55d9-a95b-4eb8-8b19-63bdcb1fa6e7}, !- Air Outlet Node Name + 0.236616150282698; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {91739816-e334-45dd-a17f-d5c0fed93988}, !- Handle + Zone Outpatient Lobby B - Story ground Air Terminal Outlet Air Node, !- Name + {351a55d9-a95b-4eb8-8b19-63bdcb1fa6e7}, !- Inlet Port + {ddf2fa6c-6e8d-42c9-9f8c-27a6efff1324}; !- Outlet Port + +OS:Node, + {c268f324-d4c9-455a-b399-329ca85dc91f}, !- Handle + Zone Outpatient Lobby B - Story ground Return Air Node, !- Name + {4460052e-f73c-4406-bf07-6f1d95cab3bf}, !- Inlet Port + {78f3150b-d02a-44c0-bb1b-c623bfc44bf9}; !- Outlet Port + +OS:Connection, + {ddf2fa6c-6e8d-42c9-9f8c-27a6efff1324}, !- Handle + {91739816-e334-45dd-a17f-d5c0fed93988}, !- Source Object + 3, !- Outlet Port + {f52a2963-36bd-4ac8-a7c1-8fcca792a838}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4460052e-f73c-4406-bf07-6f1d95cab3bf}, !- Handle + {a7772196-586b-47de-a823-af81661d8cea}, !- Source Object + 2, !- Outlet Port + {c268f324-d4c9-455a-b399-329ca85dc91f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {78f3150b-d02a-44c0-bb1b-c623bfc44bf9}, !- Handle + {c268f324-d4c9-455a-b399-329ca85dc91f}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 31; !- Inlet Port + +OS:Node, + {a546f408-5d25-4401-bd26-15cace440582}, !- Handle + Zone Outpatient Lobby B - Story ground Air Terminal Inlet Air Node, !- Name + {8816a6e7-c285-45a6-8db5-2e927fa16f62}, !- Inlet Port + {0510ab37-e97d-42bb-827c-004f125bb72e}; !- Outlet Port + +OS:Connection, + {8816a6e7-c285-45a6-8db5-2e927fa16f62}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 31, !- Outlet Port + {a546f408-5d25-4401-bd26-15cace440582}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0510ab37-e97d-42bb-827c-004f125bb72e}, !- Handle + {a546f408-5d25-4401-bd26-15cace440582}, !- Source Object + 3, !- Outlet Port + {517f94db-3611-48f2-bb1b-0452a40e914a}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {351a55d9-a95b-4eb8-8b19-63bdcb1fa6e7}, !- Handle + {517f94db-3611-48f2-bb1b-0452a40e914a}, !- Source Object + 4, !- Outlet Port + {91739816-e334-45dd-a17f-d5c0fed93988}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {85e709c4-c6b1-4c92-a1a7-decc397de56f}, !- Handle + Schedule Constant 57, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {e478ab5f-1105-4edd-bcfc-531b5f350e2b}, !- Handle + Schedule Constant 58, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {1780bfb0-73d1-458d-b470-0d9b83a6a996}, !- Handle + Zone Outpatient Lobby C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {1b9004ef-bc35-46b5-81a8-d8b06c976ee3}, !- Air Inlet Node Name + {b021002f-74c1-4cfc-87d3-b74ae5804a06}, !- Air Outlet Node Name + 0.0290971004241416; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {a62c28ed-97a1-4bb2-b952-f5ad7280207a}, !- Handle + Zone Outpatient Lobby C - Story ground Air Terminal Outlet Air Node, !- Name + {b021002f-74c1-4cfc-87d3-b74ae5804a06}, !- Inlet Port + {1ad2b0a2-46a4-412e-a140-42922fdb3d29}; !- Outlet Port + +OS:Node, + {393778a7-840e-40ca-b231-c5984e7a97d7}, !- Handle + Zone Outpatient Lobby C - Story ground Return Air Node, !- Name + {702bb8a7-f0af-4de8-83b2-700e11e32672}, !- Inlet Port + {2c85df21-79b1-4e31-bb5a-a597b9c1d1da}; !- Outlet Port + +OS:Connection, + {1ad2b0a2-46a4-412e-a140-42922fdb3d29}, !- Handle + {a62c28ed-97a1-4bb2-b952-f5ad7280207a}, !- Source Object + 3, !- Outlet Port + {7d51cc16-b194-497f-8910-058d8ba8d1fd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {702bb8a7-f0af-4de8-83b2-700e11e32672}, !- Handle + {760d5106-074d-4951-a889-a181c73fa583}, !- Source Object + 2, !- Outlet Port + {393778a7-840e-40ca-b231-c5984e7a97d7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2c85df21-79b1-4e31-bb5a-a597b9c1d1da}, !- Handle + {393778a7-840e-40ca-b231-c5984e7a97d7}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 32; !- Inlet Port + +OS:Node, + {9f18ae86-3d6d-47a4-8d67-c603db53115f}, !- Handle + Zone Outpatient Lobby C - Story ground Air Terminal Inlet Air Node, !- Name + {d7fec518-67cf-4cc7-b466-f61cc25009bf}, !- Inlet Port + {1b9004ef-bc35-46b5-81a8-d8b06c976ee3}; !- Outlet Port + +OS:Connection, + {d7fec518-67cf-4cc7-b466-f61cc25009bf}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 32, !- Outlet Port + {9f18ae86-3d6d-47a4-8d67-c603db53115f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1b9004ef-bc35-46b5-81a8-d8b06c976ee3}, !- Handle + {9f18ae86-3d6d-47a4-8d67-c603db53115f}, !- Source Object + 3, !- Outlet Port + {1780bfb0-73d1-458d-b470-0d9b83a6a996}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {b021002f-74c1-4cfc-87d3-b74ae5804a06}, !- Handle + {1780bfb0-73d1-458d-b470-0d9b83a6a996}, !- Source Object + 4, !- Outlet Port + {a62c28ed-97a1-4bb2-b952-f5ad7280207a}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {463054bf-cff9-4973-b8c7-3d2507b51ce8}, !- Handle + Schedule Constant 59, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {b558cbb2-3d58-457d-a9ee-cc121fbbaef9}, !- Handle + Schedule Constant 60, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {bc17e8b8-6caa-44f8-ac2e-57af23d5e043}, !- Handle + Zone Outpatient LockerRoom A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {57c2deba-9f74-4b06-a84a-f0755d5b6b92}, !- Air Inlet Node Name + {2cc04acb-72c8-4dc8-bba1-689b4f9041f7}, !- Air Outlet Node Name + 0.01815961509446; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {35364509-afea-4564-8de4-007bc102e259}, !- Handle + Zone Outpatient LockerRoom A - Story ground Air Terminal Outlet Air Node, !- Name + {2cc04acb-72c8-4dc8-bba1-689b4f9041f7}, !- Inlet Port + {e5af7f88-2895-43e6-a282-f1447ef2d05c}; !- Outlet Port + +OS:Node, + {376c9dd3-508a-44c7-aeec-28a5d5d83973}, !- Handle + Zone Outpatient LockerRoom A - Story ground Return Air Node, !- Name + {dbfdb4d4-36ce-4224-940e-02f514707213}, !- Inlet Port + {92e001f1-d618-41ac-a821-1603c3e65038}; !- Outlet Port + +OS:Connection, + {e5af7f88-2895-43e6-a282-f1447ef2d05c}, !- Handle + {35364509-afea-4564-8de4-007bc102e259}, !- Source Object + 3, !- Outlet Port + {65568e6d-ea84-4a3b-a2d1-d1d8a373b253}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {dbfdb4d4-36ce-4224-940e-02f514707213}, !- Handle + {25915c9f-85a2-4a82-80d7-a91c73cb00d5}, !- Source Object + 2, !- Outlet Port + {376c9dd3-508a-44c7-aeec-28a5d5d83973}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {92e001f1-d618-41ac-a821-1603c3e65038}, !- Handle + {376c9dd3-508a-44c7-aeec-28a5d5d83973}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 33; !- Inlet Port + +OS:Node, + {0c85464e-3134-40d8-b134-cef1f13092af}, !- Handle + Zone Outpatient LockerRoom A - Story ground Air Terminal Inlet Air Node, !- Name + {74adb212-5e25-4f47-805b-9b186222c778}, !- Inlet Port + {57c2deba-9f74-4b06-a84a-f0755d5b6b92}; !- Outlet Port + +OS:Connection, + {74adb212-5e25-4f47-805b-9b186222c778}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 33, !- Outlet Port + {0c85464e-3134-40d8-b134-cef1f13092af}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {57c2deba-9f74-4b06-a84a-f0755d5b6b92}, !- Handle + {0c85464e-3134-40d8-b134-cef1f13092af}, !- Source Object + 3, !- Outlet Port + {bc17e8b8-6caa-44f8-ac2e-57af23d5e043}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {2cc04acb-72c8-4dc8-bba1-689b4f9041f7}, !- Handle + {bc17e8b8-6caa-44f8-ac2e-57af23d5e043}, !- Source Object + 4, !- Outlet Port + {35364509-afea-4564-8de4-007bc102e259}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {cab98441-05c4-48fb-81a9-0e42fd7f5b48}, !- Handle + Schedule Constant 61, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {34cb2451-5dab-4f5e-8f3e-9b3b107bee30}, !- Handle + Schedule Constant 62, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {a5082f87-f1c4-4fbf-b5c4-0bc109e1f610}, !- Handle + Zone Outpatient LockerRoom B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {29324ed2-778a-404c-b0b3-d779a020b3a1}, !- Air Inlet Node Name + {59609263-554c-4ea7-9690-12a9b5257d2d}, !- Air Outlet Node Name + 0.147673072286667; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {d7cc6422-dba1-46fc-8e59-fd57c80dee31}, !- Handle + Zone Outpatient LockerRoom B - Story ground Air Terminal Outlet Air Node, !- Name + {59609263-554c-4ea7-9690-12a9b5257d2d}, !- Inlet Port + {6752dba8-0334-4e86-8883-d7e42a97bb35}; !- Outlet Port + +OS:Node, + {42d07ff6-581c-43bf-b7bf-95cbdb161c0b}, !- Handle + Zone Outpatient LockerRoom B - Story ground Return Air Node, !- Name + {831eecce-cd4c-43e0-8131-4ef7e0f82dda}, !- Inlet Port + {ca488ece-b6b1-4d28-be29-c886c3ad8d07}; !- Outlet Port + +OS:Connection, + {6752dba8-0334-4e86-8883-d7e42a97bb35}, !- Handle + {d7cc6422-dba1-46fc-8e59-fd57c80dee31}, !- Source Object + 3, !- Outlet Port + {576d2b51-93ec-4228-b20f-ec9d4391049a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {831eecce-cd4c-43e0-8131-4ef7e0f82dda}, !- Handle + {d47d74e3-b779-4120-94d7-71aed0aac4b7}, !- Source Object + 2, !- Outlet Port + {42d07ff6-581c-43bf-b7bf-95cbdb161c0b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ca488ece-b6b1-4d28-be29-c886c3ad8d07}, !- Handle + {42d07ff6-581c-43bf-b7bf-95cbdb161c0b}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 34; !- Inlet Port + +OS:Node, + {56c25e54-1b4d-48fc-bef2-61c6941d7f77}, !- Handle + Zone Outpatient LockerRoom B - Story ground Air Terminal Inlet Air Node, !- Name + {6c08a1e5-c655-44a8-9c6e-eb0c9601cfea}, !- Inlet Port + {29324ed2-778a-404c-b0b3-d779a020b3a1}; !- Outlet Port + +OS:Connection, + {6c08a1e5-c655-44a8-9c6e-eb0c9601cfea}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 34, !- Outlet Port + {56c25e54-1b4d-48fc-bef2-61c6941d7f77}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {29324ed2-778a-404c-b0b3-d779a020b3a1}, !- Handle + {56c25e54-1b4d-48fc-bef2-61c6941d7f77}, !- Source Object + 3, !- Outlet Port + {a5082f87-f1c4-4fbf-b5c4-0bc109e1f610}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {59609263-554c-4ea7-9690-12a9b5257d2d}, !- Handle + {a5082f87-f1c4-4fbf-b5c4-0bc109e1f610}, !- Source Object + 4, !- Outlet Port + {d7cc6422-dba1-46fc-8e59-fd57c80dee31}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {d8d8c339-37b1-40f2-ba02-b06252017956}, !- Handle + Schedule Constant 63, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {78ace420-6632-4762-8b03-7365395b6ba7}, !- Handle + Schedule Constant 64, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {eea114e0-d95f-40d5-a565-e8588eba4668}, !- Handle + Zone Outpatient LockerRoom C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {61abbcd5-97b0-44e1-9b8a-b1431a07057d}, !- Air Inlet Node Name + {b5d99867-d030-4476-bb4d-7983b6e593bb}, !- Air Outlet Node Name + 0.0181596150944601; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {6c157f9c-89f1-4a37-8392-6b04d4d34750}, !- Handle + Zone Outpatient LockerRoom C - Story ground Air Terminal Outlet Air Node, !- Name + {b5d99867-d030-4476-bb4d-7983b6e593bb}, !- Inlet Port + {db19870d-fa09-42b8-b577-940e7b170780}; !- Outlet Port + +OS:Node, + {d5098034-e3b3-4326-8584-0acef78c4bc3}, !- Handle + Zone Outpatient LockerRoom C - Story ground Return Air Node, !- Name + {dca358a6-e749-48fc-a583-fa3a7fd046d9}, !- Inlet Port + {f4dce8f3-16f4-4151-8cb5-b54d3133d45f}; !- Outlet Port + +OS:Connection, + {db19870d-fa09-42b8-b577-940e7b170780}, !- Handle + {6c157f9c-89f1-4a37-8392-6b04d4d34750}, !- Source Object + 3, !- Outlet Port + {6d0c473a-17d1-4cc3-ba14-cf971214fb23}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {dca358a6-e749-48fc-a583-fa3a7fd046d9}, !- Handle + {3f30f278-397f-4263-a789-bd9e152def08}, !- Source Object + 2, !- Outlet Port + {d5098034-e3b3-4326-8584-0acef78c4bc3}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f4dce8f3-16f4-4151-8cb5-b54d3133d45f}, !- Handle + {d5098034-e3b3-4326-8584-0acef78c4bc3}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 35; !- Inlet Port + +OS:Node, + {d2d2dcd5-c65f-46db-afd2-fe8082920e06}, !- Handle + Zone Outpatient LockerRoom C - Story ground Air Terminal Inlet Air Node, !- Name + {27ddd498-35a2-4973-8444-ccfbc37c444d}, !- Inlet Port + {61abbcd5-97b0-44e1-9b8a-b1431a07057d}; !- Outlet Port + +OS:Connection, + {27ddd498-35a2-4973-8444-ccfbc37c444d}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 35, !- Outlet Port + {d2d2dcd5-c65f-46db-afd2-fe8082920e06}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {61abbcd5-97b0-44e1-9b8a-b1431a07057d}, !- Handle + {d2d2dcd5-c65f-46db-afd2-fe8082920e06}, !- Source Object + 3, !- Outlet Port + {eea114e0-d95f-40d5-a565-e8588eba4668}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {b5d99867-d030-4476-bb4d-7983b6e593bb}, !- Handle + {eea114e0-d95f-40d5-a565-e8588eba4668}, !- Source Object + 4, !- Outlet Port + {6c157f9c-89f1-4a37-8392-6b04d4d34750}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {df159c58-5d18-48b7-a54e-bbe37063370b}, !- Handle + Schedule Constant 65, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {0d2ac789-9ade-4221-95bc-a04adb7eecbf}, !- Handle + Schedule Constant 66, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {86fc0f31-9e7e-48e7-8fbb-82fc4ca20a2d}, !- Handle + Zone Outpatient Lounge A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {6b562566-6f28-490d-a872-43858e526d69}, !- Air Inlet Node Name + {eb4a1f6b-9ca7-4ab4-93b9-c61a3409d904}, !- Air Outlet Node Name + 0.028004038014083; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {b2a8b16c-0724-427a-8f8a-8fddca79b08c}, !- Handle + Zone Outpatient Lounge A - Story ground Air Terminal Outlet Air Node, !- Name + {eb4a1f6b-9ca7-4ab4-93b9-c61a3409d904}, !- Inlet Port + {3fcf4769-5ebe-4da1-bb5f-b7fc0b578806}; !- Outlet Port + +OS:Node, + {af602339-6d20-4f0b-a76c-5381d4a17f2d}, !- Handle + Zone Outpatient Lounge A - Story ground Return Air Node, !- Name + {1f9a5c38-e2bc-44b1-8a34-090ed298d0da}, !- Inlet Port + {766cf60b-b883-4dd3-9469-00b523a1506c}; !- Outlet Port + +OS:Connection, + {3fcf4769-5ebe-4da1-bb5f-b7fc0b578806}, !- Handle + {b2a8b16c-0724-427a-8f8a-8fddca79b08c}, !- Source Object + 3, !- Outlet Port + {e667c3f1-e117-4434-9ed8-53015a4efe74}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1f9a5c38-e2bc-44b1-8a34-090ed298d0da}, !- Handle + {cf07274e-0f02-429a-9085-bbd9db851ded}, !- Source Object + 2, !- Outlet Port + {af602339-6d20-4f0b-a76c-5381d4a17f2d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {766cf60b-b883-4dd3-9469-00b523a1506c}, !- Handle + {af602339-6d20-4f0b-a76c-5381d4a17f2d}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 36; !- Inlet Port + +OS:Node, + {499dcc75-9f11-4530-9186-0beda70c630e}, !- Handle + Zone Outpatient Lounge A - Story ground Air Terminal Inlet Air Node, !- Name + {6a3e8a6f-b8a9-4e2a-8962-95e92615c3b0}, !- Inlet Port + {6b562566-6f28-490d-a872-43858e526d69}; !- Outlet Port + +OS:Connection, + {6a3e8a6f-b8a9-4e2a-8962-95e92615c3b0}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 36, !- Outlet Port + {499dcc75-9f11-4530-9186-0beda70c630e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6b562566-6f28-490d-a872-43858e526d69}, !- Handle + {499dcc75-9f11-4530-9186-0beda70c630e}, !- Source Object + 3, !- Outlet Port + {86fc0f31-9e7e-48e7-8fbb-82fc4ca20a2d}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {eb4a1f6b-9ca7-4ab4-93b9-c61a3409d904}, !- Handle + {86fc0f31-9e7e-48e7-8fbb-82fc4ca20a2d}, !- Source Object + 4, !- Outlet Port + {b2a8b16c-0724-427a-8f8a-8fddca79b08c}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {febb2601-22c0-4e4e-a098-904d3f746455}, !- Handle + Schedule Constant 67, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {8e89b047-2584-4016-924b-65548dedfcb5}, !- Handle + Schedule Constant 68, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {88f63901-5b95-4e8c-a8f3-6205410d6312}, !- Handle + Zone Outpatient Lounge B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {eed7d28d-ee34-4a61-86d9-b34e218c52d0}, !- Air Inlet Node Name + {dfd35a9e-0b21-4df6-b3e6-5c2ef321f92f}, !- Air Outlet Node Name + 0.227727421999923; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {890dde9c-1d32-43df-9acf-39ad8d21f485}, !- Handle + Zone Outpatient Lounge B - Story ground Air Terminal Outlet Air Node, !- Name + {dfd35a9e-0b21-4df6-b3e6-5c2ef321f92f}, !- Inlet Port + {6098e443-9cf0-409d-a46b-5f5fbedb8d05}; !- Outlet Port + +OS:Node, + {d8c59abd-a37e-45be-99f9-4404212005ae}, !- Handle + Zone Outpatient Lounge B - Story ground Return Air Node, !- Name + {fca5077b-6210-45be-823a-9bb323b6c23a}, !- Inlet Port + {ebec27ea-c73e-44ea-8c2c-bf0a6ab99659}; !- Outlet Port + +OS:Connection, + {6098e443-9cf0-409d-a46b-5f5fbedb8d05}, !- Handle + {890dde9c-1d32-43df-9acf-39ad8d21f485}, !- Source Object + 3, !- Outlet Port + {68296f38-1685-4424-a076-531352871c44}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fca5077b-6210-45be-823a-9bb323b6c23a}, !- Handle + {301c4ac7-d06e-4a6c-b4c7-71463d606d1a}, !- Source Object + 2, !- Outlet Port + {d8c59abd-a37e-45be-99f9-4404212005ae}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ebec27ea-c73e-44ea-8c2c-bf0a6ab99659}, !- Handle + {d8c59abd-a37e-45be-99f9-4404212005ae}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 37; !- Inlet Port + +OS:Node, + {94274a04-b1da-4916-9056-6e62da63e461}, !- Handle + Zone Outpatient Lounge B - Story ground Air Terminal Inlet Air Node, !- Name + {e14e58fe-5d4a-4cbe-baae-00d3fea68a09}, !- Inlet Port + {eed7d28d-ee34-4a61-86d9-b34e218c52d0}; !- Outlet Port + +OS:Connection, + {e14e58fe-5d4a-4cbe-baae-00d3fea68a09}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 37, !- Outlet Port + {94274a04-b1da-4916-9056-6e62da63e461}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {eed7d28d-ee34-4a61-86d9-b34e218c52d0}, !- Handle + {94274a04-b1da-4916-9056-6e62da63e461}, !- Source Object + 3, !- Outlet Port + {88f63901-5b95-4e8c-a8f3-6205410d6312}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {dfd35a9e-0b21-4df6-b3e6-5c2ef321f92f}, !- Handle + {88f63901-5b95-4e8c-a8f3-6205410d6312}, !- Source Object + 4, !- Outlet Port + {890dde9c-1d32-43df-9acf-39ad8d21f485}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {290d72b8-3861-4d93-bc76-08ab252705f5}, !- Handle + Schedule Constant 69, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {d9b1b3a3-9f87-498e-91ab-34191aa021ba}, !- Handle + Schedule Constant 70, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {5c6d4730-87a7-402c-8d2d-55fe1a32aca9}, !- Handle + Zone Outpatient Lounge C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {3365d312-4820-4d3c-a8be-04888e9ec6a8}, !- Air Inlet Node Name + {9f0f8470-a763-42f4-809b-7a55af6d03f4}, !- Air Outlet Node Name + 0.0280040380140831; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {7ba288be-7701-4b35-b4c6-b58e68901db4}, !- Handle + Zone Outpatient Lounge C - Story ground Air Terminal Outlet Air Node, !- Name + {9f0f8470-a763-42f4-809b-7a55af6d03f4}, !- Inlet Port + {c06852f6-a8e3-46a6-a538-726563f8dd68}; !- Outlet Port + +OS:Node, + {508de41b-63c5-427a-a8c0-3811228089ed}, !- Handle + Zone Outpatient Lounge C - Story ground Return Air Node, !- Name + {4d8cb2de-40c4-4fbb-900a-90a2cd81c1c3}, !- Inlet Port + {c8fca0d2-38e5-436d-98e3-8e6023094c32}; !- Outlet Port + +OS:Connection, + {c06852f6-a8e3-46a6-a538-726563f8dd68}, !- Handle + {7ba288be-7701-4b35-b4c6-b58e68901db4}, !- Source Object + 3, !- Outlet Port + {b69da898-2f64-46d1-b60a-3fc751d64f14}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4d8cb2de-40c4-4fbb-900a-90a2cd81c1c3}, !- Handle + {7c92c411-bc96-46f1-a103-11b7b0c7712e}, !- Source Object + 2, !- Outlet Port + {508de41b-63c5-427a-a8c0-3811228089ed}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c8fca0d2-38e5-436d-98e3-8e6023094c32}, !- Handle + {508de41b-63c5-427a-a8c0-3811228089ed}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 38; !- Inlet Port + +OS:Node, + {c67dbccb-f864-4336-95bd-3b05fba861b7}, !- Handle + Zone Outpatient Lounge C - Story ground Air Terminal Inlet Air Node, !- Name + {fc978655-fb86-482e-b904-9981af178dc2}, !- Inlet Port + {3365d312-4820-4d3c-a8be-04888e9ec6a8}; !- Outlet Port + +OS:Connection, + {fc978655-fb86-482e-b904-9981af178dc2}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 38, !- Outlet Port + {c67dbccb-f864-4336-95bd-3b05fba861b7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3365d312-4820-4d3c-a8be-04888e9ec6a8}, !- Handle + {c67dbccb-f864-4336-95bd-3b05fba861b7}, !- Source Object + 3, !- Outlet Port + {5c6d4730-87a7-402c-8d2d-55fe1a32aca9}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {9f0f8470-a763-42f4-809b-7a55af6d03f4}, !- Handle + {5c6d4730-87a7-402c-8d2d-55fe1a32aca9}, !- Source Object + 4, !- Outlet Port + {7ba288be-7701-4b35-b4c6-b58e68901db4}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {d6f4446d-1fc4-4d83-bda5-2c05174d4598}, !- Handle + Schedule Constant 71, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {2357d25b-7cde-444a-964d-654a08dcb2a4}, !- Handle + Schedule Constant 72, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {4208dfe9-9b53-4e5a-9c04-1f328c16606f}, !- Handle + Zone Outpatient MedGas A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {d30e3e7e-9ef0-4563-a6b9-8e719b67b5ac}, !- Air Inlet Node Name + {5d9041b9-d26d-4345-ad31-6d61425279f3}, !- Air Outlet Node Name + 0; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {4e82dbd8-5054-4e16-be3b-adbf08de84e5}, !- Handle + Zone Outpatient MedGas A - Story ground Air Terminal Outlet Air Node, !- Name + {5d9041b9-d26d-4345-ad31-6d61425279f3}, !- Inlet Port + {de9a8bb1-db8c-4dc0-9520-2dc0664a6689}; !- Outlet Port + +OS:Node, + {e1c95d5a-97bc-472c-be3f-996560adf028}, !- Handle + Zone Outpatient MedGas A - Story ground Return Air Node, !- Name + {caa3f561-8d76-4c7d-8d55-c34e8b1e2853}, !- Inlet Port + {0f5d9140-69cf-49f4-932d-4a6097a8d6ad}; !- Outlet Port + +OS:Connection, + {de9a8bb1-db8c-4dc0-9520-2dc0664a6689}, !- Handle + {4e82dbd8-5054-4e16-be3b-adbf08de84e5}, !- Source Object + 3, !- Outlet Port + {8325e3d6-0b61-4bbf-92c8-e3f0c9a8a27c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {caa3f561-8d76-4c7d-8d55-c34e8b1e2853}, !- Handle + {c5427524-cf2a-4ea2-817b-f57ce13d43e7}, !- Source Object + 2, !- Outlet Port + {e1c95d5a-97bc-472c-be3f-996560adf028}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0f5d9140-69cf-49f4-932d-4a6097a8d6ad}, !- Handle + {e1c95d5a-97bc-472c-be3f-996560adf028}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 39; !- Inlet Port + +OS:Node, + {e96c6640-b31f-43a0-8c81-cc9f9ef4d7d1}, !- Handle + Zone Outpatient MedGas A - Story ground Air Terminal Inlet Air Node, !- Name + {7fcd9380-e9e0-4a4a-8e54-724bf41b1c8d}, !- Inlet Port + {d30e3e7e-9ef0-4563-a6b9-8e719b67b5ac}; !- Outlet Port + +OS:Connection, + {7fcd9380-e9e0-4a4a-8e54-724bf41b1c8d}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 39, !- Outlet Port + {e96c6640-b31f-43a0-8c81-cc9f9ef4d7d1}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d30e3e7e-9ef0-4563-a6b9-8e719b67b5ac}, !- Handle + {e96c6640-b31f-43a0-8c81-cc9f9ef4d7d1}, !- Source Object + 3, !- Outlet Port + {4208dfe9-9b53-4e5a-9c04-1f328c16606f}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {5d9041b9-d26d-4345-ad31-6d61425279f3}, !- Handle + {4208dfe9-9b53-4e5a-9c04-1f328c16606f}, !- Source Object + 4, !- Outlet Port + {4e82dbd8-5054-4e16-be3b-adbf08de84e5}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {fbfaf460-5dfb-495a-898d-b09f3d5ce2c9}, !- Handle + Schedule Constant 73, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {5b92c22e-cabf-4dff-8d79-80d6f7aa356d}, !- Handle + Schedule Constant 74, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {0b7a1f78-c244-447a-a39b-00dc35024a85}, !- Handle + Zone Outpatient MedGas B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {44321abb-9fc2-4f36-94f1-f114ef56a34e}, !- Air Inlet Node Name + {e7dc58a8-f21e-49e6-80a6-a67a9b67693a}, !- Air Outlet Node Name + 0.00781132358035649; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {39b345fa-c70a-454e-b090-0010dbb27c33}, !- Handle + Zone Outpatient MedGas B - Story ground Air Terminal Outlet Air Node, !- Name + {e7dc58a8-f21e-49e6-80a6-a67a9b67693a}, !- Inlet Port + {334ac026-18db-4760-8483-d51be52f6109}; !- Outlet Port + +OS:Node, + {99e1e3ab-e8c2-4842-ba79-c1d456040b29}, !- Handle + Zone Outpatient MedGas B - Story ground Return Air Node, !- Name + {218e8ddb-9b00-4db7-be05-65f3f852da9a}, !- Inlet Port + {1bbefbb6-0f99-44a4-8f7e-2ed996f6c395}; !- Outlet Port + +OS:Connection, + {334ac026-18db-4760-8483-d51be52f6109}, !- Handle + {39b345fa-c70a-454e-b090-0010dbb27c33}, !- Source Object + 3, !- Outlet Port + {42d35d96-0473-4ced-bdea-f693a3a5fe02}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {218e8ddb-9b00-4db7-be05-65f3f852da9a}, !- Handle + {42ae2ca9-908d-41b6-b743-740c9355575d}, !- Source Object + 2, !- Outlet Port + {99e1e3ab-e8c2-4842-ba79-c1d456040b29}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1bbefbb6-0f99-44a4-8f7e-2ed996f6c395}, !- Handle + {99e1e3ab-e8c2-4842-ba79-c1d456040b29}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 40; !- Inlet Port + +OS:Node, + {1668e768-2d47-4c7c-a33f-ab31de65c871}, !- Handle + Zone Outpatient MedGas B - Story ground Air Terminal Inlet Air Node, !- Name + {49ea804a-02cf-41a3-8fb3-ce315666ba46}, !- Inlet Port + {44321abb-9fc2-4f36-94f1-f114ef56a34e}; !- Outlet Port + +OS:Connection, + {49ea804a-02cf-41a3-8fb3-ce315666ba46}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 40, !- Outlet Port + {1668e768-2d47-4c7c-a33f-ab31de65c871}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {44321abb-9fc2-4f36-94f1-f114ef56a34e}, !- Handle + {1668e768-2d47-4c7c-a33f-ab31de65c871}, !- Source Object + 3, !- Outlet Port + {0b7a1f78-c244-447a-a39b-00dc35024a85}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {e7dc58a8-f21e-49e6-80a6-a67a9b67693a}, !- Handle + {0b7a1f78-c244-447a-a39b-00dc35024a85}, !- Source Object + 4, !- Outlet Port + {39b345fa-c70a-454e-b090-0010dbb27c33}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {104c79b5-8408-48d8-b1c6-2604f8a5fc61}, !- Handle + Schedule Constant 75, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {90a13dbd-4bc0-48b1-88b3-f76e6cdaf6ad}, !- Handle + Schedule Constant 76, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {5f33437a-7212-4f85-a662-6eb77760de2e}, !- Handle + Zone Outpatient MedGas C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {49768fc8-f9de-4b39-a2b3-c6812449bac7}, !- Air Inlet Node Name + {0f604cf2-5a61-44e1-a4b5-faa2d1d0775e}, !- Air Outlet Node Name + 0; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {00612619-52b8-4eb3-a4e0-6c52a7c21ca7}, !- Handle + Zone Outpatient MedGas C - Story ground Air Terminal Outlet Air Node, !- Name + {0f604cf2-5a61-44e1-a4b5-faa2d1d0775e}, !- Inlet Port + {4ca5f29e-be96-4676-b949-96cb6d85d805}; !- Outlet Port + +OS:Node, + {1983c80d-1cb3-468d-9982-c44c8f688544}, !- Handle + Zone Outpatient MedGas C - Story ground Return Air Node, !- Name + {035b7437-ac08-48a3-8a81-0c06783fcdec}, !- Inlet Port + {1b482e84-6056-4ad8-b8ab-f662a3542f01}; !- Outlet Port + +OS:Connection, + {4ca5f29e-be96-4676-b949-96cb6d85d805}, !- Handle + {00612619-52b8-4eb3-a4e0-6c52a7c21ca7}, !- Source Object + 3, !- Outlet Port + {a07dac7f-5e2e-4ad6-ad8f-81c6ca849f8e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {035b7437-ac08-48a3-8a81-0c06783fcdec}, !- Handle + {9df07b3f-5b41-4aa9-8c1d-8259168d0503}, !- Source Object + 2, !- Outlet Port + {1983c80d-1cb3-468d-9982-c44c8f688544}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1b482e84-6056-4ad8-b8ab-f662a3542f01}, !- Handle + {1983c80d-1cb3-468d-9982-c44c8f688544}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 41; !- Inlet Port + +OS:Node, + {3afa5cab-31de-452c-88e5-6c5d3add9812}, !- Handle + Zone Outpatient MedGas C - Story ground Air Terminal Inlet Air Node, !- Name + {886e55f0-d25c-4f5a-b182-1dc27d771ab9}, !- Inlet Port + {49768fc8-f9de-4b39-a2b3-c6812449bac7}; !- Outlet Port + +OS:Connection, + {886e55f0-d25c-4f5a-b182-1dc27d771ab9}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 41, !- Outlet Port + {3afa5cab-31de-452c-88e5-6c5d3add9812}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {49768fc8-f9de-4b39-a2b3-c6812449bac7}, !- Handle + {3afa5cab-31de-452c-88e5-6c5d3add9812}, !- Source Object + 3, !- Outlet Port + {5f33437a-7212-4f85-a662-6eb77760de2e}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {0f604cf2-5a61-44e1-a4b5-faa2d1d0775e}, !- Handle + {5f33437a-7212-4f85-a662-6eb77760de2e}, !- Source Object + 4, !- Outlet Port + {00612619-52b8-4eb3-a4e0-6c52a7c21ca7}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {5db5eecf-0f18-4e86-b31c-2c29531aa574}, !- Handle + Schedule Constant 77, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {a83fbbec-8a0e-426d-97fb-011e59c20323}, !- Handle + Schedule Constant 78, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {1425a794-2849-48eb-9312-7254240ffe73}, !- Handle + Zone Outpatient MRI A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {902c1189-4341-4dfc-baf0-d9b2d9fec771}, !- Air Inlet Node Name + {22185816-237f-4b2d-a633-e19a186838a3}, !- Air Outlet Node Name + 0.0146830303026967; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {eebf6bfa-780a-4d7b-8ee2-0b73ea8de872}, !- Handle + Zone Outpatient MRI A - Story ground Air Terminal Outlet Air Node, !- Name + {22185816-237f-4b2d-a633-e19a186838a3}, !- Inlet Port + {63d4eb8b-04c8-46d9-93f8-3b7a8c454412}; !- Outlet Port + +OS:Node, + {71e5c846-fe3d-4cde-af94-1c4cf6224fbe}, !- Handle + Zone Outpatient MRI A - Story ground Return Air Node, !- Name + {32c36495-e7aa-4e61-9742-3df9570624bb}, !- Inlet Port + {cab57f93-a149-4372-bcd5-d856c1e2d927}; !- Outlet Port + +OS:Connection, + {63d4eb8b-04c8-46d9-93f8-3b7a8c454412}, !- Handle + {eebf6bfa-780a-4d7b-8ee2-0b73ea8de872}, !- Source Object + 3, !- Outlet Port + {7559be6d-2a11-4226-8a3f-3864b2990020}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {32c36495-e7aa-4e61-9742-3df9570624bb}, !- Handle + {152224f0-5a90-439d-ba34-bc101f2348da}, !- Source Object + 2, !- Outlet Port + {71e5c846-fe3d-4cde-af94-1c4cf6224fbe}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {cab57f93-a149-4372-bcd5-d856c1e2d927}, !- Handle + {71e5c846-fe3d-4cde-af94-1c4cf6224fbe}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 42; !- Inlet Port + +OS:Node, + {e5ed959b-f4dc-493c-87e8-5998ff2e72ab}, !- Handle + Zone Outpatient MRI A - Story ground Air Terminal Inlet Air Node, !- Name + {5c207465-8fe7-4fe0-bc70-209e58f1ec8f}, !- Inlet Port + {902c1189-4341-4dfc-baf0-d9b2d9fec771}; !- Outlet Port + +OS:Connection, + {5c207465-8fe7-4fe0-bc70-209e58f1ec8f}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 42, !- Outlet Port + {e5ed959b-f4dc-493c-87e8-5998ff2e72ab}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {902c1189-4341-4dfc-baf0-d9b2d9fec771}, !- Handle + {e5ed959b-f4dc-493c-87e8-5998ff2e72ab}, !- Source Object + 3, !- Outlet Port + {1425a794-2849-48eb-9312-7254240ffe73}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {22185816-237f-4b2d-a633-e19a186838a3}, !- Handle + {1425a794-2849-48eb-9312-7254240ffe73}, !- Source Object + 4, !- Outlet Port + {eebf6bfa-780a-4d7b-8ee2-0b73ea8de872}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {428ae4eb-95ea-431c-af4e-6a9f8510e729}, !- Handle + Schedule Constant 79, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {95bf5ff5-9f80-4d3b-8892-422daab2752c}, !- Handle + Schedule Constant 80, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {524f015f-c94d-43be-b04e-7f9684a7a784}, !- Handle + Zone Outpatient MRI B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {2850c688-ba0c-4c43-b2c3-d8bdbee531f2}, !- Air Inlet Node Name + {c071c457-5cc1-4aae-9f74-7bee31819ded}, !- Air Outlet Node Name + 0.119401660442624; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {9344a269-c96a-4993-9ca7-048ccb35bf14}, !- Handle + Zone Outpatient MRI B - Story ground Air Terminal Outlet Air Node, !- Name + {c071c457-5cc1-4aae-9f74-7bee31819ded}, !- Inlet Port + {794e7956-77cf-4f0e-a60b-fceba994778c}; !- Outlet Port + +OS:Node, + {9392e69d-e7f2-443b-8f01-fe9e7e7e6194}, !- Handle + Zone Outpatient MRI B - Story ground Return Air Node, !- Name + {5ab3da8b-610c-43e4-a354-c87102049a6c}, !- Inlet Port + {ee022d81-b524-49e2-a481-a20b85cd6196}; !- Outlet Port + +OS:Connection, + {794e7956-77cf-4f0e-a60b-fceba994778c}, !- Handle + {9344a269-c96a-4993-9ca7-048ccb35bf14}, !- Source Object + 3, !- Outlet Port + {20dd16e6-3d4e-49ee-8dbd-fef3a49d4627}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {5ab3da8b-610c-43e4-a354-c87102049a6c}, !- Handle + {927d08a2-621a-4105-ad82-c22af5fe8636}, !- Source Object + 2, !- Outlet Port + {9392e69d-e7f2-443b-8f01-fe9e7e7e6194}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ee022d81-b524-49e2-a481-a20b85cd6196}, !- Handle + {9392e69d-e7f2-443b-8f01-fe9e7e7e6194}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 43; !- Inlet Port + +OS:Node, + {8fbe454e-2125-4b83-8832-0bf2f9945592}, !- Handle + Zone Outpatient MRI B - Story ground Air Terminal Inlet Air Node, !- Name + {44f368f9-507a-41d4-a2d1-33acb569068a}, !- Inlet Port + {2850c688-ba0c-4c43-b2c3-d8bdbee531f2}; !- Outlet Port + +OS:Connection, + {44f368f9-507a-41d4-a2d1-33acb569068a}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 43, !- Outlet Port + {8fbe454e-2125-4b83-8832-0bf2f9945592}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2850c688-ba0c-4c43-b2c3-d8bdbee531f2}, !- Handle + {8fbe454e-2125-4b83-8832-0bf2f9945592}, !- Source Object + 3, !- Outlet Port + {524f015f-c94d-43be-b04e-7f9684a7a784}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {c071c457-5cc1-4aae-9f74-7bee31819ded}, !- Handle + {524f015f-c94d-43be-b04e-7f9684a7a784}, !- Source Object + 4, !- Outlet Port + {9344a269-c96a-4993-9ca7-048ccb35bf14}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {514998ca-dadc-4ad2-8229-da9047c19fbd}, !- Handle + Schedule Constant 81, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {463eb31f-1abb-4d0c-a2a0-2eaf9fd68d22}, !- Handle + Schedule Constant 82, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {95ed35aa-d89a-4674-a51a-74ee13f070ba}, !- Handle + Zone Outpatient MRI C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {b2f7e4cc-7556-48ca-8826-3ea77db6d249}, !- Air Inlet Node Name + {85323af2-067a-464e-86d6-757a9221df9a}, !- Air Outlet Node Name + 0.0146830303026967; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {07396b89-88b5-466e-af66-fab46e094108}, !- Handle + Zone Outpatient MRI C - Story ground Air Terminal Outlet Air Node, !- Name + {85323af2-067a-464e-86d6-757a9221df9a}, !- Inlet Port + {53d548eb-20d5-45fd-b5a1-e5d3f99a06e4}; !- Outlet Port + +OS:Node, + {35c6f40f-cffb-481a-b846-84489374fb98}, !- Handle + Zone Outpatient MRI C - Story ground Return Air Node, !- Name + {3be98313-9a2b-4d04-95fd-95bf40b71bbb}, !- Inlet Port + {3b7e484f-51dd-4c58-ab8f-57d2e3463278}; !- Outlet Port + +OS:Connection, + {53d548eb-20d5-45fd-b5a1-e5d3f99a06e4}, !- Handle + {07396b89-88b5-466e-af66-fab46e094108}, !- Source Object + 3, !- Outlet Port + {cd65c217-cc7b-4dea-b350-d1ede48976da}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3be98313-9a2b-4d04-95fd-95bf40b71bbb}, !- Handle + {964111c7-0d7a-41f8-9104-61ae0aef8f01}, !- Source Object + 2, !- Outlet Port + {35c6f40f-cffb-481a-b846-84489374fb98}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3b7e484f-51dd-4c58-ab8f-57d2e3463278}, !- Handle + {35c6f40f-cffb-481a-b846-84489374fb98}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 44; !- Inlet Port + +OS:Node, + {ab9a50f6-f184-4456-8228-cf6a0043a7ce}, !- Handle + Zone Outpatient MRI C - Story ground Air Terminal Inlet Air Node, !- Name + {5815aa63-c1fc-41d2-8544-b95b4d546a65}, !- Inlet Port + {b2f7e4cc-7556-48ca-8826-3ea77db6d249}; !- Outlet Port + +OS:Connection, + {5815aa63-c1fc-41d2-8544-b95b4d546a65}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 44, !- Outlet Port + {ab9a50f6-f184-4456-8228-cf6a0043a7ce}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b2f7e4cc-7556-48ca-8826-3ea77db6d249}, !- Handle + {ab9a50f6-f184-4456-8228-cf6a0043a7ce}, !- Source Object + 3, !- Outlet Port + {95ed35aa-d89a-4674-a51a-74ee13f070ba}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {85323af2-067a-464e-86d6-757a9221df9a}, !- Handle + {95ed35aa-d89a-4674-a51a-74ee13f070ba}, !- Source Object + 4, !- Outlet Port + {07396b89-88b5-466e-af66-fab46e094108}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {05299476-96c8-4134-af3d-585a6344beab}, !- Handle + Schedule Constant 83, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {115ae227-15bb-4b96-b04c-8574bde0c02e}, !- Handle + Schedule Constant 84, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {eb62d391-c810-4ada-8027-24b0d09ce9cb}, !- Handle + Zone Outpatient MRI_Control A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {fac12603-9be2-4b00-b3e4-e2ca6f280f06}, !- Air Inlet Node Name + {0f3842cc-6f5a-4bbf-ba91-08c79fef4b68}, !- Air Outlet Node Name + 0.00562620787299477; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {b6f98ade-7ad4-4a32-81bd-77e17597a949}, !- Handle + Zone Outpatient MRI_Control A - Story ground Air Terminal Outlet Air Node, !- Name + {0f3842cc-6f5a-4bbf-ba91-08c79fef4b68}, !- Inlet Port + {b0419038-1538-4873-8edc-af8f160e3341}; !- Outlet Port + +OS:Node, + {e03e98d6-d2aa-4d9f-a86f-e49095dfa731}, !- Handle + Zone Outpatient MRI_Control A - Story ground Return Air Node, !- Name + {7c5151c2-755c-4129-9c3d-b3d8223ed2f7}, !- Inlet Port + {5ade2f6a-fa12-4cef-adc5-b6384be492bc}; !- Outlet Port + +OS:Connection, + {b0419038-1538-4873-8edc-af8f160e3341}, !- Handle + {b6f98ade-7ad4-4a32-81bd-77e17597a949}, !- Source Object + 3, !- Outlet Port + {6429b054-a8ad-405a-abb5-9bbab0537242}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7c5151c2-755c-4129-9c3d-b3d8223ed2f7}, !- Handle + {c740ba66-8564-4dae-a3db-a82eaebcc4a4}, !- Source Object + 2, !- Outlet Port + {e03e98d6-d2aa-4d9f-a86f-e49095dfa731}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {5ade2f6a-fa12-4cef-adc5-b6384be492bc}, !- Handle + {e03e98d6-d2aa-4d9f-a86f-e49095dfa731}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 45; !- Inlet Port + +OS:Node, + {edcffd6f-d6ae-4a1f-9243-29c198e43073}, !- Handle + Zone Outpatient MRI_Control A - Story ground Air Terminal Inlet Air Node, !- Name + {0bb869bc-9ab7-4ea7-9a10-c9afd46ce5da}, !- Inlet Port + {fac12603-9be2-4b00-b3e4-e2ca6f280f06}; !- Outlet Port + +OS:Connection, + {0bb869bc-9ab7-4ea7-9a10-c9afd46ce5da}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 45, !- Outlet Port + {edcffd6f-d6ae-4a1f-9243-29c198e43073}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fac12603-9be2-4b00-b3e4-e2ca6f280f06}, !- Handle + {edcffd6f-d6ae-4a1f-9243-29c198e43073}, !- Source Object + 3, !- Outlet Port + {eb62d391-c810-4ada-8027-24b0d09ce9cb}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {0f3842cc-6f5a-4bbf-ba91-08c79fef4b68}, !- Handle + {eb62d391-c810-4ada-8027-24b0d09ce9cb}, !- Source Object + 4, !- Outlet Port + {b6f98ade-7ad4-4a32-81bd-77e17597a949}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {27818fef-4103-4dd8-9cb0-abfc0200c01b}, !- Handle + Schedule Constant 85, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {a5c88139-48d4-459c-b5e1-fa1fbc290f69}, !- Handle + Schedule Constant 86, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {9c90f3cc-518c-43e7-83a5-11c0c0ba4cc8}, !- Handle + Zone Outpatient MRI_Control B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {99df4044-33aa-41cd-bab2-d6d79373b4ab}, !- Air Inlet Node Name + {b15f55de-2923-4165-b316-fd99af275fb8}, !- Air Outlet Node Name + 0.0457520381135199; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {8217675c-b02b-4407-a4fd-98bd4797f673}, !- Handle + Zone Outpatient MRI_Control B - Story ground Air Terminal Outlet Air Node, !- Name + {b15f55de-2923-4165-b316-fd99af275fb8}, !- Inlet Port + {83f708e8-79a8-4c63-a855-e4bdc163d31b}; !- Outlet Port + +OS:Node, + {596ba9e9-68dd-4822-8bae-9d5b9e06b7cb}, !- Handle + Zone Outpatient MRI_Control B - Story ground Return Air Node, !- Name + {78aebe1c-1b91-4f4d-9f5d-be7a5882a740}, !- Inlet Port + {1c444abb-02ea-472e-a24a-3d0a7027f8f4}; !- Outlet Port + +OS:Connection, + {83f708e8-79a8-4c63-a855-e4bdc163d31b}, !- Handle + {8217675c-b02b-4407-a4fd-98bd4797f673}, !- Source Object + 3, !- Outlet Port + {bbe08e4c-f5e8-41f0-b9d8-8ef247c2dd45}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {78aebe1c-1b91-4f4d-9f5d-be7a5882a740}, !- Handle + {8ae339ff-d913-4d89-a3ee-f4940da5af7d}, !- Source Object + 2, !- Outlet Port + {596ba9e9-68dd-4822-8bae-9d5b9e06b7cb}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1c444abb-02ea-472e-a24a-3d0a7027f8f4}, !- Handle + {596ba9e9-68dd-4822-8bae-9d5b9e06b7cb}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 46; !- Inlet Port + +OS:Node, + {9c69c5d3-bc95-4281-84c3-82fe5b9d2be9}, !- Handle + Zone Outpatient MRI_Control B - Story ground Air Terminal Inlet Air Node, !- Name + {4347aaa0-2c7e-4609-adb9-7570e0ee14ca}, !- Inlet Port + {99df4044-33aa-41cd-bab2-d6d79373b4ab}; !- Outlet Port + +OS:Connection, + {4347aaa0-2c7e-4609-adb9-7570e0ee14ca}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 46, !- Outlet Port + {9c69c5d3-bc95-4281-84c3-82fe5b9d2be9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {99df4044-33aa-41cd-bab2-d6d79373b4ab}, !- Handle + {9c69c5d3-bc95-4281-84c3-82fe5b9d2be9}, !- Source Object + 3, !- Outlet Port + {9c90f3cc-518c-43e7-83a5-11c0c0ba4cc8}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {b15f55de-2923-4165-b316-fd99af275fb8}, !- Handle + {9c90f3cc-518c-43e7-83a5-11c0c0ba4cc8}, !- Source Object + 4, !- Outlet Port + {8217675c-b02b-4407-a4fd-98bd4797f673}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {aa148802-ca81-4f3c-9ef6-80234eee4f53}, !- Handle + Schedule Constant 87, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {78f0e09e-d8af-48cd-9943-2c564203dd4c}, !- Handle + Schedule Constant 88, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {c4f0f7b4-9b36-42fa-97a2-b12dbea93c5b}, !- Handle + Zone Outpatient MRI_Control C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {826048b3-4ea3-4633-9c97-819e7eb97bac}, !- Air Inlet Node Name + {1750bec2-f6a7-40b1-beb0-6e4ce04d5af7}, !- Air Outlet Node Name + 0.00562620787299485; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {58a5f878-d611-4a8a-a8a6-600ad777f927}, !- Handle + Zone Outpatient MRI_Control C - Story ground Air Terminal Outlet Air Node, !- Name + {1750bec2-f6a7-40b1-beb0-6e4ce04d5af7}, !- Inlet Port + {1ec24fc0-f0fc-4e02-b95b-10dd253b72fc}; !- Outlet Port + +OS:Node, + {cea0f23f-10ce-459b-b7ed-786ea7bf7ffc}, !- Handle + Zone Outpatient MRI_Control C - Story ground Return Air Node, !- Name + {155ae78a-1940-4a89-b427-a64b333d55e7}, !- Inlet Port + {336d9de7-c22c-435f-b6fb-94d4bea7aa79}; !- Outlet Port + +OS:Connection, + {1ec24fc0-f0fc-4e02-b95b-10dd253b72fc}, !- Handle + {58a5f878-d611-4a8a-a8a6-600ad777f927}, !- Source Object + 3, !- Outlet Port + {a94fd621-9d94-40ad-ba71-3e647e19ae5c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {155ae78a-1940-4a89-b427-a64b333d55e7}, !- Handle + {24577404-df42-4c27-834d-77e020db6b45}, !- Source Object + 2, !- Outlet Port + {cea0f23f-10ce-459b-b7ed-786ea7bf7ffc}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {336d9de7-c22c-435f-b6fb-94d4bea7aa79}, !- Handle + {cea0f23f-10ce-459b-b7ed-786ea7bf7ffc}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 47; !- Inlet Port + +OS:Node, + {7efbe942-85f6-4691-bad2-a27537f25185}, !- Handle + Zone Outpatient MRI_Control C - Story ground Air Terminal Inlet Air Node, !- Name + {54f602d5-dff1-4e07-b5fe-ed4a25efc0be}, !- Inlet Port + {826048b3-4ea3-4633-9c97-819e7eb97bac}; !- Outlet Port + +OS:Connection, + {54f602d5-dff1-4e07-b5fe-ed4a25efc0be}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 47, !- Outlet Port + {7efbe942-85f6-4691-bad2-a27537f25185}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {826048b3-4ea3-4633-9c97-819e7eb97bac}, !- Handle + {7efbe942-85f6-4691-bad2-a27537f25185}, !- Source Object + 3, !- Outlet Port + {c4f0f7b4-9b36-42fa-97a2-b12dbea93c5b}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {1750bec2-f6a7-40b1-beb0-6e4ce04d5af7}, !- Handle + {c4f0f7b4-9b36-42fa-97a2-b12dbea93c5b}, !- Source Object + 4, !- Outlet Port + {58a5f878-d611-4a8a-a8a6-600ad777f927}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {fbf78e8e-3d0f-4a82-a81e-44e286109316}, !- Handle + Schedule Constant 89, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {2eec16e3-e433-4946-9541-b25d4b89a3d0}, !- Handle + Schedule Constant 90, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {42e86628-dcfb-4cab-9dcc-e0008564aeb9}, !- Handle + Zone Outpatient NurseStation A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {31dda289-352b-46d0-92a0-ae5d15c57e76}, !- Air Inlet Node Name + {f96d391d-fe09-4458-9e03-28112397b637}, !- Air Outlet Node Name + 0.0321253725056317; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {251db5b3-13c5-45be-9c1d-d4d6ba2dca51}, !- Handle + Zone Outpatient NurseStation A - Story ground Air Terminal Outlet Air Node, !- Name + {f96d391d-fe09-4458-9e03-28112397b637}, !- Inlet Port + {3a57e031-ccfd-430d-b82c-a1d56ceb4ff4}; !- Outlet Port + +OS:Node, + {29b36dfa-334f-4b73-a744-e038ac8fa5af}, !- Handle + Zone Outpatient NurseStation A - Story ground Return Air Node, !- Name + {63ec979e-77cf-4c73-9028-962b84bc5f84}, !- Inlet Port + {41c794a7-03ff-4801-828b-c5c3c5a730e8}; !- Outlet Port + +OS:Connection, + {3a57e031-ccfd-430d-b82c-a1d56ceb4ff4}, !- Handle + {251db5b3-13c5-45be-9c1d-d4d6ba2dca51}, !- Source Object + 3, !- Outlet Port + {f757f7cb-b151-434a-81df-7fff919b5450}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {63ec979e-77cf-4c73-9028-962b84bc5f84}, !- Handle + {d113988c-9cdc-47ec-9ae1-a8befb1eacc0}, !- Source Object + 2, !- Outlet Port + {29b36dfa-334f-4b73-a744-e038ac8fa5af}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {41c794a7-03ff-4801-828b-c5c3c5a730e8}, !- Handle + {29b36dfa-334f-4b73-a744-e038ac8fa5af}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 48; !- Inlet Port + +OS:Node, + {f25ec7a0-f5c3-426f-b674-c7e240711545}, !- Handle + Zone Outpatient NurseStation A - Story ground Air Terminal Inlet Air Node, !- Name + {d4975297-c427-4c6f-9c5b-aa823ee6dcfb}, !- Inlet Port + {31dda289-352b-46d0-92a0-ae5d15c57e76}; !- Outlet Port + +OS:Connection, + {d4975297-c427-4c6f-9c5b-aa823ee6dcfb}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 48, !- Outlet Port + {f25ec7a0-f5c3-426f-b674-c7e240711545}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {31dda289-352b-46d0-92a0-ae5d15c57e76}, !- Handle + {f25ec7a0-f5c3-426f-b674-c7e240711545}, !- Source Object + 3, !- Outlet Port + {42e86628-dcfb-4cab-9dcc-e0008564aeb9}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {f96d391d-fe09-4458-9e03-28112397b637}, !- Handle + {42e86628-dcfb-4cab-9dcc-e0008564aeb9}, !- Source Object + 4, !- Outlet Port + {251db5b3-13c5-45be-9c1d-d4d6ba2dca51}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {ec85ec08-7066-46b2-9f9c-374c0da463ee}, !- Handle + Schedule Constant 91, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {63dd2413-e628-425a-b77f-cc562ecb847e}, !- Handle + Schedule Constant 92, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {74593b2c-1122-41c4-959d-ac67b6cb3448}, !- Handle + Zone Outpatient NurseStation B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {e1db3658-dd7d-4a6c-a39f-d1fc6a684f5d}, !- Air Inlet Node Name + {65f7e94e-226a-471e-ae55-ab9621ea3900}, !- Air Outlet Node Name + 0.261241905821425; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {98b5a9c2-dc4b-4c2a-a35e-1e9b540573dd}, !- Handle + Zone Outpatient NurseStation B - Story ground Air Terminal Outlet Air Node, !- Name + {65f7e94e-226a-471e-ae55-ab9621ea3900}, !- Inlet Port + {c7819b3c-10ba-4c54-b1af-a034b705eb5c}; !- Outlet Port + +OS:Node, + {7936c5b3-af88-4822-8071-c4b709b98635}, !- Handle + Zone Outpatient NurseStation B - Story ground Return Air Node, !- Name + {48cb1727-f0f6-4d5d-b2c7-edc2bfd06c8c}, !- Inlet Port + {33f7e0e0-20bb-45b8-9952-46658b590168}; !- Outlet Port + +OS:Connection, + {c7819b3c-10ba-4c54-b1af-a034b705eb5c}, !- Handle + {98b5a9c2-dc4b-4c2a-a35e-1e9b540573dd}, !- Source Object + 3, !- Outlet Port + {f06d42b8-4050-4cf2-8ac4-759a8a4e0f3c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {48cb1727-f0f6-4d5d-b2c7-edc2bfd06c8c}, !- Handle + {0ce83ae5-0643-476f-a462-68a6a62b52a3}, !- Source Object + 2, !- Outlet Port + {7936c5b3-af88-4822-8071-c4b709b98635}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {33f7e0e0-20bb-45b8-9952-46658b590168}, !- Handle + {7936c5b3-af88-4822-8071-c4b709b98635}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 49; !- Inlet Port + +OS:Node, + {b53881ba-c499-43d4-9259-6b0d9aff2e87}, !- Handle + Zone Outpatient NurseStation B - Story ground Air Terminal Inlet Air Node, !- Name + {c439b220-e1a6-4d67-be3f-9e97c4f8f1ea}, !- Inlet Port + {e1db3658-dd7d-4a6c-a39f-d1fc6a684f5d}; !- Outlet Port + +OS:Connection, + {c439b220-e1a6-4d67-be3f-9e97c4f8f1ea}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 49, !- Outlet Port + {b53881ba-c499-43d4-9259-6b0d9aff2e87}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e1db3658-dd7d-4a6c-a39f-d1fc6a684f5d}, !- Handle + {b53881ba-c499-43d4-9259-6b0d9aff2e87}, !- Source Object + 3, !- Outlet Port + {74593b2c-1122-41c4-959d-ac67b6cb3448}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {65f7e94e-226a-471e-ae55-ab9621ea3900}, !- Handle + {74593b2c-1122-41c4-959d-ac67b6cb3448}, !- Source Object + 4, !- Outlet Port + {98b5a9c2-dc4b-4c2a-a35e-1e9b540573dd}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {773811c0-7d79-4ffa-8049-f6bf5a2419bc}, !- Handle + Schedule Constant 93, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {332cd2b4-ae39-4fdd-8b91-1ac66176d41f}, !- Handle + Schedule Constant 94, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {785a98a8-9389-4e2e-81ea-209773c1c3f2}, !- Handle + Zone Outpatient NurseStation C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {0c760fcf-c627-428f-9a98-caf465e79929}, !- Air Inlet Node Name + {75970c33-e214-414c-84c5-84ef04ae7c46}, !- Air Outlet Node Name + 0.0321253725056316; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {97b86151-55d3-4be1-ab69-628f36c85e95}, !- Handle + Zone Outpatient NurseStation C - Story ground Air Terminal Outlet Air Node, !- Name + {75970c33-e214-414c-84c5-84ef04ae7c46}, !- Inlet Port + {fdc18125-3378-4a8a-9c33-3150f1b96971}; !- Outlet Port + +OS:Node, + {b2e369e4-6b52-4338-bf82-5159b9fa7e1e}, !- Handle + Zone Outpatient NurseStation C - Story ground Return Air Node, !- Name + {fea64925-a3cd-4cb6-80bc-bf4898f5d083}, !- Inlet Port + {79ad96d2-a591-41c8-806b-341289c3d85b}; !- Outlet Port + +OS:Connection, + {fdc18125-3378-4a8a-9c33-3150f1b96971}, !- Handle + {97b86151-55d3-4be1-ab69-628f36c85e95}, !- Source Object + 3, !- Outlet Port + {ac1415c3-3b1f-4c31-be87-1ed1367278fb}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fea64925-a3cd-4cb6-80bc-bf4898f5d083}, !- Handle + {67d31c4e-90cb-4abb-8067-70cd58797f63}, !- Source Object + 2, !- Outlet Port + {b2e369e4-6b52-4338-bf82-5159b9fa7e1e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {79ad96d2-a591-41c8-806b-341289c3d85b}, !- Handle + {b2e369e4-6b52-4338-bf82-5159b9fa7e1e}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 50; !- Inlet Port + +OS:Node, + {de9fc1a5-e1f7-4f0e-bfdb-1b02f59755fe}, !- Handle + Zone Outpatient NurseStation C - Story ground Air Terminal Inlet Air Node, !- Name + {eeb4e482-bf3b-46c8-8b27-c66ed04d5860}, !- Inlet Port + {0c760fcf-c627-428f-9a98-caf465e79929}; !- Outlet Port + +OS:Connection, + {eeb4e482-bf3b-46c8-8b27-c66ed04d5860}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 50, !- Outlet Port + {de9fc1a5-e1f7-4f0e-bfdb-1b02f59755fe}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0c760fcf-c627-428f-9a98-caf465e79929}, !- Handle + {de9fc1a5-e1f7-4f0e-bfdb-1b02f59755fe}, !- Source Object + 3, !- Outlet Port + {785a98a8-9389-4e2e-81ea-209773c1c3f2}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {75970c33-e214-414c-84c5-84ef04ae7c46}, !- Handle + {785a98a8-9389-4e2e-81ea-209773c1c3f2}, !- Source Object + 4, !- Outlet Port + {97b86151-55d3-4be1-ab69-628f36c85e95}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {2b0f35b9-08b0-4862-8cd4-50fb5473d589}, !- Handle + Schedule Constant 95, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {c8b4b7c7-4178-4da7-a8ae-955fd9467315}, !- Handle + Schedule Constant 96, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {032599c3-e9ec-46a2-9260-23d731bc5514}, !- Handle + Zone Outpatient Office A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {d96743dd-4571-4c4e-8c12-53e88c9dce5c}, !- Air Inlet Node Name + {cae8a8d3-3212-48f1-a152-86fc1b0accbf}, !- Air Outlet Node Name + 0.0542424793580318; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {e300a21e-abad-4c72-8774-456f8ec82107}, !- Handle + Zone Outpatient Office A - Story ground Air Terminal Outlet Air Node, !- Name + {cae8a8d3-3212-48f1-a152-86fc1b0accbf}, !- Inlet Port + {bfbdeb6f-0739-4d94-8738-6f6c118c53f9}; !- Outlet Port + +OS:Node, + {df0f9ddb-4dbb-4376-bc55-48f02a3bb960}, !- Handle + Zone Outpatient Office A - Story ground Return Air Node, !- Name + {efc9499a-9ceb-4ddf-9efa-fcc3f7e1ce05}, !- Inlet Port + {662592ad-8910-465c-bcde-bedd22800009}; !- Outlet Port + +OS:Connection, + {bfbdeb6f-0739-4d94-8738-6f6c118c53f9}, !- Handle + {e300a21e-abad-4c72-8774-456f8ec82107}, !- Source Object + 3, !- Outlet Port + {76bdbd14-f997-4e4b-b838-26e2754e84df}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {efc9499a-9ceb-4ddf-9efa-fcc3f7e1ce05}, !- Handle + {7b98ced2-d40a-4798-bd83-7f4f47857a24}, !- Source Object + 2, !- Outlet Port + {df0f9ddb-4dbb-4376-bc55-48f02a3bb960}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {662592ad-8910-465c-bcde-bedd22800009}, !- Handle + {df0f9ddb-4dbb-4376-bc55-48f02a3bb960}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 51; !- Inlet Port + +OS:Node, + {5d3b807c-0fe3-40d1-a9f0-c08f58a19410}, !- Handle + Zone Outpatient Office A - Story ground Air Terminal Inlet Air Node, !- Name + {aa17d1f7-e312-4dfa-8841-d32e1dfc2340}, !- Inlet Port + {d96743dd-4571-4c4e-8c12-53e88c9dce5c}; !- Outlet Port + +OS:Connection, + {aa17d1f7-e312-4dfa-8841-d32e1dfc2340}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 51, !- Outlet Port + {5d3b807c-0fe3-40d1-a9f0-c08f58a19410}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d96743dd-4571-4c4e-8c12-53e88c9dce5c}, !- Handle + {5d3b807c-0fe3-40d1-a9f0-c08f58a19410}, !- Source Object + 3, !- Outlet Port + {032599c3-e9ec-46a2-9260-23d731bc5514}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {cae8a8d3-3212-48f1-a152-86fc1b0accbf}, !- Handle + {032599c3-e9ec-46a2-9260-23d731bc5514}, !- Source Object + 4, !- Outlet Port + {e300a21e-abad-4c72-8774-456f8ec82107}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {ab4e6319-39d0-4ace-97fb-50c6eb3be11a}, !- Handle + Schedule Constant 97, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {f42f7dbd-d607-49d9-a1da-b773e5657f22}, !- Handle + Schedule Constant 98, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {43f89312-2811-4778-8e87-b94d065e67bb}, !- Handle + Zone Outpatient Office A end_b - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {1f3dddd1-5167-4c9d-94c8-ad25a15cc510}, !- Air Inlet Node Name + {1c8a0bc5-5244-4fef-bb32-578cff3ef92b}, !- Air Outlet Node Name + 0.00987550024896; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {a5398593-36b9-4a83-ae6c-45651ff2434f}, !- Handle + Zone Outpatient Office A end_b - Story ground Air Terminal Outlet Air Node, !- Name + {1c8a0bc5-5244-4fef-bb32-578cff3ef92b}, !- Inlet Port + {1fc93a93-86ec-4dc0-b9be-b1d2ca3656c2}; !- Outlet Port + +OS:Node, + {a73998f1-82d4-408e-993b-c0e2cf69bebc}, !- Handle + Zone Outpatient Office A end_b - Story ground Return Air Node, !- Name + {28e997c7-a5d1-492b-81af-bd1b785a5343}, !- Inlet Port + {4834feb4-e1e2-4ae3-80dd-00a7e4fc5816}; !- Outlet Port + +OS:Connection, + {1fc93a93-86ec-4dc0-b9be-b1d2ca3656c2}, !- Handle + {a5398593-36b9-4a83-ae6c-45651ff2434f}, !- Source Object + 3, !- Outlet Port + {353d1314-348a-4017-8364-5394665d5de2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {28e997c7-a5d1-492b-81af-bd1b785a5343}, !- Handle + {fbad3230-5825-4d11-afa3-165d2ab6006b}, !- Source Object + 2, !- Outlet Port + {a73998f1-82d4-408e-993b-c0e2cf69bebc}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4834feb4-e1e2-4ae3-80dd-00a7e4fc5816}, !- Handle + {a73998f1-82d4-408e-993b-c0e2cf69bebc}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 52; !- Inlet Port + +OS:Node, + {93014315-c065-4fd9-a163-fdf4bae1ecf0}, !- Handle + Zone Outpatient Office A end_b - Story ground Air Terminal Inlet Air Node, !- Name + {dd99a080-4086-49c2-8d25-fcfc6b64c1a4}, !- Inlet Port + {1f3dddd1-5167-4c9d-94c8-ad25a15cc510}; !- Outlet Port + +OS:Connection, + {dd99a080-4086-49c2-8d25-fcfc6b64c1a4}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 52, !- Outlet Port + {93014315-c065-4fd9-a163-fdf4bae1ecf0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1f3dddd1-5167-4c9d-94c8-ad25a15cc510}, !- Handle + {93014315-c065-4fd9-a163-fdf4bae1ecf0}, !- Source Object + 3, !- Outlet Port + {43f89312-2811-4778-8e87-b94d065e67bb}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {1c8a0bc5-5244-4fef-bb32-578cff3ef92b}, !- Handle + {43f89312-2811-4778-8e87-b94d065e67bb}, !- Source Object + 4, !- Outlet Port + {a5398593-36b9-4a83-ae6c-45651ff2434f}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {8fa03876-889c-4826-9820-39f343196ff8}, !- Handle + Schedule Constant 99, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {3e4cd851-3419-42e1-9cc2-7e969cf64e88}, !- Handle + Schedule Constant 100, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {0c517aae-b41f-4730-9a47-186446942cd9}, !- Handle + Zone Outpatient Office B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {558b900a-2c86-4a9b-af7e-5ce5b4952dec}, !- Air Inlet Node Name + {8a841281-0cbc-42cd-a99e-bb62aaa4af5b}, !- Air Outlet Node Name + 0.558049368675572; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {afff410d-f365-4559-9709-a38959274962}, !- Handle + Zone Outpatient Office B - Story ground Air Terminal Outlet Air Node, !- Name + {8a841281-0cbc-42cd-a99e-bb62aaa4af5b}, !- Inlet Port + {0a8afd0e-7c38-42c6-b581-01f6bcba9550}; !- Outlet Port + +OS:Node, + {957e95c7-0b9f-4463-991a-b83113f928a0}, !- Handle + Zone Outpatient Office B - Story ground Return Air Node, !- Name + {3c4f45e2-dfe0-4c11-bc4c-085618aebbcf}, !- Inlet Port + {974d1c17-26a0-4abc-b502-3656f8666042}; !- Outlet Port + +OS:Connection, + {0a8afd0e-7c38-42c6-b581-01f6bcba9550}, !- Handle + {afff410d-f365-4559-9709-a38959274962}, !- Source Object + 3, !- Outlet Port + {208d0c52-7ad9-4d73-92f1-002756d087ab}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3c4f45e2-dfe0-4c11-bc4c-085618aebbcf}, !- Handle + {4bbc6698-7570-4b96-a6ce-7c583692078c}, !- Source Object + 2, !- Outlet Port + {957e95c7-0b9f-4463-991a-b83113f928a0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {974d1c17-26a0-4abc-b502-3656f8666042}, !- Handle + {957e95c7-0b9f-4463-991a-b83113f928a0}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 53; !- Inlet Port + +OS:Node, + {4cdbe98c-adca-4584-a60f-4e177f2440b6}, !- Handle + Zone Outpatient Office B - Story ground Air Terminal Inlet Air Node, !- Name + {3661a731-dad9-463e-8727-c26b6d4e14bd}, !- Inlet Port + {558b900a-2c86-4a9b-af7e-5ce5b4952dec}; !- Outlet Port + +OS:Connection, + {3661a731-dad9-463e-8727-c26b6d4e14bd}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 53, !- Outlet Port + {4cdbe98c-adca-4584-a60f-4e177f2440b6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {558b900a-2c86-4a9b-af7e-5ce5b4952dec}, !- Handle + {4cdbe98c-adca-4584-a60f-4e177f2440b6}, !- Source Object + 3, !- Outlet Port + {0c517aae-b41f-4730-9a47-186446942cd9}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {8a841281-0cbc-42cd-a99e-bb62aaa4af5b}, !- Handle + {0c517aae-b41f-4730-9a47-186446942cd9}, !- Source Object + 4, !- Outlet Port + {afff410d-f365-4559-9709-a38959274962}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {f1865321-c648-4348-85f0-f65eef5f3298}, !- Handle + Schedule Constant 101, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {172caa3d-7f02-4735-8eee-f5019be54418}, !- Handle + Schedule Constant 102, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {bfce7d9b-39c4-4cb0-ad18-c757493bf456}, !- Handle + Zone Outpatient Office B end_b - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {bdf4ae34-1139-4972-8a56-c807ffeb0909}, !- Air Inlet Node Name + {5943214b-b032-4f13-ab10-a92bc7bbf27d}, !- Air Outlet Node Name + 0.101599645600852; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {c10f151a-5290-4a6a-a436-12a2d8e97810}, !- Handle + Zone Outpatient Office B end_b - Story ground Air Terminal Outlet Air Node, !- Name + {5943214b-b032-4f13-ab10-a92bc7bbf27d}, !- Inlet Port + {8c48d3d8-2733-40de-a04e-a3038c2b30b8}; !- Outlet Port + +OS:Node, + {d76a4e75-3f1c-4a67-aa4e-92fb69d1ffdd}, !- Handle + Zone Outpatient Office B end_b - Story ground Return Air Node, !- Name + {2f8b8c14-5670-4eeb-999a-242c13fd654d}, !- Inlet Port + {aea28925-eef8-489d-a7d9-0c289136a9c7}; !- Outlet Port + +OS:Connection, + {8c48d3d8-2733-40de-a04e-a3038c2b30b8}, !- Handle + {c10f151a-5290-4a6a-a436-12a2d8e97810}, !- Source Object + 3, !- Outlet Port + {230d9f26-6344-469b-800b-474370638aeb}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2f8b8c14-5670-4eeb-999a-242c13fd654d}, !- Handle + {48905429-b17d-4982-8fc9-b93838106231}, !- Source Object + 2, !- Outlet Port + {d76a4e75-3f1c-4a67-aa4e-92fb69d1ffdd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {aea28925-eef8-489d-a7d9-0c289136a9c7}, !- Handle + {d76a4e75-3f1c-4a67-aa4e-92fb69d1ffdd}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 54; !- Inlet Port + +OS:Node, + {c941809a-ec8b-4bac-920d-8505d8cc4b61}, !- Handle + Zone Outpatient Office B end_b - Story ground Air Terminal Inlet Air Node, !- Name + {a6887a90-677f-4b41-85bf-5a9a3443daa6}, !- Inlet Port + {bdf4ae34-1139-4972-8a56-c807ffeb0909}; !- Outlet Port + +OS:Connection, + {a6887a90-677f-4b41-85bf-5a9a3443daa6}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 54, !- Outlet Port + {c941809a-ec8b-4bac-920d-8505d8cc4b61}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bdf4ae34-1139-4972-8a56-c807ffeb0909}, !- Handle + {c941809a-ec8b-4bac-920d-8505d8cc4b61}, !- Source Object + 3, !- Outlet Port + {bfce7d9b-39c4-4cb0-ad18-c757493bf456}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {5943214b-b032-4f13-ab10-a92bc7bbf27d}, !- Handle + {bfce7d9b-39c4-4cb0-ad18-c757493bf456}, !- Source Object + 4, !- Outlet Port + {c10f151a-5290-4a6a-a436-12a2d8e97810}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {06e05dae-df41-4217-bde0-d21082ace214}, !- Handle + Schedule Constant 103, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {7e10cb62-384f-44d8-a8d0-04793c187845}, !- Handle + Schedule Constant 104, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {7f402a58-8478-4cb0-9591-0dc322db9706}, !- Handle + Zone Outpatient Office C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {bf28ae76-07df-46eb-b0c4-26708727c669}, !- Air Inlet Node Name + {8e842597-fe0c-43bd-9154-b48b870d5479}, !- Air Outlet Node Name + 0.0542424793580319; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {864c72bb-2144-47c7-820e-d86b4b644191}, !- Handle + Zone Outpatient Office C - Story ground Air Terminal Outlet Air Node, !- Name + {8e842597-fe0c-43bd-9154-b48b870d5479}, !- Inlet Port + {f1804dad-4757-4307-af31-5c027ad3ffba}; !- Outlet Port + +OS:Node, + {9d0d3c27-83b1-435b-b13f-069b6d96bfcf}, !- Handle + Zone Outpatient Office C - Story ground Return Air Node, !- Name + {e51800c4-a358-47ab-84fa-e5a6f30e4a4e}, !- Inlet Port + {73a4914a-84df-433a-8dc7-d5a484c4c70d}; !- Outlet Port + +OS:Connection, + {f1804dad-4757-4307-af31-5c027ad3ffba}, !- Handle + {864c72bb-2144-47c7-820e-d86b4b644191}, !- Source Object + 3, !- Outlet Port + {a7d906cb-af3a-46b7-8747-2b5a94f9749d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e51800c4-a358-47ab-84fa-e5a6f30e4a4e}, !- Handle + {aec48e9b-d086-46c6-b4eb-8232cb61cf40}, !- Source Object + 2, !- Outlet Port + {9d0d3c27-83b1-435b-b13f-069b6d96bfcf}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {73a4914a-84df-433a-8dc7-d5a484c4c70d}, !- Handle + {9d0d3c27-83b1-435b-b13f-069b6d96bfcf}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 55; !- Inlet Port + +OS:Node, + {f8c21a21-8c18-4bdf-ba06-e19ce26d829e}, !- Handle + Zone Outpatient Office C - Story ground Air Terminal Inlet Air Node, !- Name + {a1a236ee-868c-482f-9ee1-1e4cf62ea1a9}, !- Inlet Port + {bf28ae76-07df-46eb-b0c4-26708727c669}; !- Outlet Port + +OS:Connection, + {a1a236ee-868c-482f-9ee1-1e4cf62ea1a9}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 55, !- Outlet Port + {f8c21a21-8c18-4bdf-ba06-e19ce26d829e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bf28ae76-07df-46eb-b0c4-26708727c669}, !- Handle + {f8c21a21-8c18-4bdf-ba06-e19ce26d829e}, !- Source Object + 3, !- Outlet Port + {7f402a58-8478-4cb0-9591-0dc322db9706}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {8e842597-fe0c-43bd-9154-b48b870d5479}, !- Handle + {7f402a58-8478-4cb0-9591-0dc322db9706}, !- Source Object + 4, !- Outlet Port + {864c72bb-2144-47c7-820e-d86b4b644191}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {a8b99cf4-565f-4bd2-90eb-017bae67a0d8}, !- Handle + Schedule Constant 105, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {fc421e31-f2ac-4a51-88c2-28338fb221d9}, !- Handle + Schedule Constant 106, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {ddb21165-0ea8-477d-bbc1-93077bf17f4d}, !- Handle + Zone Outpatient Office C end_b - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {edbea5f7-d0b9-4a56-a4a9-afc4db703bce}, !- Air Inlet Node Name + {6a0890cf-e50e-43fb-bd96-26d1aede0d22}, !- Air Outlet Node Name + 0.00987550024896001; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {3e0d4e6d-64a6-4edc-afb3-c4c41c90fb2c}, !- Handle + Zone Outpatient Office C end_b - Story ground Air Terminal Outlet Air Node, !- Name + {6a0890cf-e50e-43fb-bd96-26d1aede0d22}, !- Inlet Port + {3a3876d0-4088-4f43-8bbc-471d2a11dd6f}; !- Outlet Port + +OS:Node, + {73d39e1e-6098-457e-8fb1-375bb57ca711}, !- Handle + Zone Outpatient Office C end_b - Story ground Return Air Node, !- Name + {d1f1c582-018a-46fb-86eb-86a92c085640}, !- Inlet Port + {8452622d-4a26-4e28-84e7-9675f3eef56d}; !- Outlet Port + +OS:Connection, + {3a3876d0-4088-4f43-8bbc-471d2a11dd6f}, !- Handle + {3e0d4e6d-64a6-4edc-afb3-c4c41c90fb2c}, !- Source Object + 3, !- Outlet Port + {4425461f-dffd-4cc3-9c17-64d4916d0878}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d1f1c582-018a-46fb-86eb-86a92c085640}, !- Handle + {503330b5-799e-4e18-aa24-5166a8d3c156}, !- Source Object + 2, !- Outlet Port + {73d39e1e-6098-457e-8fb1-375bb57ca711}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8452622d-4a26-4e28-84e7-9675f3eef56d}, !- Handle + {73d39e1e-6098-457e-8fb1-375bb57ca711}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 56; !- Inlet Port + +OS:Node, + {22134396-c8cc-4655-89d1-9e5069282613}, !- Handle + Zone Outpatient Office C end_b - Story ground Air Terminal Inlet Air Node, !- Name + {25e1c321-c705-4042-8568-71384a92b4e8}, !- Inlet Port + {edbea5f7-d0b9-4a56-a4a9-afc4db703bce}; !- Outlet Port + +OS:Connection, + {25e1c321-c705-4042-8568-71384a92b4e8}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 56, !- Outlet Port + {22134396-c8cc-4655-89d1-9e5069282613}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {edbea5f7-d0b9-4a56-a4a9-afc4db703bce}, !- Handle + {22134396-c8cc-4655-89d1-9e5069282613}, !- Source Object + 3, !- Outlet Port + {ddb21165-0ea8-477d-bbc1-93077bf17f4d}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {6a0890cf-e50e-43fb-bd96-26d1aede0d22}, !- Handle + {ddb21165-0ea8-477d-bbc1-93077bf17f4d}, !- Source Object + 4, !- Outlet Port + {3e0d4e6d-64a6-4edc-afb3-c4c41c90fb2c}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {8144e85a-4df7-4d3f-8976-ae6c1bf31a67}, !- Handle + Schedule Constant 107, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {8e54ed8f-04cf-4110-8e4d-f3a01b77b305}, !- Handle + Schedule Constant 108, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {747bf415-f04b-4fa7-93b3-0df52fd126c3}, !- Handle + Zone Outpatient OR A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {a0fc85e8-af17-422a-83a2-978a30e82c97}, !- Air Inlet Node Name + {db253b32-2ebd-4225-8d5a-0087105c3f0d}, !- Air Outlet Node Name + 0.0057344737251028; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {70abb879-306a-4b6c-9c83-2a2a43029b37}, !- Handle + Zone Outpatient OR A - Story ground Air Terminal Outlet Air Node, !- Name + {db253b32-2ebd-4225-8d5a-0087105c3f0d}, !- Inlet Port + {ca1ee619-d7d8-49a8-b14f-836f05af1265}; !- Outlet Port + +OS:Node, + {3bb32c64-e2ed-4929-97c7-f8ec052c1a3a}, !- Handle + Zone Outpatient OR A - Story ground Return Air Node, !- Name + {9b136746-5edc-4ab5-bc96-dff9cd7a2827}, !- Inlet Port + {e4cb39a3-326d-4823-b5f1-c4e2c64ff124}; !- Outlet Port + +OS:Connection, + {ca1ee619-d7d8-49a8-b14f-836f05af1265}, !- Handle + {70abb879-306a-4b6c-9c83-2a2a43029b37}, !- Source Object + 3, !- Outlet Port + {03a66b75-b371-4846-99bf-362fe2d2c2ec}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9b136746-5edc-4ab5-bc96-dff9cd7a2827}, !- Handle + {f292b89e-1633-4c99-8a1c-4abc9937ec2c}, !- Source Object + 2, !- Outlet Port + {3bb32c64-e2ed-4929-97c7-f8ec052c1a3a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e4cb39a3-326d-4823-b5f1-c4e2c64ff124}, !- Handle + {3bb32c64-e2ed-4929-97c7-f8ec052c1a3a}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 57; !- Inlet Port + +OS:Node, + {3777c18f-0ef5-44bb-8269-2b44a57d2e8c}, !- Handle + Zone Outpatient OR A - Story ground Air Terminal Inlet Air Node, !- Name + {88b9eb69-d96e-4f30-97ca-effc1ed6c0e8}, !- Inlet Port + {a0fc85e8-af17-422a-83a2-978a30e82c97}; !- Outlet Port + +OS:Connection, + {88b9eb69-d96e-4f30-97ca-effc1ed6c0e8}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 57, !- Outlet Port + {3777c18f-0ef5-44bb-8269-2b44a57d2e8c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a0fc85e8-af17-422a-83a2-978a30e82c97}, !- Handle + {3777c18f-0ef5-44bb-8269-2b44a57d2e8c}, !- Source Object + 3, !- Outlet Port + {747bf415-f04b-4fa7-93b3-0df52fd126c3}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {db253b32-2ebd-4225-8d5a-0087105c3f0d}, !- Handle + {747bf415-f04b-4fa7-93b3-0df52fd126c3}, !- Source Object + 4, !- Outlet Port + {70abb879-306a-4b6c-9c83-2a2a43029b37}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {b0081e23-9f7f-4aee-ad6b-8b9ed2373d68}, !- Handle + Schedule Constant 109, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {87190172-a66d-4489-9806-f265c5d0738d}, !- Handle + Schedule Constant 110, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {142c915f-17b4-4d5f-8b91-05e9256c44ac}, !- Handle + Zone Outpatient OR A - Story ground 1 Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {2473523a-34d6-4e75-8f94-35cdb13f7115}, !- Air Inlet Node Name + {696beaa5-069b-4615-a5f2-1db8526e426c}, !- Air Outlet Node Name + 0.0674300895851782; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {dccc7afc-136c-4a0b-906f-14543eb6abf6}, !- Handle + Zone Outpatient OR A - Story ground 1 Air Terminal Outlet Air Node, !- Name + {696beaa5-069b-4615-a5f2-1db8526e426c}, !- Inlet Port + {43c5221a-9196-4845-a4b5-28cee495b8dd}; !- Outlet Port + +OS:Node, + {2d13b8c8-3ef6-4bcd-a9d3-7023214cf06c}, !- Handle + Zone Outpatient OR A - Story ground 1 Return Air Node, !- Name + {48dd3e20-9697-4ff9-8e48-ace4e9e6ba00}, !- Inlet Port + {4736b832-1cd0-456c-9df7-b3795715ed6e}; !- Outlet Port + +OS:Connection, + {43c5221a-9196-4845-a4b5-28cee495b8dd}, !- Handle + {dccc7afc-136c-4a0b-906f-14543eb6abf6}, !- Source Object + 3, !- Outlet Port + {8c6fd4a7-00ea-4db7-b537-887a86b7823e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {48dd3e20-9697-4ff9-8e48-ace4e9e6ba00}, !- Handle + {ba083559-0877-4fc0-8882-6285bce38802}, !- Source Object + 2, !- Outlet Port + {2d13b8c8-3ef6-4bcd-a9d3-7023214cf06c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4736b832-1cd0-456c-9df7-b3795715ed6e}, !- Handle + {2d13b8c8-3ef6-4bcd-a9d3-7023214cf06c}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 58; !- Inlet Port + +OS:Node, + {0df5dffa-d605-4558-88a9-7c3a2af1ed40}, !- Handle + Zone Outpatient OR A - Story ground 1 Air Terminal Inlet Air Node, !- Name + {a181c0c5-62d2-45c0-96b8-03f2f7228a78}, !- Inlet Port + {2473523a-34d6-4e75-8f94-35cdb13f7115}; !- Outlet Port + +OS:Connection, + {a181c0c5-62d2-45c0-96b8-03f2f7228a78}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 58, !- Outlet Port + {0df5dffa-d605-4558-88a9-7c3a2af1ed40}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2473523a-34d6-4e75-8f94-35cdb13f7115}, !- Handle + {0df5dffa-d605-4558-88a9-7c3a2af1ed40}, !- Source Object + 3, !- Outlet Port + {142c915f-17b4-4d5f-8b91-05e9256c44ac}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {696beaa5-069b-4615-a5f2-1db8526e426c}, !- Handle + {142c915f-17b4-4d5f-8b91-05e9256c44ac}, !- Source Object + 4, !- Outlet Port + {dccc7afc-136c-4a0b-906f-14543eb6abf6}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {05fde661-109d-43f5-9d39-8b994172b517}, !- Handle + Schedule Constant 111, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {7c399f8e-61b5-486f-b570-5a804ab99bdf}, !- Handle + Schedule Constant 112, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {39dc80e0-dcdf-4109-8860-2dacafb0582a}, !- Handle + Zone Outpatient OR B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {8acaa0a2-391b-4afa-b82d-e792f5278759}, !- Air Inlet Node Name + {c9641e09-67fe-47fe-ac45-4ad74d847642}, !- Air Outlet Node Name + 0.05899655546454; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {cd107f0a-327d-4a42-9674-f4c14fc7e7d7}, !- Handle + Zone Outpatient OR B - Story ground Air Terminal Outlet Air Node, !- Name + {c9641e09-67fe-47fe-ac45-4ad74d847642}, !- Inlet Port + {2fc1c206-b74d-4b32-be6c-0b3d900c1da8}; !- Outlet Port + +OS:Node, + {7bad3f26-ea42-481e-8288-0f1e95507707}, !- Handle + Zone Outpatient OR B - Story ground Return Air Node, !- Name + {a8b687ed-63cf-448b-a8f4-b6904efcae01}, !- Inlet Port + {5206be6a-b40a-4b23-830d-7ee70bbe1473}; !- Outlet Port + +OS:Connection, + {2fc1c206-b74d-4b32-be6c-0b3d900c1da8}, !- Handle + {cd107f0a-327d-4a42-9674-f4c14fc7e7d7}, !- Source Object + 3, !- Outlet Port + {30a4f823-d912-466e-9c7d-72ccdb9015e1}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a8b687ed-63cf-448b-a8f4-b6904efcae01}, !- Handle + {c23be688-bcb2-4f2e-bdbe-017b6d58e41b}, !- Source Object + 2, !- Outlet Port + {7bad3f26-ea42-481e-8288-0f1e95507707}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {5206be6a-b40a-4b23-830d-7ee70bbe1473}, !- Handle + {7bad3f26-ea42-481e-8288-0f1e95507707}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 59; !- Inlet Port + +OS:Node, + {e6ccf2aa-4a4f-4e23-93b6-633bbbfeabe3}, !- Handle + Zone Outpatient OR B - Story ground Air Terminal Inlet Air Node, !- Name + {cbd754f5-9f3a-4ae1-bbb0-84c337a0243b}, !- Inlet Port + {8acaa0a2-391b-4afa-b82d-e792f5278759}; !- Outlet Port + +OS:Connection, + {cbd754f5-9f3a-4ae1-bbb0-84c337a0243b}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 59, !- Outlet Port + {e6ccf2aa-4a4f-4e23-93b6-633bbbfeabe3}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8acaa0a2-391b-4afa-b82d-e792f5278759}, !- Handle + {e6ccf2aa-4a4f-4e23-93b6-633bbbfeabe3}, !- Source Object + 3, !- Outlet Port + {39dc80e0-dcdf-4109-8860-2dacafb0582a}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {c9641e09-67fe-47fe-ac45-4ad74d847642}, !- Handle + {39dc80e0-dcdf-4109-8860-2dacafb0582a}, !- Source Object + 4, !- Outlet Port + {cd107f0a-327d-4a42-9674-f4c14fc7e7d7}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {83b13555-3c10-42e1-bde1-aa8e8ce53cb8}, !- Handle + Schedule Constant 113, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {907b7a61-8449-455e-86b4-bb9e8591e51f}, !- Handle + Schedule Constant 114, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {73c3c2d9-34b0-4d83-91a3-f2619c3fe93c}, !- Handle + Zone Outpatient OR B - Story ground 1 Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {a07f8548-3fe7-471a-9616-40b6232a1709}, !- Air Inlet Node Name + {7e44fd59-f0f4-4ce4-9229-8a87c75e84fa}, !- Air Outlet Node Name + 0.548338081055819; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {38729e13-0ef9-40bc-a782-1ec6efc41de3}, !- Handle + Zone Outpatient OR B - Story ground 1 Air Terminal Outlet Air Node, !- Name + {7e44fd59-f0f4-4ce4-9229-8a87c75e84fa}, !- Inlet Port + {58e371b5-9a92-403d-8f89-a241cd0be941}; !- Outlet Port + +OS:Node, + {cea3ba69-363f-4226-89f9-5ea31bfa6ff1}, !- Handle + Zone Outpatient OR B - Story ground 1 Return Air Node, !- Name + {76f7e8c3-7005-46a3-ac67-3b388a1822d8}, !- Inlet Port + {ebbb6b37-e113-4009-aeb3-c24968895750}; !- Outlet Port + +OS:Connection, + {58e371b5-9a92-403d-8f89-a241cd0be941}, !- Handle + {38729e13-0ef9-40bc-a782-1ec6efc41de3}, !- Source Object + 3, !- Outlet Port + {f95071d7-05cf-4f22-bc3e-81351f5709fd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {76f7e8c3-7005-46a3-ac67-3b388a1822d8}, !- Handle + {8507a95a-e81c-42bd-b731-a7e0d90cc6d2}, !- Source Object + 2, !- Outlet Port + {cea3ba69-363f-4226-89f9-5ea31bfa6ff1}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ebbb6b37-e113-4009-aeb3-c24968895750}, !- Handle + {cea3ba69-363f-4226-89f9-5ea31bfa6ff1}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 60; !- Inlet Port + +OS:Node, + {3571e39e-3128-4f62-965e-3a4ac11c5906}, !- Handle + Zone Outpatient OR B - Story ground 1 Air Terminal Inlet Air Node, !- Name + {cc566df9-3b00-427d-bf47-68989dd003fe}, !- Inlet Port + {a07f8548-3fe7-471a-9616-40b6232a1709}; !- Outlet Port + +OS:Connection, + {cc566df9-3b00-427d-bf47-68989dd003fe}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 60, !- Outlet Port + {3571e39e-3128-4f62-965e-3a4ac11c5906}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a07f8548-3fe7-471a-9616-40b6232a1709}, !- Handle + {3571e39e-3128-4f62-965e-3a4ac11c5906}, !- Source Object + 3, !- Outlet Port + {73c3c2d9-34b0-4d83-91a3-f2619c3fe93c}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {7e44fd59-f0f4-4ce4-9229-8a87c75e84fa}, !- Handle + {73c3c2d9-34b0-4d83-91a3-f2619c3fe93c}, !- Source Object + 4, !- Outlet Port + {38729e13-0ef9-40bc-a782-1ec6efc41de3}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {b24d9749-eac4-423d-8458-5bc67c40aeb1}, !- Handle + Schedule Constant 115, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {4b4a199c-2e40-4653-a5a8-2b846d825cd2}, !- Handle + Schedule Constant 116, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {e1c92e20-51e1-4638-86aa-45973f68707b}, !- Handle + Zone Outpatient OR C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {25885696-9190-4174-9fbd-51eb2075237f}, !- Air Inlet Node Name + {b139b8b7-c9eb-4b12-be83-b4d3251d56fa}, !- Air Outlet Node Name + 0.00573447372510281; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {b1a82bdf-295f-4409-8840-b4f9e9c0d24d}, !- Handle + Zone Outpatient OR C - Story ground Air Terminal Outlet Air Node, !- Name + {b139b8b7-c9eb-4b12-be83-b4d3251d56fa}, !- Inlet Port + {1cb065e8-8982-47ce-9ac1-aac1c3e1f727}; !- Outlet Port + +OS:Node, + {01386530-cacf-451d-b139-ffeae3b54078}, !- Handle + Zone Outpatient OR C - Story ground Return Air Node, !- Name + {9753c060-5fb3-415e-8384-aa771f233cb1}, !- Inlet Port + {39613633-0a51-4789-bf2e-6b24fad36130}; !- Outlet Port + +OS:Connection, + {1cb065e8-8982-47ce-9ac1-aac1c3e1f727}, !- Handle + {b1a82bdf-295f-4409-8840-b4f9e9c0d24d}, !- Source Object + 3, !- Outlet Port + {418a614e-4d68-4e72-8c71-1b6c534b9a09}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9753c060-5fb3-415e-8384-aa771f233cb1}, !- Handle + {97196e63-d60f-455f-b9be-68a6e52ec018}, !- Source Object + 2, !- Outlet Port + {01386530-cacf-451d-b139-ffeae3b54078}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {39613633-0a51-4789-bf2e-6b24fad36130}, !- Handle + {01386530-cacf-451d-b139-ffeae3b54078}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 61; !- Inlet Port + +OS:Node, + {a23a78e3-e1ff-4757-abbe-88d7a3a9169e}, !- Handle + Zone Outpatient OR C - Story ground Air Terminal Inlet Air Node, !- Name + {eccdb700-da1b-42ac-8d80-2b0682d7b6bb}, !- Inlet Port + {25885696-9190-4174-9fbd-51eb2075237f}; !- Outlet Port + +OS:Connection, + {eccdb700-da1b-42ac-8d80-2b0682d7b6bb}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 61, !- Outlet Port + {a23a78e3-e1ff-4757-abbe-88d7a3a9169e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {25885696-9190-4174-9fbd-51eb2075237f}, !- Handle + {a23a78e3-e1ff-4757-abbe-88d7a3a9169e}, !- Source Object + 3, !- Outlet Port + {e1c92e20-51e1-4638-86aa-45973f68707b}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {b139b8b7-c9eb-4b12-be83-b4d3251d56fa}, !- Handle + {e1c92e20-51e1-4638-86aa-45973f68707b}, !- Source Object + 4, !- Outlet Port + {b1a82bdf-295f-4409-8840-b4f9e9c0d24d}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {82dd19c1-2b77-4d9b-9e0f-d0b71891c817}, !- Handle + Schedule Constant 117, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {4b641141-e358-4a13-a5a0-bac3aa0082de}, !- Handle + Schedule Constant 118, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {96a3203f-47f1-4f80-a5b7-90660cce5673}, !- Handle + Zone Outpatient OR C - Story ground 1 Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {f8b853c8-2e87-4e18-97a2-6a4c8cfcc9ea}, !- Air Inlet Node Name + {f5e63936-0e12-43a6-b41d-6df4cb6a8b76}, !- Air Outlet Node Name + 0.0674300895851784; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {16e9527e-aded-4c17-8a49-b36eaae0f484}, !- Handle + Zone Outpatient OR C - Story ground 1 Air Terminal Outlet Air Node, !- Name + {f5e63936-0e12-43a6-b41d-6df4cb6a8b76}, !- Inlet Port + {3cab66dc-1630-4a5d-a6f2-40188834bc08}; !- Outlet Port + +OS:Node, + {f29e2743-1c3d-4c36-af6f-cd28449c8d44}, !- Handle + Zone Outpatient OR C - Story ground 1 Return Air Node, !- Name + {f53dc9db-9f46-452c-a974-b12ab86cdfa2}, !- Inlet Port + {fa6df9eb-81a1-498c-956b-90a925e0f614}; !- Outlet Port + +OS:Connection, + {3cab66dc-1630-4a5d-a6f2-40188834bc08}, !- Handle + {16e9527e-aded-4c17-8a49-b36eaae0f484}, !- Source Object + 3, !- Outlet Port + {5fa30f46-41ec-4886-87bc-8c22a731dd00}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f53dc9db-9f46-452c-a974-b12ab86cdfa2}, !- Handle + {af7f3ef0-4efc-40fe-8920-e83f50f30f05}, !- Source Object + 2, !- Outlet Port + {f29e2743-1c3d-4c36-af6f-cd28449c8d44}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fa6df9eb-81a1-498c-956b-90a925e0f614}, !- Handle + {f29e2743-1c3d-4c36-af6f-cd28449c8d44}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 62; !- Inlet Port + +OS:Node, + {dc57aac6-6eaf-4d79-a93e-8972c7ba2b52}, !- Handle + Zone Outpatient OR C - Story ground 1 Air Terminal Inlet Air Node, !- Name + {7d413604-f03f-49c8-b5de-859ad67cd3e7}, !- Inlet Port + {f8b853c8-2e87-4e18-97a2-6a4c8cfcc9ea}; !- Outlet Port + +OS:Connection, + {7d413604-f03f-49c8-b5de-859ad67cd3e7}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 62, !- Outlet Port + {dc57aac6-6eaf-4d79-a93e-8972c7ba2b52}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f8b853c8-2e87-4e18-97a2-6a4c8cfcc9ea}, !- Handle + {dc57aac6-6eaf-4d79-a93e-8972c7ba2b52}, !- Source Object + 3, !- Outlet Port + {96a3203f-47f1-4f80-a5b7-90660cce5673}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {f5e63936-0e12-43a6-b41d-6df4cb6a8b76}, !- Handle + {96a3203f-47f1-4f80-a5b7-90660cce5673}, !- Source Object + 4, !- Outlet Port + {16e9527e-aded-4c17-8a49-b36eaae0f484}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {c7bbf987-6252-47ca-8897-27af7827bf85}, !- Handle + Schedule Constant 119, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {d0be177a-35b7-49c4-93bd-60cd27b12d91}, !- Handle + Schedule Constant 120, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {9d9984f1-fdb1-4d8f-991a-9bcff9a5fb41}, !- Handle + Zone Outpatient PACU A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {b5d2e711-efcb-44cd-b8e2-c00b26778b81}, !- Air Inlet Node Name + {7a8524e0-f04e-4722-bae4-dfc52aa0ae67}, !- Air Outlet Node Name + 0.0353380744256959; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {84485def-ae80-47fb-b96d-23e7bb79bf83}, !- Handle + Zone Outpatient PACU A - Story ground Air Terminal Outlet Air Node, !- Name + {7a8524e0-f04e-4722-bae4-dfc52aa0ae67}, !- Inlet Port + {d8d06540-be68-4aab-8161-f92affa4fb69}; !- Outlet Port + +OS:Node, + {9a3359d7-a276-457b-bbdd-acb33c9eb728}, !- Handle + Zone Outpatient PACU A - Story ground Return Air Node, !- Name + {98bbf961-9012-4426-8454-1084fc624419}, !- Inlet Port + {c057bbb3-eb15-4cb7-85e7-662e05ee0601}; !- Outlet Port + +OS:Connection, + {d8d06540-be68-4aab-8161-f92affa4fb69}, !- Handle + {84485def-ae80-47fb-b96d-23e7bb79bf83}, !- Source Object + 3, !- Outlet Port + {0d896ef0-9a49-4793-9373-955dd8a83a46}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {98bbf961-9012-4426-8454-1084fc624419}, !- Handle + {a3321745-6994-45dc-8e77-541c1ae04e60}, !- Source Object + 2, !- Outlet Port + {9a3359d7-a276-457b-bbdd-acb33c9eb728}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c057bbb3-eb15-4cb7-85e7-662e05ee0601}, !- Handle + {9a3359d7-a276-457b-bbdd-acb33c9eb728}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 63; !- Inlet Port + +OS:Node, + {1e11d94e-667d-4f64-866a-1a80cc229a3e}, !- Handle + Zone Outpatient PACU A - Story ground Air Terminal Inlet Air Node, !- Name + {7482f2c8-a19a-4ae6-aa07-cce22e9f4a05}, !- Inlet Port + {b5d2e711-efcb-44cd-b8e2-c00b26778b81}; !- Outlet Port + +OS:Connection, + {7482f2c8-a19a-4ae6-aa07-cce22e9f4a05}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 63, !- Outlet Port + {1e11d94e-667d-4f64-866a-1a80cc229a3e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b5d2e711-efcb-44cd-b8e2-c00b26778b81}, !- Handle + {1e11d94e-667d-4f64-866a-1a80cc229a3e}, !- Source Object + 3, !- Outlet Port + {9d9984f1-fdb1-4d8f-991a-9bcff9a5fb41}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {7a8524e0-f04e-4722-bae4-dfc52aa0ae67}, !- Handle + {9d9984f1-fdb1-4d8f-991a-9bcff9a5fb41}, !- Source Object + 4, !- Outlet Port + {84485def-ae80-47fb-b96d-23e7bb79bf83}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {5a7e5da0-a315-4308-84c7-49e59b0bae45}, !- Handle + Schedule Constant 121, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {823c68aa-8514-447b-b0bc-1eec915b4d17}, !- Handle + Schedule Constant 122, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {d68665e7-082d-4941-9018-fc9bb923e926}, !- Handle + Zone Outpatient PACU B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {be5e5641-3a0f-4d1f-b3ac-0c25f44b7d84}, !- Air Inlet Node Name + {a1a4c67c-713c-415a-9117-0ba6500bf207}, !- Air Outlet Node Name + 0.28736743548763; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {4b54b905-ded1-4446-9084-734df69dfae7}, !- Handle + Zone Outpatient PACU B - Story ground Air Terminal Outlet Air Node, !- Name + {a1a4c67c-713c-415a-9117-0ba6500bf207}, !- Inlet Port + {99790d0e-6a87-40c0-bcb9-aac238c556ff}; !- Outlet Port + +OS:Node, + {bd0d96fd-a1b9-4ce9-87cb-0a0ea0ec7a24}, !- Handle + Zone Outpatient PACU B - Story ground Return Air Node, !- Name + {c4efce12-f77b-4b96-8b92-88b42d05eccf}, !- Inlet Port + {65eacf58-b8c9-4245-9a26-3bc53f311fea}; !- Outlet Port + +OS:Connection, + {99790d0e-6a87-40c0-bcb9-aac238c556ff}, !- Handle + {4b54b905-ded1-4446-9084-734df69dfae7}, !- Source Object + 3, !- Outlet Port + {7adce419-80a1-4c73-bf4a-df76b9234a03}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c4efce12-f77b-4b96-8b92-88b42d05eccf}, !- Handle + {2189b3a7-a01a-4e9d-86f2-f62bf94dadc5}, !- Source Object + 2, !- Outlet Port + {bd0d96fd-a1b9-4ce9-87cb-0a0ea0ec7a24}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {65eacf58-b8c9-4245-9a26-3bc53f311fea}, !- Handle + {bd0d96fd-a1b9-4ce9-87cb-0a0ea0ec7a24}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 64; !- Inlet Port + +OS:Node, + {025f2455-16f7-4d07-8df3-53a3d5cb8c55}, !- Handle + Zone Outpatient PACU B - Story ground Air Terminal Inlet Air Node, !- Name + {b2fe772b-0800-410a-9066-531a18cba1fd}, !- Inlet Port + {be5e5641-3a0f-4d1f-b3ac-0c25f44b7d84}; !- Outlet Port + +OS:Connection, + {b2fe772b-0800-410a-9066-531a18cba1fd}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 64, !- Outlet Port + {025f2455-16f7-4d07-8df3-53a3d5cb8c55}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {be5e5641-3a0f-4d1f-b3ac-0c25f44b7d84}, !- Handle + {025f2455-16f7-4d07-8df3-53a3d5cb8c55}, !- Source Object + 3, !- Outlet Port + {d68665e7-082d-4941-9018-fc9bb923e926}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {a1a4c67c-713c-415a-9117-0ba6500bf207}, !- Handle + {d68665e7-082d-4941-9018-fc9bb923e926}, !- Source Object + 4, !- Outlet Port + {4b54b905-ded1-4446-9084-734df69dfae7}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {eaf7cacd-af08-4b8c-bd2d-c65a7f4f714b}, !- Handle + Schedule Constant 123, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {82b735f6-7c08-4943-bc50-b67bb574fe97}, !- Handle + Schedule Constant 124, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {3f1fc3b9-36c8-4b60-a466-3310d58cc97b}, !- Handle + Zone Outpatient PACU C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {e896a4f6-eaf4-4e04-a6f3-3d094bfb8369}, !- Air Inlet Node Name + {146fa8b4-7bd6-45dd-8b38-1210dfb5a125}, !- Air Outlet Node Name + 0.0353380744256959; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {6819b50f-e84d-41c9-80ae-7f259889e144}, !- Handle + Zone Outpatient PACU C - Story ground Air Terminal Outlet Air Node, !- Name + {146fa8b4-7bd6-45dd-8b38-1210dfb5a125}, !- Inlet Port + {0c263043-ea60-4a13-b0af-de0e6905690d}; !- Outlet Port + +OS:Node, + {64948473-ba1d-46c4-afef-db727fc89998}, !- Handle + Zone Outpatient PACU C - Story ground Return Air Node, !- Name + {1fcd76ec-4b8d-491a-8958-0afe9d0a5554}, !- Inlet Port + {d4ff10c8-d2e6-4b64-a883-342bab5597e4}; !- Outlet Port + +OS:Connection, + {0c263043-ea60-4a13-b0af-de0e6905690d}, !- Handle + {6819b50f-e84d-41c9-80ae-7f259889e144}, !- Source Object + 3, !- Outlet Port + {0117bc38-3393-423e-aedd-b224a0495cf6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1fcd76ec-4b8d-491a-8958-0afe9d0a5554}, !- Handle + {d1781b8f-222d-4e0a-9eb9-bc0b9273cc82}, !- Source Object + 2, !- Outlet Port + {64948473-ba1d-46c4-afef-db727fc89998}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d4ff10c8-d2e6-4b64-a883-342bab5597e4}, !- Handle + {64948473-ba1d-46c4-afef-db727fc89998}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 65; !- Inlet Port + +OS:Node, + {4b46c3a2-80d4-4aef-b351-cda304ea3458}, !- Handle + Zone Outpatient PACU C - Story ground Air Terminal Inlet Air Node, !- Name + {ad0b3d69-3ccc-4d49-91aa-885d372b938a}, !- Inlet Port + {e896a4f6-eaf4-4e04-a6f3-3d094bfb8369}; !- Outlet Port + +OS:Connection, + {ad0b3d69-3ccc-4d49-91aa-885d372b938a}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 65, !- Outlet Port + {4b46c3a2-80d4-4aef-b351-cda304ea3458}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e896a4f6-eaf4-4e04-a6f3-3d094bfb8369}, !- Handle + {4b46c3a2-80d4-4aef-b351-cda304ea3458}, !- Source Object + 3, !- Outlet Port + {3f1fc3b9-36c8-4b60-a466-3310d58cc97b}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {146fa8b4-7bd6-45dd-8b38-1210dfb5a125}, !- Handle + {3f1fc3b9-36c8-4b60-a466-3310d58cc97b}, !- Source Object + 4, !- Outlet Port + {6819b50f-e84d-41c9-80ae-7f259889e144}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {1002a7ba-3d48-4fb0-8f22-9b233ff2aecb}, !- Handle + Schedule Constant 125, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {25307552-6154-4b42-8490-0006399feda4}, !- Handle + Schedule Constant 126, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {f4ac3eee-85f1-4ec2-9b14-fef89713fc26}, !- Handle + Zone Outpatient PhysicalTherapy A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {0b911639-d207-4584-ba93-c02ab8bc09d3}, !- Air Inlet Node Name + {e3a98425-8dc0-4c3e-912e-cb759de94191}, !- Air Outlet Node Name + 0.0818955912323368; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {ec76b2b5-b712-46b6-bc2a-b7df884662d5}, !- Handle + Zone Outpatient PhysicalTherapy A - Story ground Air Terminal Outlet Air Node, !- Name + {e3a98425-8dc0-4c3e-912e-cb759de94191}, !- Inlet Port + {1eb6c7e9-7404-493f-82b4-0536201d89df}; !- Outlet Port + +OS:Node, + {cb817a6a-8506-47b9-9d9d-46d1f81c6d19}, !- Handle + Zone Outpatient PhysicalTherapy A - Story ground Return Air Node, !- Name + {ae102f23-17a2-466d-b606-6169d2c684d1}, !- Inlet Port + {8129a51e-6583-4542-aa27-d714edffde55}; !- Outlet Port + +OS:Connection, + {1eb6c7e9-7404-493f-82b4-0536201d89df}, !- Handle + {ec76b2b5-b712-46b6-bc2a-b7df884662d5}, !- Source Object + 3, !- Outlet Port + {b8b67755-6a9e-49b8-ad2c-9839850c5d79}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ae102f23-17a2-466d-b606-6169d2c684d1}, !- Handle + {5c06eca5-d82b-4ba0-be42-48019de7a9ad}, !- Source Object + 2, !- Outlet Port + {cb817a6a-8506-47b9-9d9d-46d1f81c6d19}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8129a51e-6583-4542-aa27-d714edffde55}, !- Handle + {cb817a6a-8506-47b9-9d9d-46d1f81c6d19}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 66; !- Inlet Port + +OS:Node, + {8f1c885b-304b-4829-9b62-60fffe8255ed}, !- Handle + Zone Outpatient PhysicalTherapy A - Story ground Air Terminal Inlet Air Node, !- Name + {7a7dd79d-c08d-49d8-a22a-741eb480befe}, !- Inlet Port + {0b911639-d207-4584-ba93-c02ab8bc09d3}; !- Outlet Port + +OS:Connection, + {7a7dd79d-c08d-49d8-a22a-741eb480befe}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 66, !- Outlet Port + {8f1c885b-304b-4829-9b62-60fffe8255ed}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0b911639-d207-4584-ba93-c02ab8bc09d3}, !- Handle + {8f1c885b-304b-4829-9b62-60fffe8255ed}, !- Source Object + 3, !- Outlet Port + {f4ac3eee-85f1-4ec2-9b14-fef89713fc26}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {e3a98425-8dc0-4c3e-912e-cb759de94191}, !- Handle + {f4ac3eee-85f1-4ec2-9b14-fef89713fc26}, !- Source Object + 4, !- Outlet Port + {ec76b2b5-b712-46b6-bc2a-b7df884662d5}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {95620ec2-0f3e-4da0-85bf-200ed5955b16}, !- Handle + Schedule Constant 127, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {78475e1d-51e2-4287-9814-848ad9fdbc61}, !- Handle + Schedule Constant 128, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {6dee3b0c-dcd2-4b6e-b268-47d04567ef91}, !- Handle + Zone Outpatient PhysicalTherapy B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {b5ce5f41-a34d-4906-a62f-f5dd441e1ad9}, !- Air Inlet Node Name + {8754fd4a-2477-4d17-976c-58f176a72e70}, !- Air Outlet Node Name + 0.842545981035639; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {15ab17bc-a4e0-439f-a375-28cab878b49d}, !- Handle + Zone Outpatient PhysicalTherapy B - Story ground Air Terminal Outlet Air Node, !- Name + {8754fd4a-2477-4d17-976c-58f176a72e70}, !- Inlet Port + {407e08a0-9893-4f49-9424-93435f39478c}; !- Outlet Port + +OS:Node, + {5fb3d505-8eeb-408d-b6a2-1b45d8b289fe}, !- Handle + Zone Outpatient PhysicalTherapy B - Story ground Return Air Node, !- Name + {d35d9e37-8c21-4f02-9644-86e396731f22}, !- Inlet Port + {71059e5e-dae8-40ba-9384-125679e55560}; !- Outlet Port + +OS:Connection, + {407e08a0-9893-4f49-9424-93435f39478c}, !- Handle + {15ab17bc-a4e0-439f-a375-28cab878b49d}, !- Source Object + 3, !- Outlet Port + {c7f2fb80-e957-4cec-b10b-828f736ba0d5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d35d9e37-8c21-4f02-9644-86e396731f22}, !- Handle + {b5f6fc4d-832f-44cd-912f-5f758051738c}, !- Source Object + 2, !- Outlet Port + {5fb3d505-8eeb-408d-b6a2-1b45d8b289fe}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {71059e5e-dae8-40ba-9384-125679e55560}, !- Handle + {5fb3d505-8eeb-408d-b6a2-1b45d8b289fe}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 67; !- Inlet Port + +OS:Node, + {187dc037-b142-44bb-94e5-d1d6a37d7bd0}, !- Handle + Zone Outpatient PhysicalTherapy B - Story ground Air Terminal Inlet Air Node, !- Name + {5c0c7d90-bfa6-4b00-a7c9-b471bd27e608}, !- Inlet Port + {b5ce5f41-a34d-4906-a62f-f5dd441e1ad9}; !- Outlet Port + +OS:Connection, + {5c0c7d90-bfa6-4b00-a7c9-b471bd27e608}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 67, !- Outlet Port + {187dc037-b142-44bb-94e5-d1d6a37d7bd0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b5ce5f41-a34d-4906-a62f-f5dd441e1ad9}, !- Handle + {187dc037-b142-44bb-94e5-d1d6a37d7bd0}, !- Source Object + 3, !- Outlet Port + {6dee3b0c-dcd2-4b6e-b268-47d04567ef91}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {8754fd4a-2477-4d17-976c-58f176a72e70}, !- Handle + {6dee3b0c-dcd2-4b6e-b268-47d04567ef91}, !- Source Object + 4, !- Outlet Port + {15ab17bc-a4e0-439f-a375-28cab878b49d}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {e54d9400-6e23-43f1-a61b-1accb240ca0a}, !- Handle + Schedule Constant 129, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {2e188561-9a87-4ed8-a53b-6114a44cee5b}, !- Handle + Schedule Constant 130, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {70d7d5f7-8bb8-43d9-87c2-9dc42e3a9971}, !- Handle + Zone Outpatient PhysicalTherapy C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {3023bf7d-1f61-4cb2-91dd-d952a67e603d}, !- Air Inlet Node Name + {3e5e0a06-ae32-42d2-9191-7b9d9f620eaf}, !- Air Outlet Node Name + 0.0818955912323369; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {89887fc4-2c15-4589-9d46-d26aeb44bf6f}, !- Handle + Zone Outpatient PhysicalTherapy C - Story ground Air Terminal Outlet Air Node, !- Name + {3e5e0a06-ae32-42d2-9191-7b9d9f620eaf}, !- Inlet Port + {8aa59322-2e0b-49cd-99b9-c5721129f461}; !- Outlet Port + +OS:Node, + {b5afaefe-2dd5-4506-a3e9-c402c45144b3}, !- Handle + Zone Outpatient PhysicalTherapy C - Story ground Return Air Node, !- Name + {579e0ffc-635c-4745-b802-aa0fb330be5f}, !- Inlet Port + {70d0fda0-c5d5-4154-b033-bb28dd59cb57}; !- Outlet Port + +OS:Connection, + {8aa59322-2e0b-49cd-99b9-c5721129f461}, !- Handle + {89887fc4-2c15-4589-9d46-d26aeb44bf6f}, !- Source Object + 3, !- Outlet Port + {a54d3a77-8d6f-496f-9e3a-5c896caf6cfe}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {579e0ffc-635c-4745-b802-aa0fb330be5f}, !- Handle + {616fad65-11bc-4412-aba3-e8e5d072a2bc}, !- Source Object + 2, !- Outlet Port + {b5afaefe-2dd5-4506-a3e9-c402c45144b3}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {70d0fda0-c5d5-4154-b033-bb28dd59cb57}, !- Handle + {b5afaefe-2dd5-4506-a3e9-c402c45144b3}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 68; !- Inlet Port + +OS:Node, + {cf1919c7-fa52-42d0-af99-dec746fabc73}, !- Handle + Zone Outpatient PhysicalTherapy C - Story ground Air Terminal Inlet Air Node, !- Name + {32fca541-38f2-4cf5-8e7c-e4f82dd82353}, !- Inlet Port + {3023bf7d-1f61-4cb2-91dd-d952a67e603d}; !- Outlet Port + +OS:Connection, + {32fca541-38f2-4cf5-8e7c-e4f82dd82353}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 68, !- Outlet Port + {cf1919c7-fa52-42d0-af99-dec746fabc73}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3023bf7d-1f61-4cb2-91dd-d952a67e603d}, !- Handle + {cf1919c7-fa52-42d0-af99-dec746fabc73}, !- Source Object + 3, !- Outlet Port + {70d7d5f7-8bb8-43d9-87c2-9dc42e3a9971}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {3e5e0a06-ae32-42d2-9191-7b9d9f620eaf}, !- Handle + {70d7d5f7-8bb8-43d9-87c2-9dc42e3a9971}, !- Source Object + 4, !- Outlet Port + {89887fc4-2c15-4589-9d46-d26aeb44bf6f}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {b21813e6-6d12-426f-b733-c0e0287814d6}, !- Handle + Schedule Constant 131, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {5c8d90d7-28e8-485f-b4d7-0afda0d60e8c}, !- Handle + Schedule Constant 132, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {1527e6e8-0773-4cc1-8da4-516b6d44c8e9}, !- Handle + Zone Outpatient PreOp A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {d4b91a48-bb24-4ec7-a223-34b78e45f64a}, !- Air Inlet Node Name + {52493128-6fbb-4018-9848-6b2ed3d338fb}, !- Air Outlet Node Name + 0.0196491879349747; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {ded0bb36-c3f6-4a63-beb8-9f0158922217}, !- Handle + Zone Outpatient PreOp A - Story ground Air Terminal Outlet Air Node, !- Name + {52493128-6fbb-4018-9848-6b2ed3d338fb}, !- Inlet Port + {257c2d72-285d-48f1-a290-1fb6728bea1d}; !- Outlet Port + +OS:Node, + {d976bd97-2131-411f-ae94-d5f52af77258}, !- Handle + Zone Outpatient PreOp A - Story ground Return Air Node, !- Name + {65e986f9-619d-4eda-87d2-d5874debc7b8}, !- Inlet Port + {45327b70-45d0-497c-b431-4e2667115cbd}; !- Outlet Port + +OS:Connection, + {257c2d72-285d-48f1-a290-1fb6728bea1d}, !- Handle + {ded0bb36-c3f6-4a63-beb8-9f0158922217}, !- Source Object + 3, !- Outlet Port + {5765d73b-4d6b-4177-abc3-7b0a484257f0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {65e986f9-619d-4eda-87d2-d5874debc7b8}, !- Handle + {b67b23ac-2857-40a9-abb9-e44012fb8c1f}, !- Source Object + 2, !- Outlet Port + {d976bd97-2131-411f-ae94-d5f52af77258}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {45327b70-45d0-497c-b431-4e2667115cbd}, !- Handle + {d976bd97-2131-411f-ae94-d5f52af77258}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 69; !- Inlet Port + +OS:Node, + {d3968a4d-4507-453f-9e18-e918b9bebce5}, !- Handle + Zone Outpatient PreOp A - Story ground Air Terminal Inlet Air Node, !- Name + {0c51a16b-37b8-4d44-8a12-e67775683415}, !- Inlet Port + {d4b91a48-bb24-4ec7-a223-34b78e45f64a}; !- Outlet Port + +OS:Connection, + {0c51a16b-37b8-4d44-8a12-e67775683415}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 69, !- Outlet Port + {d3968a4d-4507-453f-9e18-e918b9bebce5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d4b91a48-bb24-4ec7-a223-34b78e45f64a}, !- Handle + {d3968a4d-4507-453f-9e18-e918b9bebce5}, !- Source Object + 3, !- Outlet Port + {1527e6e8-0773-4cc1-8da4-516b6d44c8e9}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {52493128-6fbb-4018-9848-6b2ed3d338fb}, !- Handle + {1527e6e8-0773-4cc1-8da4-516b6d44c8e9}, !- Source Object + 4, !- Outlet Port + {ded0bb36-c3f6-4a63-beb8-9f0158922217}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {e8fa2e56-9046-4f15-817d-420a588accb3}, !- Handle + Schedule Constant 133, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {09344033-876f-4e13-bd59-d26edf288781}, !- Handle + Schedule Constant 134, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {c2a79728-55a4-4224-aa76-b2d8416153d4}, !- Handle + Zone Outpatient PreOp B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {4347ec26-cbf9-4f91-9980-b3c9fcf8513c}, !- Air Inlet Node Name + {173fc44d-7fab-4303-860d-0e47aec91699}, !- Air Outlet Node Name + 0.159786203353013; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {d5b31a2c-6d94-4efd-8911-cb8c13398ae1}, !- Handle + Zone Outpatient PreOp B - Story ground Air Terminal Outlet Air Node, !- Name + {173fc44d-7fab-4303-860d-0e47aec91699}, !- Inlet Port + {606c2820-a09f-4ea5-a681-0ba89f9c1073}; !- Outlet Port + +OS:Node, + {109c90ab-48e3-42f9-857d-af1982c29422}, !- Handle + Zone Outpatient PreOp B - Story ground Return Air Node, !- Name + {30246f2a-c2df-4833-b0c1-ee77814bfaaf}, !- Inlet Port + {581a585c-679b-4eca-b103-cec361d323d9}; !- Outlet Port + +OS:Connection, + {606c2820-a09f-4ea5-a681-0ba89f9c1073}, !- Handle + {d5b31a2c-6d94-4efd-8911-cb8c13398ae1}, !- Source Object + 3, !- Outlet Port + {d393488a-a56e-4a7a-9f61-1214a5e71e39}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {30246f2a-c2df-4833-b0c1-ee77814bfaaf}, !- Handle + {27e46c98-104a-42ef-bd1c-6793bbe16ae2}, !- Source Object + 2, !- Outlet Port + {109c90ab-48e3-42f9-857d-af1982c29422}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {581a585c-679b-4eca-b103-cec361d323d9}, !- Handle + {109c90ab-48e3-42f9-857d-af1982c29422}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 70; !- Inlet Port + +OS:Node, + {72534789-4dd2-45b3-be5e-7be2c63fb612}, !- Handle + Zone Outpatient PreOp B - Story ground Air Terminal Inlet Air Node, !- Name + {c8e49054-e115-4db4-8e12-58332f95fd24}, !- Inlet Port + {4347ec26-cbf9-4f91-9980-b3c9fcf8513c}; !- Outlet Port + +OS:Connection, + {c8e49054-e115-4db4-8e12-58332f95fd24}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 70, !- Outlet Port + {72534789-4dd2-45b3-be5e-7be2c63fb612}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4347ec26-cbf9-4f91-9980-b3c9fcf8513c}, !- Handle + {72534789-4dd2-45b3-be5e-7be2c63fb612}, !- Source Object + 3, !- Outlet Port + {c2a79728-55a4-4224-aa76-b2d8416153d4}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {173fc44d-7fab-4303-860d-0e47aec91699}, !- Handle + {c2a79728-55a4-4224-aa76-b2d8416153d4}, !- Source Object + 4, !- Outlet Port + {d5b31a2c-6d94-4efd-8911-cb8c13398ae1}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {119f800f-a6e5-46ca-b724-48bbd55d0276}, !- Handle + Schedule Constant 135, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {a174bb2e-5d2a-442f-9400-d3c2bae7e76e}, !- Handle + Schedule Constant 136, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {0fa62896-cbfd-4e44-a8ff-d1009c3a03a7}, !- Handle + Zone Outpatient PreOp C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {3ea86588-9c2c-46d5-bbf8-5b9ac2e70a28}, !- Air Inlet Node Name + {cbefcd0b-82ad-4a6c-8020-1fe241bd2ffe}, !- Air Outlet Node Name + 0.0196491879349748; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {1d9e7b66-adc8-447e-866b-8427fa627e83}, !- Handle + Zone Outpatient PreOp C - Story ground Air Terminal Outlet Air Node, !- Name + {cbefcd0b-82ad-4a6c-8020-1fe241bd2ffe}, !- Inlet Port + {0ae00769-119d-4ab2-8418-cbfda4166c14}; !- Outlet Port + +OS:Node, + {d4ce15d9-cc71-470b-b6e1-112ee53ded53}, !- Handle + Zone Outpatient PreOp C - Story ground Return Air Node, !- Name + {437639c7-9e8b-4d89-bc05-06ccb3dbe5e1}, !- Inlet Port + {ae218968-24d7-4537-9065-1e38d9b3df56}; !- Outlet Port + +OS:Connection, + {0ae00769-119d-4ab2-8418-cbfda4166c14}, !- Handle + {1d9e7b66-adc8-447e-866b-8427fa627e83}, !- Source Object + 3, !- Outlet Port + {f5c3143e-e0ea-42f4-8bb0-dff1a25ff6bf}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {437639c7-9e8b-4d89-bc05-06ccb3dbe5e1}, !- Handle + {6f1035dc-cc22-49d9-967c-ff52742a3aa8}, !- Source Object + 2, !- Outlet Port + {d4ce15d9-cc71-470b-b6e1-112ee53ded53}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ae218968-24d7-4537-9065-1e38d9b3df56}, !- Handle + {d4ce15d9-cc71-470b-b6e1-112ee53ded53}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 71; !- Inlet Port + +OS:Node, + {c1ce3347-c10a-4ab3-b3a6-206f59f8f71d}, !- Handle + Zone Outpatient PreOp C - Story ground Air Terminal Inlet Air Node, !- Name + {28cf6912-ee49-4209-b5f3-babf03112b23}, !- Inlet Port + {3ea86588-9c2c-46d5-bbf8-5b9ac2e70a28}; !- Outlet Port + +OS:Connection, + {28cf6912-ee49-4209-b5f3-babf03112b23}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 71, !- Outlet Port + {c1ce3347-c10a-4ab3-b3a6-206f59f8f71d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3ea86588-9c2c-46d5-bbf8-5b9ac2e70a28}, !- Handle + {c1ce3347-c10a-4ab3-b3a6-206f59f8f71d}, !- Source Object + 3, !- Outlet Port + {0fa62896-cbfd-4e44-a8ff-d1009c3a03a7}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {cbefcd0b-82ad-4a6c-8020-1fe241bd2ffe}, !- Handle + {0fa62896-cbfd-4e44-a8ff-d1009c3a03a7}, !- Source Object + 4, !- Outlet Port + {1d9e7b66-adc8-447e-866b-8427fa627e83}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {56c58c0a-bbf1-4488-98d5-224edde2de42}, !- Handle + Schedule Constant 137, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {35377e2d-f5e4-48a6-83e1-9b600fda2c90}, !- Handle + Schedule Constant 138, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {aa5cfbfd-39b2-446a-842d-3550d30cc2aa}, !- Handle + Zone Outpatient ProcedureRoom A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {9cb69900-0700-4a35-9be5-db161fd147c9}, !- Air Inlet Node Name + {805d3fd2-3307-4a69-aaca-7836be87377f}, !- Air Outlet Node Name + 0.0150489625220752; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {a4084ab2-3ab0-4bdd-b7b4-2555e76aca66}, !- Handle + Zone Outpatient ProcedureRoom A - Story ground Air Terminal Outlet Air Node, !- Name + {805d3fd2-3307-4a69-aaca-7836be87377f}, !- Inlet Port + {43c11be1-bcc4-4c19-b74e-2cadafdf8a3a}; !- Outlet Port + +OS:Node, + {dbe09c5c-539d-4f17-b83e-3276e2a41899}, !- Handle + Zone Outpatient ProcedureRoom A - Story ground Return Air Node, !- Name + {4fe173d6-a707-41eb-b442-f990cd6ee0eb}, !- Inlet Port + {3b61a2ba-3f8b-44fa-9d10-3342fdbe060f}; !- Outlet Port + +OS:Connection, + {43c11be1-bcc4-4c19-b74e-2cadafdf8a3a}, !- Handle + {a4084ab2-3ab0-4bdd-b7b4-2555e76aca66}, !- Source Object + 3, !- Outlet Port + {10a7b841-e562-45d6-816d-423f6187540a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4fe173d6-a707-41eb-b442-f990cd6ee0eb}, !- Handle + {8991a4e2-b300-462a-b508-258baa802d83}, !- Source Object + 2, !- Outlet Port + {dbe09c5c-539d-4f17-b83e-3276e2a41899}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3b61a2ba-3f8b-44fa-9d10-3342fdbe060f}, !- Handle + {dbe09c5c-539d-4f17-b83e-3276e2a41899}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 72; !- Inlet Port + +OS:Node, + {17f70108-fc6c-48fc-8b29-b43ded26def2}, !- Handle + Zone Outpatient ProcedureRoom A - Story ground Air Terminal Inlet Air Node, !- Name + {f0706e5f-e768-4c6d-95b8-48aca7fb09b7}, !- Inlet Port + {9cb69900-0700-4a35-9be5-db161fd147c9}; !- Outlet Port + +OS:Connection, + {f0706e5f-e768-4c6d-95b8-48aca7fb09b7}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 72, !- Outlet Port + {17f70108-fc6c-48fc-8b29-b43ded26def2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9cb69900-0700-4a35-9be5-db161fd147c9}, !- Handle + {17f70108-fc6c-48fc-8b29-b43ded26def2}, !- Source Object + 3, !- Outlet Port + {aa5cfbfd-39b2-446a-842d-3550d30cc2aa}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {805d3fd2-3307-4a69-aaca-7836be87377f}, !- Handle + {aa5cfbfd-39b2-446a-842d-3550d30cc2aa}, !- Source Object + 4, !- Outlet Port + {a4084ab2-3ab0-4bdd-b7b4-2555e76aca66}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {a27092a0-797e-465a-a706-4569083268e0}, !- Handle + Schedule Constant 139, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {96aebdd5-8f2e-467c-9f22-b7606c3b70d0}, !- Handle + Schedule Constant 140, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {ea90854b-2f74-4f62-b0bc-14c89d02d21a}, !- Handle + Zone Outpatient ProcedureRoom B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {2b0aa72b-0f58-4a2b-8d84-5ca45db701b9}, !- Air Inlet Node Name + {62845529-710f-4faa-ba69-100b742beab5}, !- Air Outlet Node Name + 0.122377402758925; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {791bc315-f829-47d4-9a65-70640d919300}, !- Handle + Zone Outpatient ProcedureRoom B - Story ground Air Terminal Outlet Air Node, !- Name + {62845529-710f-4faa-ba69-100b742beab5}, !- Inlet Port + {b87e044b-bf8b-42de-a9f7-50e2d5800dd7}; !- Outlet Port + +OS:Node, + {be390e2f-76ee-4056-b5c0-9b25efe575b1}, !- Handle + Zone Outpatient ProcedureRoom B - Story ground Return Air Node, !- Name + {a1410a8d-9e0e-4cb2-94c9-933b8e95ade1}, !- Inlet Port + {de5b7366-6384-4249-b8af-1de4d788c9cd}; !- Outlet Port + +OS:Connection, + {b87e044b-bf8b-42de-a9f7-50e2d5800dd7}, !- Handle + {791bc315-f829-47d4-9a65-70640d919300}, !- Source Object + 3, !- Outlet Port + {2b162420-27cc-4608-b258-0c98fc7023c6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a1410a8d-9e0e-4cb2-94c9-933b8e95ade1}, !- Handle + {712a4a7e-61a1-4093-a0c2-dca2417db6fe}, !- Source Object + 2, !- Outlet Port + {be390e2f-76ee-4056-b5c0-9b25efe575b1}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {de5b7366-6384-4249-b8af-1de4d788c9cd}, !- Handle + {be390e2f-76ee-4056-b5c0-9b25efe575b1}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 73; !- Inlet Port + +OS:Node, + {fe9fa3fb-9902-4df2-8e4f-f574eb1d949b}, !- Handle + Zone Outpatient ProcedureRoom B - Story ground Air Terminal Inlet Air Node, !- Name + {1ef2abd3-65f4-470b-97e2-25906094ba60}, !- Inlet Port + {2b0aa72b-0f58-4a2b-8d84-5ca45db701b9}; !- Outlet Port + +OS:Connection, + {1ef2abd3-65f4-470b-97e2-25906094ba60}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 73, !- Outlet Port + {fe9fa3fb-9902-4df2-8e4f-f574eb1d949b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2b0aa72b-0f58-4a2b-8d84-5ca45db701b9}, !- Handle + {fe9fa3fb-9902-4df2-8e4f-f574eb1d949b}, !- Source Object + 3, !- Outlet Port + {ea90854b-2f74-4f62-b0bc-14c89d02d21a}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {62845529-710f-4faa-ba69-100b742beab5}, !- Handle + {ea90854b-2f74-4f62-b0bc-14c89d02d21a}, !- Source Object + 4, !- Outlet Port + {791bc315-f829-47d4-9a65-70640d919300}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {ba7df0cc-78c3-4ee4-9e99-baa682cd5b4c}, !- Handle + Schedule Constant 141, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {61f76192-37ca-4608-86b6-7f582474a1a9}, !- Handle + Schedule Constant 142, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {c2437b72-6a21-45cc-9cae-19098a5e3084}, !- Handle + Zone Outpatient ProcedureRoom C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {3af9adc0-aedc-471a-8f87-5bdc1add90e9}, !- Air Inlet Node Name + {e3e86cc2-141a-4734-bf51-1cee9f888b9c}, !- Air Outlet Node Name + 0.0150489625220754; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {16cd12de-f2c5-4109-a897-17c4e6246239}, !- Handle + Zone Outpatient ProcedureRoom C - Story ground Air Terminal Outlet Air Node, !- Name + {e3e86cc2-141a-4734-bf51-1cee9f888b9c}, !- Inlet Port + {ee5058f1-f4a8-4b67-a458-3c8147e90e67}; !- Outlet Port + +OS:Node, + {a277ea3f-6572-4dd0-8ece-872730eecd69}, !- Handle + Zone Outpatient ProcedureRoom C - Story ground Return Air Node, !- Name + {c1b5f26a-dbd6-4465-bff4-25740d65ba58}, !- Inlet Port + {fd2ed887-3561-4762-9cee-951297a56320}; !- Outlet Port + +OS:Connection, + {ee5058f1-f4a8-4b67-a458-3c8147e90e67}, !- Handle + {16cd12de-f2c5-4109-a897-17c4e6246239}, !- Source Object + 3, !- Outlet Port + {b8c6ff64-a402-4049-8f77-5742b630880f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c1b5f26a-dbd6-4465-bff4-25740d65ba58}, !- Handle + {96f8a2f3-6d15-4e86-bfca-fa939a3b7728}, !- Source Object + 2, !- Outlet Port + {a277ea3f-6572-4dd0-8ece-872730eecd69}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fd2ed887-3561-4762-9cee-951297a56320}, !- Handle + {a277ea3f-6572-4dd0-8ece-872730eecd69}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 74; !- Inlet Port + +OS:Node, + {c3b705d8-6feb-43d4-a402-bf65ab7c1bcd}, !- Handle + Zone Outpatient ProcedureRoom C - Story ground Air Terminal Inlet Air Node, !- Name + {402b7f65-4003-44a4-99ec-7edc73ab65b2}, !- Inlet Port + {3af9adc0-aedc-471a-8f87-5bdc1add90e9}; !- Outlet Port + +OS:Connection, + {402b7f65-4003-44a4-99ec-7edc73ab65b2}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 74, !- Outlet Port + {c3b705d8-6feb-43d4-a402-bf65ab7c1bcd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3af9adc0-aedc-471a-8f87-5bdc1add90e9}, !- Handle + {c3b705d8-6feb-43d4-a402-bf65ab7c1bcd}, !- Source Object + 3, !- Outlet Port + {c2437b72-6a21-45cc-9cae-19098a5e3084}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {e3e86cc2-141a-4734-bf51-1cee9f888b9c}, !- Handle + {c2437b72-6a21-45cc-9cae-19098a5e3084}, !- Source Object + 4, !- Outlet Port + {16cd12de-f2c5-4109-a897-17c4e6246239}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {6988f053-8226-40cd-9534-b5bf2a285b9c}, !- Handle + Schedule Constant 143, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {5b7fa331-2929-47bf-b5a7-c2ed44c95114}, !- Handle + Schedule Constant 144, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {3df4aa89-3628-4bca-87f5-6e50d52b0ef9}, !- Handle + Zone Outpatient Reception A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {c5cf3b32-0742-4c63-a414-e8959d7d84c0}, !- Air Inlet Node Name + {93dae7d1-1a08-496b-9fee-ec5c4cbd4975}, !- Air Outlet Node Name + 0.0576114778470917; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {c172d6e4-6eff-4dc8-b324-bcbfbdf54cfe}, !- Handle + Zone Outpatient Reception A - Story ground Air Terminal Outlet Air Node, !- Name + {93dae7d1-1a08-496b-9fee-ec5c4cbd4975}, !- Inlet Port + {1c43319c-f6eb-4642-a757-d0a599bd89dd}; !- Outlet Port + +OS:Node, + {27dddc37-0742-46a8-bf2b-759b55764547}, !- Handle + Zone Outpatient Reception A - Story ground Return Air Node, !- Name + {18b63162-9789-4e94-98e0-d0c5432f4c76}, !- Inlet Port + {eeb69944-9a5f-4012-8dc0-f045c8bb8d6e}; !- Outlet Port + +OS:Connection, + {1c43319c-f6eb-4642-a757-d0a599bd89dd}, !- Handle + {c172d6e4-6eff-4dc8-b324-bcbfbdf54cfe}, !- Source Object + 3, !- Outlet Port + {0ef8831c-cdd7-47e7-9231-e5402d65e1fb}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {18b63162-9789-4e94-98e0-d0c5432f4c76}, !- Handle + {454c2c65-e23a-4f93-a211-008ddf3eb1ca}, !- Source Object + 2, !- Outlet Port + {27dddc37-0742-46a8-bf2b-759b55764547}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {eeb69944-9a5f-4012-8dc0-f045c8bb8d6e}, !- Handle + {27dddc37-0742-46a8-bf2b-759b55764547}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 75; !- Inlet Port + +OS:Node, + {9dd70933-a8a6-4c59-8c4e-8c3b44fe1aac}, !- Handle + Zone Outpatient Reception A - Story ground Air Terminal Inlet Air Node, !- Name + {54e55516-b5e3-40f6-b54e-78bbf15902ec}, !- Inlet Port + {c5cf3b32-0742-4c63-a414-e8959d7d84c0}; !- Outlet Port + +OS:Connection, + {54e55516-b5e3-40f6-b54e-78bbf15902ec}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 75, !- Outlet Port + {9dd70933-a8a6-4c59-8c4e-8c3b44fe1aac}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c5cf3b32-0742-4c63-a414-e8959d7d84c0}, !- Handle + {9dd70933-a8a6-4c59-8c4e-8c3b44fe1aac}, !- Source Object + 3, !- Outlet Port + {3df4aa89-3628-4bca-87f5-6e50d52b0ef9}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {93dae7d1-1a08-496b-9fee-ec5c4cbd4975}, !- Handle + {3df4aa89-3628-4bca-87f5-6e50d52b0ef9}, !- Source Object + 4, !- Outlet Port + {c172d6e4-6eff-4dc8-b324-bcbfbdf54cfe}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {218edfb0-3dc7-41b8-935f-0adbaf50b662}, !- Handle + Schedule Constant 145, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {c8ab08cb-469a-4402-beba-7aa81858b4ee}, !- Handle + Schedule Constant 146, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {47f0a52f-6dd0-42bb-a314-cfb5d15cc409}, !- Handle + Zone Outpatient Reception B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {aa4ec74d-c32b-438b-9a9a-b691e3cba85b}, !- Air Inlet Node Name + {f8055dd0-28cb-459c-ab0c-dacd50bc49d8}, !- Air Outlet Node Name + 0.592709795376928; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {d64736bd-66b3-49ba-a678-11ee1f05b5ae}, !- Handle + Zone Outpatient Reception B - Story ground Air Terminal Outlet Air Node, !- Name + {f8055dd0-28cb-459c-ab0c-dacd50bc49d8}, !- Inlet Port + {9dd2fa17-30be-4efa-811c-5fbef3def5cf}; !- Outlet Port + +OS:Node, + {b5140f1f-bcb7-42d2-b0e6-41f76a275861}, !- Handle + Zone Outpatient Reception B - Story ground Return Air Node, !- Name + {a308c0b5-216b-434a-b7fc-634a9c816951}, !- Inlet Port + {ee1c9e75-d611-4d08-8fe9-2eb1d174a99e}; !- Outlet Port + +OS:Connection, + {9dd2fa17-30be-4efa-811c-5fbef3def5cf}, !- Handle + {d64736bd-66b3-49ba-a678-11ee1f05b5ae}, !- Source Object + 3, !- Outlet Port + {f34d022a-5fa3-49db-a0f2-ea1e52c6b28b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a308c0b5-216b-434a-b7fc-634a9c816951}, !- Handle + {dd63aae8-3f7e-47b8-8fa5-01a426b2a062}, !- Source Object + 2, !- Outlet Port + {b5140f1f-bcb7-42d2-b0e6-41f76a275861}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ee1c9e75-d611-4d08-8fe9-2eb1d174a99e}, !- Handle + {b5140f1f-bcb7-42d2-b0e6-41f76a275861}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 76; !- Inlet Port + +OS:Node, + {158f5a39-df57-4380-bf16-418efee8eb5a}, !- Handle + Zone Outpatient Reception B - Story ground Air Terminal Inlet Air Node, !- Name + {28333440-a473-49f9-97d0-ca071209e566}, !- Inlet Port + {aa4ec74d-c32b-438b-9a9a-b691e3cba85b}; !- Outlet Port + +OS:Connection, + {28333440-a473-49f9-97d0-ca071209e566}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 76, !- Outlet Port + {158f5a39-df57-4380-bf16-418efee8eb5a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {aa4ec74d-c32b-438b-9a9a-b691e3cba85b}, !- Handle + {158f5a39-df57-4380-bf16-418efee8eb5a}, !- Source Object + 3, !- Outlet Port + {47f0a52f-6dd0-42bb-a314-cfb5d15cc409}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {f8055dd0-28cb-459c-ab0c-dacd50bc49d8}, !- Handle + {47f0a52f-6dd0-42bb-a314-cfb5d15cc409}, !- Source Object + 4, !- Outlet Port + {d64736bd-66b3-49ba-a678-11ee1f05b5ae}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {74540f9d-fdc9-4e87-99aa-820dac31da8c}, !- Handle + Schedule Constant 147, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {54f30768-4d0d-47ff-8797-fbc317c9d1f9}, !- Handle + Schedule Constant 148, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {597b1b12-bcce-48f1-a360-2aee3edf425a}, !- Handle + Zone Outpatient Reception C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {c993c3e2-ae77-4e5c-941f-70494ad29c9b}, !- Air Inlet Node Name + {4cac0c9a-1cde-4809-b497-540cef8eacc4}, !- Air Outlet Node Name + 0.0576114778470918; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {ac3bdba6-bae6-4ec0-94d0-2e2e429901ed}, !- Handle + Zone Outpatient Reception C - Story ground Air Terminal Outlet Air Node, !- Name + {4cac0c9a-1cde-4809-b497-540cef8eacc4}, !- Inlet Port + {c55f65ed-186e-4e11-b711-20690ee42eac}; !- Outlet Port + +OS:Node, + {80f00ac5-f955-41c4-9e26-7dad8c6bb662}, !- Handle + Zone Outpatient Reception C - Story ground Return Air Node, !- Name + {f4022f01-b404-496b-902e-8f5715527e20}, !- Inlet Port + {2cc9dcd8-a5bf-418c-9885-d5cc305b6305}; !- Outlet Port + +OS:Connection, + {c55f65ed-186e-4e11-b711-20690ee42eac}, !- Handle + {ac3bdba6-bae6-4ec0-94d0-2e2e429901ed}, !- Source Object + 3, !- Outlet Port + {0cccaa20-a420-41cd-b806-5eeb753bf331}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f4022f01-b404-496b-902e-8f5715527e20}, !- Handle + {7e5299ba-b601-4fc0-b754-f4deb1f21476}, !- Source Object + 2, !- Outlet Port + {80f00ac5-f955-41c4-9e26-7dad8c6bb662}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2cc9dcd8-a5bf-418c-9885-d5cc305b6305}, !- Handle + {80f00ac5-f955-41c4-9e26-7dad8c6bb662}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 77; !- Inlet Port + +OS:Node, + {332edff0-d1a1-48c2-b791-b0d945dc00d3}, !- Handle + Zone Outpatient Reception C - Story ground Air Terminal Inlet Air Node, !- Name + {edb2023d-0b5b-44b7-b712-f8f783c3225b}, !- Inlet Port + {c993c3e2-ae77-4e5c-941f-70494ad29c9b}; !- Outlet Port + +OS:Connection, + {edb2023d-0b5b-44b7-b712-f8f783c3225b}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 77, !- Outlet Port + {332edff0-d1a1-48c2-b791-b0d945dc00d3}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c993c3e2-ae77-4e5c-941f-70494ad29c9b}, !- Handle + {332edff0-d1a1-48c2-b791-b0d945dc00d3}, !- Source Object + 3, !- Outlet Port + {597b1b12-bcce-48f1-a360-2aee3edf425a}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {4cac0c9a-1cde-4809-b497-540cef8eacc4}, !- Handle + {597b1b12-bcce-48f1-a360-2aee3edf425a}, !- Source Object + 4, !- Outlet Port + {ac3bdba6-bae6-4ec0-94d0-2e2e429901ed}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {758cde1e-ec55-4727-9a3b-6ce1e55e0c78}, !- Handle + Schedule Constant 149, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {0bc3f539-3760-400e-97f1-8486f9039fec}, !- Handle + Schedule Constant 150, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {f7542972-2d43-4156-a168-9c448fa2c554}, !- Handle + Zone Outpatient Soil Work A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {79a58422-55b3-4346-b331-915db330545e}, !- Air Inlet Node Name + {4b0d302f-9572-49a4-9365-f9738a15ed77}, !- Air Outlet Node Name + 0.0223804145373894; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {837be7f1-e134-4183-9b2b-6b92bf31325c}, !- Handle + Zone Outpatient Soil Work A - Story ground Air Terminal Outlet Air Node, !- Name + {4b0d302f-9572-49a4-9365-f9738a15ed77}, !- Inlet Port + {95b9feb6-bc69-44ab-9d16-a3e65ee29d3b}; !- Outlet Port + +OS:Node, + {dcead7d0-dafa-4790-abe6-900782338afa}, !- Handle + Zone Outpatient Soil Work A - Story ground Return Air Node, !- Name + {eada7f44-0df8-4999-99fc-9ee3985d7687}, !- Inlet Port + {0068e1c7-ca20-4041-b424-42282cddaaa1}; !- Outlet Port + +OS:Connection, + {95b9feb6-bc69-44ab-9d16-a3e65ee29d3b}, !- Handle + {837be7f1-e134-4183-9b2b-6b92bf31325c}, !- Source Object + 3, !- Outlet Port + {9b4871c3-385e-40a5-a88f-5e6b4583e407}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {eada7f44-0df8-4999-99fc-9ee3985d7687}, !- Handle + {13171ee0-8b7f-40f8-b4d1-5f9145963a85}, !- Source Object + 2, !- Outlet Port + {dcead7d0-dafa-4790-abe6-900782338afa}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0068e1c7-ca20-4041-b424-42282cddaaa1}, !- Handle + {dcead7d0-dafa-4790-abe6-900782338afa}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 78; !- Inlet Port + +OS:Node, + {645eb54e-eaee-426c-a3cf-37bf44a6313a}, !- Handle + Zone Outpatient Soil Work A - Story ground Air Terminal Inlet Air Node, !- Name + {6c1fcd7c-88e5-49ac-87ff-41f0de60cc88}, !- Inlet Port + {79a58422-55b3-4346-b331-915db330545e}; !- Outlet Port + +OS:Connection, + {6c1fcd7c-88e5-49ac-87ff-41f0de60cc88}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 78, !- Outlet Port + {645eb54e-eaee-426c-a3cf-37bf44a6313a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {79a58422-55b3-4346-b331-915db330545e}, !- Handle + {645eb54e-eaee-426c-a3cf-37bf44a6313a}, !- Source Object + 3, !- Outlet Port + {f7542972-2d43-4156-a168-9c448fa2c554}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {4b0d302f-9572-49a4-9365-f9738a15ed77}, !- Handle + {f7542972-2d43-4156-a168-9c448fa2c554}, !- Source Object + 4, !- Outlet Port + {837be7f1-e134-4183-9b2b-6b92bf31325c}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {7aad8862-f6cc-410a-bbdc-d4f7674265da}, !- Handle + Schedule Constant 151, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {c66ab473-ac76-47d1-b3e3-35446a86b232}, !- Handle + Schedule Constant 152, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {e3224be8-5ef7-472f-997d-1d909021014e}, !- Handle + Zone Outpatient Soil Work B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {3dc2494c-ca8a-4fdf-8b9b-3097e50f5510}, !- Air Inlet Node Name + {ae13e78a-0bba-4ee3-a672-3b00b91f3b99}, !- Air Outlet Node Name + 0.181996400066525; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {f02c0bd6-1750-43aa-9a63-6be770e3fe31}, !- Handle + Zone Outpatient Soil Work B - Story ground Air Terminal Outlet Air Node, !- Name + {ae13e78a-0bba-4ee3-a672-3b00b91f3b99}, !- Inlet Port + {8245f6dd-d198-429a-9959-28bd9b386241}; !- Outlet Port + +OS:Node, + {b2cfd881-5758-474b-8486-1de6b547ab14}, !- Handle + Zone Outpatient Soil Work B - Story ground Return Air Node, !- Name + {19553510-f8ec-4a73-ac59-941de3232190}, !- Inlet Port + {a45fa7e6-9992-4dc9-88bc-84df38ce8dc0}; !- Outlet Port + +OS:Connection, + {8245f6dd-d198-429a-9959-28bd9b386241}, !- Handle + {f02c0bd6-1750-43aa-9a63-6be770e3fe31}, !- Source Object + 3, !- Outlet Port + {795f8027-57b8-4abe-b36d-bf5a95b479e9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {19553510-f8ec-4a73-ac59-941de3232190}, !- Handle + {45afc834-16cf-4322-aae9-ad8383687c2e}, !- Source Object + 2, !- Outlet Port + {b2cfd881-5758-474b-8486-1de6b547ab14}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a45fa7e6-9992-4dc9-88bc-84df38ce8dc0}, !- Handle + {b2cfd881-5758-474b-8486-1de6b547ab14}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 79; !- Inlet Port + +OS:Node, + {08dc4725-40e4-4f8e-a25f-c93792987b63}, !- Handle + Zone Outpatient Soil Work B - Story ground Air Terminal Inlet Air Node, !- Name + {e9b594d4-4977-4f94-963a-bab45c3e6177}, !- Inlet Port + {3dc2494c-ca8a-4fdf-8b9b-3097e50f5510}; !- Outlet Port + +OS:Connection, + {e9b594d4-4977-4f94-963a-bab45c3e6177}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 79, !- Outlet Port + {08dc4725-40e4-4f8e-a25f-c93792987b63}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3dc2494c-ca8a-4fdf-8b9b-3097e50f5510}, !- Handle + {08dc4725-40e4-4f8e-a25f-c93792987b63}, !- Source Object + 3, !- Outlet Port + {e3224be8-5ef7-472f-997d-1d909021014e}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {ae13e78a-0bba-4ee3-a672-3b00b91f3b99}, !- Handle + {e3224be8-5ef7-472f-997d-1d909021014e}, !- Source Object + 4, !- Outlet Port + {f02c0bd6-1750-43aa-9a63-6be770e3fe31}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {46474b0a-49be-4cf9-8880-95019506dd89}, !- Handle + Schedule Constant 153, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {ba74a39c-42bd-4f5a-aa93-014fcbb0a967}, !- Handle + Schedule Constant 154, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {0eaddf7a-c3f5-4a59-b423-2abc3ffa3987}, !- Handle + Zone Outpatient Soil Work C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {457b393b-d719-4791-8af9-619117359b19}, !- Air Inlet Node Name + {13e23505-3782-4455-9da2-baf084e32e3d}, !- Air Outlet Node Name + 0.0223804145373892; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {79978298-2100-4910-ad54-94efe39225c0}, !- Handle + Zone Outpatient Soil Work C - Story ground Air Terminal Outlet Air Node, !- Name + {13e23505-3782-4455-9da2-baf084e32e3d}, !- Inlet Port + {2fe44748-467e-4ddf-b6c2-6b348e72c8e4}; !- Outlet Port + +OS:Node, + {56f3b985-829b-49f8-b607-45be3187da18}, !- Handle + Zone Outpatient Soil Work C - Story ground Return Air Node, !- Name + {4b5f3f03-9642-4472-81f5-363cefee7edf}, !- Inlet Port + {413feb80-1ab5-4091-b79b-e94aeacd5858}; !- Outlet Port + +OS:Connection, + {2fe44748-467e-4ddf-b6c2-6b348e72c8e4}, !- Handle + {79978298-2100-4910-ad54-94efe39225c0}, !- Source Object + 3, !- Outlet Port + {0f710fea-085e-48ef-816c-284dc0664bcc}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4b5f3f03-9642-4472-81f5-363cefee7edf}, !- Handle + {ac6699d0-2ef7-4391-b486-91f5a48b6abc}, !- Source Object + 2, !- Outlet Port + {56f3b985-829b-49f8-b607-45be3187da18}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {413feb80-1ab5-4091-b79b-e94aeacd5858}, !- Handle + {56f3b985-829b-49f8-b607-45be3187da18}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 80; !- Inlet Port + +OS:Node, + {67ff8771-eb39-4f75-bd31-3867887fb505}, !- Handle + Zone Outpatient Soil Work C - Story ground Air Terminal Inlet Air Node, !- Name + {2ed8b415-ceff-4861-9645-95a4ef594486}, !- Inlet Port + {457b393b-d719-4791-8af9-619117359b19}; !- Outlet Port + +OS:Connection, + {2ed8b415-ceff-4861-9645-95a4ef594486}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 80, !- Outlet Port + {67ff8771-eb39-4f75-bd31-3867887fb505}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {457b393b-d719-4791-8af9-619117359b19}, !- Handle + {67ff8771-eb39-4f75-bd31-3867887fb505}, !- Source Object + 3, !- Outlet Port + {0eaddf7a-c3f5-4a59-b423-2abc3ffa3987}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {13e23505-3782-4455-9da2-baf084e32e3d}, !- Handle + {0eaddf7a-c3f5-4a59-b423-2abc3ffa3987}, !- Source Object + 4, !- Outlet Port + {79978298-2100-4910-ad54-94efe39225c0}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {6e084280-29fd-4a7a-97eb-9783504dfb43}, !- Handle + Schedule Constant 155, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {344fe712-2422-4da9-b200-54281e874644}, !- Handle + Schedule Constant 156, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {e8317f38-8363-49a1-b0f2-6479fab7ec5a}, !- Handle + Zone Outpatient Xray A - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {c436f679-801d-41d1-bc5b-d44a46e41b03}, !- Air Inlet Node Name + {9696216c-fe58-46b2-8b66-0b1268055123}, !- Air Outlet Node Name + 0.0301894080989998; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {1be043e9-a349-4c30-ac68-1b7e251fb191}, !- Handle + Zone Outpatient Xray A - Story ground Air Terminal Outlet Air Node, !- Name + {9696216c-fe58-46b2-8b66-0b1268055123}, !- Inlet Port + {2fe920f8-6543-470e-93ae-c2def355f813}; !- Outlet Port + +OS:Node, + {4744299f-28c8-474a-8fe7-1928940655a0}, !- Handle + Zone Outpatient Xray A - Story ground Return Air Node, !- Name + {f285c306-a19a-41b0-954c-fe02b0211d37}, !- Inlet Port + {62c7779b-e18e-4622-a78e-d501feb682d8}; !- Outlet Port + +OS:Connection, + {2fe920f8-6543-470e-93ae-c2def355f813}, !- Handle + {1be043e9-a349-4c30-ac68-1b7e251fb191}, !- Source Object + 3, !- Outlet Port + {c4d968cf-8147-49ad-adad-62afba2016ea}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f285c306-a19a-41b0-954c-fe02b0211d37}, !- Handle + {d232cbb9-e969-4a9f-88d0-8d987bd5360e}, !- Source Object + 2, !- Outlet Port + {4744299f-28c8-474a-8fe7-1928940655a0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {62c7779b-e18e-4622-a78e-d501feb682d8}, !- Handle + {4744299f-28c8-474a-8fe7-1928940655a0}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 81; !- Inlet Port + +OS:Node, + {2a0af425-84de-45a4-8442-9ed893e108d2}, !- Handle + Zone Outpatient Xray A - Story ground Air Terminal Inlet Air Node, !- Name + {e06c8c18-7274-47cf-abff-4e374dadaf5e}, !- Inlet Port + {c436f679-801d-41d1-bc5b-d44a46e41b03}; !- Outlet Port + +OS:Connection, + {e06c8c18-7274-47cf-abff-4e374dadaf5e}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 81, !- Outlet Port + {2a0af425-84de-45a4-8442-9ed893e108d2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c436f679-801d-41d1-bc5b-d44a46e41b03}, !- Handle + {2a0af425-84de-45a4-8442-9ed893e108d2}, !- Source Object + 3, !- Outlet Port + {e8317f38-8363-49a1-b0f2-6479fab7ec5a}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {9696216c-fe58-46b2-8b66-0b1268055123}, !- Handle + {e8317f38-8363-49a1-b0f2-6479fab7ec5a}, !- Source Object + 4, !- Outlet Port + {1be043e9-a349-4c30-ac68-1b7e251fb191}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {759c6ac9-15b7-4046-98ef-4c2765bcedbf}, !- Handle + Schedule Constant 157, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {435bd13b-c8e7-4eb4-92c8-7adce3f24366}, !- Handle + Schedule Constant 158, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {73211993-2b4d-4a09-843b-0d02a666af22}, !- Handle + Zone Outpatient Xray B - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {14da807b-bd4d-4626-8a30-1f53e169f361}, !- Air Inlet Node Name + {d0d93ef5-f51e-4dcb-bfa0-5d6d8d5d25fd}, !- Air Outlet Node Name + 0.24549874109696; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {964a318e-9d62-403c-9a9d-a8bc94762320}, !- Handle + Zone Outpatient Xray B - Story ground Air Terminal Outlet Air Node, !- Name + {d0d93ef5-f51e-4dcb-bfa0-5d6d8d5d25fd}, !- Inlet Port + {abdb94be-743f-46f4-b097-3b2509d51651}; !- Outlet Port + +OS:Node, + {168aa423-a5a2-4890-a5fe-637182f3f5e7}, !- Handle + Zone Outpatient Xray B - Story ground Return Air Node, !- Name + {e63abddb-29b9-4d2c-946e-8945bb9a2257}, !- Inlet Port + {40936a79-823f-4302-9092-6377a4a1b1b2}; !- Outlet Port + +OS:Connection, + {abdb94be-743f-46f4-b097-3b2509d51651}, !- Handle + {964a318e-9d62-403c-9a9d-a8bc94762320}, !- Source Object + 3, !- Outlet Port + {45a1ccd6-fc52-412a-b79c-67af6c62a56a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e63abddb-29b9-4d2c-946e-8945bb9a2257}, !- Handle + {ebf16a79-11fb-4b3f-bf65-40ba4cc28796}, !- Source Object + 2, !- Outlet Port + {168aa423-a5a2-4890-a5fe-637182f3f5e7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {40936a79-823f-4302-9092-6377a4a1b1b2}, !- Handle + {168aa423-a5a2-4890-a5fe-637182f3f5e7}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 82; !- Inlet Port + +OS:Node, + {68c7bae3-aa8d-4948-b124-030bf2702eab}, !- Handle + Zone Outpatient Xray B - Story ground Air Terminal Inlet Air Node, !- Name + {bd863e45-9b17-4917-8d39-8a604bfa2df1}, !- Inlet Port + {14da807b-bd4d-4626-8a30-1f53e169f361}; !- Outlet Port + +OS:Connection, + {bd863e45-9b17-4917-8d39-8a604bfa2df1}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 82, !- Outlet Port + {68c7bae3-aa8d-4948-b124-030bf2702eab}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {14da807b-bd4d-4626-8a30-1f53e169f361}, !- Handle + {68c7bae3-aa8d-4948-b124-030bf2702eab}, !- Source Object + 3, !- Outlet Port + {73211993-2b4d-4a09-843b-0d02a666af22}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {d0d93ef5-f51e-4dcb-bfa0-5d6d8d5d25fd}, !- Handle + {73211993-2b4d-4a09-843b-0d02a666af22}, !- Source Object + 4, !- Outlet Port + {964a318e-9d62-403c-9a9d-a8bc94762320}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {66252360-0ea3-4aa5-9ea6-ba402f352601}, !- Handle + Schedule Constant 159, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {f02efc45-c58a-4de8-905f-e0ac3ee1397e}, !- Handle + Schedule Constant 160, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {3eb87cf0-9e9f-4acb-8208-d633fba2b54c}, !- Handle + Zone Outpatient Xray C - Story ground Air Terminal, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {67dd63aa-aae3-4aec-be40-1c61a0702378}, !- Air Inlet Node Name + {da6d2e28-6725-4eda-aafb-219b77256ac3}, !- Air Outlet Node Name + 0.0301894080989998; !- Maximum Air Flow Rate {m3/s} + +OS:Node, + {b5fcc56e-f6c7-45f8-98fb-2ce6e1f470eb}, !- Handle + Zone Outpatient Xray C - Story ground Air Terminal Outlet Air Node, !- Name + {da6d2e28-6725-4eda-aafb-219b77256ac3}, !- Inlet Port + {8dcfc637-9adf-4aeb-969d-8109f91c0f94}; !- Outlet Port + +OS:Node, + {eeb9fca9-0483-463e-834c-3cb04294da80}, !- Handle + Zone Outpatient Xray C - Story ground Return Air Node, !- Name + {44cda2ce-2705-4dbe-9d10-78a4602a9158}, !- Inlet Port + {2c074bab-e9bc-4268-99b4-87e7884720e8}; !- Outlet Port + +OS:Connection, + {8dcfc637-9adf-4aeb-969d-8109f91c0f94}, !- Handle + {b5fcc56e-f6c7-45f8-98fb-2ce6e1f470eb}, !- Source Object + 3, !- Outlet Port + {d2f868fb-ea1d-4156-abe0-674af0b04b1c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {44cda2ce-2705-4dbe-9d10-78a4602a9158}, !- Handle + {1b07e3fd-09f6-4fa7-ad23-37ebe04a4d2e}, !- Source Object + 2, !- Outlet Port + {eeb9fca9-0483-463e-834c-3cb04294da80}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2c074bab-e9bc-4268-99b4-87e7884720e8}, !- Handle + {eeb9fca9-0483-463e-834c-3cb04294da80}, !- Source Object + 3, !- Outlet Port + {6fac01d7-765e-408d-86c1-82500c69293a}, !- Target Object + 83; !- Inlet Port + +OS:Node, + {a9604314-536d-4ba5-9e84-6354fc2a15c0}, !- Handle + Zone Outpatient Xray C - Story ground Air Terminal Inlet Air Node, !- Name + {6bf12369-27c7-4578-8b72-5d003bd1e161}, !- Inlet Port + {67dd63aa-aae3-4aec-be40-1c61a0702378}; !- Outlet Port + +OS:Connection, + {6bf12369-27c7-4578-8b72-5d003bd1e161}, !- Handle + {5661f343-1e78-4166-9755-47c718f29ac5}, !- Source Object + 83, !- Outlet Port + {a9604314-536d-4ba5-9e84-6354fc2a15c0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {67dd63aa-aae3-4aec-be40-1c61a0702378}, !- Handle + {a9604314-536d-4ba5-9e84-6354fc2a15c0}, !- Source Object + 3, !- Outlet Port + {3eb87cf0-9e9f-4acb-8208-d633fba2b54c}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {da6d2e28-6725-4eda-aafb-219b77256ac3}, !- Handle + {3eb87cf0-9e9f-4acb-8208-d633fba2b54c}, !- Source Object + 4, !- Outlet Port + {b5fcc56e-f6c7-45f8-98fb-2ce6e1f470eb}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Constant, + {4fe1b232-0e42-4aa3-ad9d-36ff1d6e51fd}, !- Handle + Schedule Constant 161, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:Schedule:Constant, + {b5429267-1121-4f5b-9b38-a6fd53b3a54f}, !- Handle + Schedule Constant 162, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + 0; !- Value + +OS:PlantLoop, + {6d6fdcf0-42af-4c31-b7d0-50530525289f}, !- Handle + Heat Pump Loop, !- Name + Water, !- Fluid Type + 0, !- Glycol Concentration + , !- User Defined Fluid Type + , !- Plant Equipment Operation Heating Load + , !- Plant Equipment Operation Cooling Load + , !- Primary Plant Equipment Operation Scheme + {7c978ea8-a2df-42de-a6b1-9a08606a80cd}, !- Loop Temperature Setpoint Node Name + 35, !- Maximum Loop Temperature {C} + 10, !- Minimum Loop Temperature {C} + 0.027519866392449, !- Maximum Loop Flow Rate {m3/s} + , !- Minimum Loop Flow Rate {m3/s} + 3.30238396709388, !- Plant Loop Volume {m3} + {0807293f-aa9c-4d83-9377-d70a36abd526}, !- Plant Side Inlet Node Name + {12ef182c-be4c-4e6e-b711-c1173fc7f039}, !- Plant Side Outlet Node Name + , !- Plant Side Branch List Name + {06a391dc-12ae-4b94-a457-0149d4c9e3d8}, !- Demand Side Inlet Node Name + {4254da11-9189-489e-90b9-dce6a00c1114}, !- Demand Side Outlet Node Name + , !- Demand Side Branch List Name + , !- Demand Side Connector List Name + SequentialLoad, !- Load Distribution Scheme + {39da7f74-d8bf-4fb1-bbe3-08f7492e542c}, !- Availability Manager List Name + , !- Plant Loop Demand Calculation Scheme + , !- Common Pipe Simulation + , !- Pressure Simulation Type + , !- Plant Equipment Operation Heating Load Schedule + , !- Plant Equipment Operation Cooling Load Schedule + , !- Primary Plant Equipment Operation Scheme Schedule + , !- Component Setpoint Operation Scheme Schedule + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Demand Mixer Name + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Demand Splitter Name + {857687be-8246-45d3-bda8-fb55c2989861}, !- Supply Mixer Name + {f67ce031-5221-4aea-8c0a-d6afd0fa53da}; !- Supply Splitter Name + +OS:Node, + {fcee5714-8a8a-4826-8260-305f1ac0c4f8}, !- Handle + Heat Pump Loop Supply Inlet Node, !- Name + {0807293f-aa9c-4d83-9377-d70a36abd526}, !- Inlet Port + {51b63e59-aa95-49ab-9074-b517c5a1cdb5}; !- Outlet Port + +OS:Node, + {7c978ea8-a2df-42de-a6b1-9a08606a80cd}, !- Handle + Heat Pump Loop Supply Outlet Node, !- Name + {d7c4d7ae-a894-47c9-97d8-ce3475bdafb6}, !- Inlet Port + {12ef182c-be4c-4e6e-b711-c1173fc7f039}; !- Outlet Port + +OS:Node, + {f3b73da4-833b-4a16-b28e-67a2af4dc9c4}, !- Handle + Heat Pump Loop CoolingTowerTwoSpeed Inlet Water Node, !- Name + {ead0af92-ac55-46b6-971a-7fff60709d57}, !- Inlet Port + {bff9df5c-0541-4eba-8708-59f8dcd49a09}; !- Outlet Port + +OS:Connector:Mixer, + {857687be-8246-45d3-bda8-fb55c2989861}, !- Handle + Connector Mixer 9, !- Name + {a662a913-4546-4184-ba5c-a98b4f406a54}, !- Outlet Branch Name + {b3b04d01-2f02-4a1d-8384-112aab3ecf99}, !- Inlet Branch Name 1 + {1fe6c9bf-0d79-4d10-980f-1b3a12229342}, !- Inlet Branch Name 2 + {7e5c3ab1-6789-4c40-8d2d-cf8af7356339}; !- Inlet Branch Name 3 + +OS:Connector:Splitter, + {f67ce031-5221-4aea-8c0a-d6afd0fa53da}, !- Handle + Connector Splitter 9, !- Name + {3a7242ee-6564-4256-8ac0-93770ce91f7b}, !- Inlet Branch Name + {ead0af92-ac55-46b6-971a-7fff60709d57}, !- Outlet Branch Name 1 + {5158db25-4af7-4233-913e-0f987aed99a2}, !- Outlet Branch Name 2 + {841c4719-38fc-44e2-b1a8-103f6c5da10a}; !- Outlet Branch Name 3 + +OS:Connection, + {0807293f-aa9c-4d83-9377-d70a36abd526}, !- Handle + {6d6fdcf0-42af-4c31-b7d0-50530525289f}, !- Source Object + 14, !- Outlet Port + {fcee5714-8a8a-4826-8260-305f1ac0c4f8}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ead0af92-ac55-46b6-971a-7fff60709d57}, !- Handle + {f67ce031-5221-4aea-8c0a-d6afd0fa53da}, !- Source Object + 3, !- Outlet Port + {f3b73da4-833b-4a16-b28e-67a2af4dc9c4}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {12ef182c-be4c-4e6e-b711-c1173fc7f039}, !- Handle + {7c978ea8-a2df-42de-a6b1-9a08606a80cd}, !- Source Object + 3, !- Outlet Port + {6d6fdcf0-42af-4c31-b7d0-50530525289f}, !- Target Object + 15; !- Inlet Port + +OS:Node, + {827a5085-b426-474d-90f1-820f0b7c9f31}, !- Handle + Heat Pump Loop Demand Inlet Node, !- Name + {06a391dc-12ae-4b94-a457-0149d4c9e3d8}, !- Inlet Port + {fe369bb1-09c8-4467-8cfd-8103200f8979}; !- Outlet Port + +OS:Node, + {99851e8a-e77c-4017-b6fc-21224e88125c}, !- Handle + Heat Pump Loop Demand Outlet Node, !- Name + {64b7d516-55a3-4808-b498-684e88effb7e}, !- Inlet Port + {4254da11-9189-489e-90b9-dce6a00c1114}; !- Outlet Port + +OS:Node, + {5cf711d8-9bff-44d4-9ef2-94aa5b7b558e}, !- Handle + Heat Pump Loop Demand Bypass Inlet Water Node, !- Name + {fde61f30-a49d-49a7-a79e-99f684f7c22e}, !- Inlet Port + {87b6ee63-6f20-49f8-9a2a-0c5c02f8388f}; !- Outlet Port + +OS:Connector:Mixer, + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Handle + Connector Mixer 10, !- Name + {f50a0a70-7b21-4e44-b1a5-ac5ea55f7236}, !- Outlet Branch Name + {f3b5ab8a-f62e-4e1f-bc51-d6af723d86b1}, !- Inlet Branch Name 1 + {1775adbd-9aba-45cc-94ea-a1f7e9cb1c84}, !- Inlet Branch Name 2 + {267f13c3-1a47-49b1-9d8c-3e7c4bc79cb7}, !- Inlet Branch Name 3 + {dc3e23b3-84a8-4a61-99f8-1c2f98585d01}, !- Inlet Branch Name 4 + {18786601-bc31-4ccf-b59d-2ed173d71e24}, !- Inlet Branch Name 5 + {e3c756c8-77f7-40d5-bf62-280a7226659e}, !- Inlet Branch Name 6 + {977f6e98-6468-42f1-8fae-178ee30637bc}, !- Inlet Branch Name 7 + {3ca4a7e3-7df4-485e-b2e1-9ffd51c2e83f}, !- Inlet Branch Name 8 + {1a01a42b-351e-4618-838b-9e2a2bbeadce}, !- Inlet Branch Name 9 + {10d56945-2d99-4e5a-8608-08df94744757}, !- Inlet Branch Name 10 + {7d5eeecc-52c3-435c-a3dc-272feb158b07}, !- Inlet Branch Name 11 + {adeb83a0-dbc8-4908-a249-16f8e130527c}, !- Inlet Branch Name 12 + {c9bcdc27-3bc1-46e2-866d-4d9f0c262173}, !- Inlet Branch Name 13 + {e6ed06fa-5692-47d6-b6d9-19b16800ec14}, !- Inlet Branch Name 14 + {e40937df-4f77-45c1-89c1-e53fa1cd4946}, !- Inlet Branch Name 15 + {e5c79728-9e47-4e02-94a2-aeb55b42be3c}, !- Inlet Branch Name 16 + {eb6a4618-a3ca-464e-9933-b444fce0e3a1}, !- Inlet Branch Name 17 + {ab0c5b47-a61a-40ab-a313-d28cc9f43abf}, !- Inlet Branch Name 18 + {46fdb60e-05f8-4a4d-ac17-baf8bbfe86d8}, !- Inlet Branch Name 19 + {9fe73771-f9e6-4135-b9ff-0fbe015ab199}, !- Inlet Branch Name 20 + {f84b7db2-07a8-48c6-bfdd-5f5f6df5d384}, !- Inlet Branch Name 21 + {bf3a4680-aabf-47d7-8de9-7e07e4376939}, !- Inlet Branch Name 22 + {f040d364-6eff-4548-97ad-d7197857261b}, !- Inlet Branch Name 23 + {762d1b25-717b-451a-a1c2-29f850a178e3}, !- Inlet Branch Name 24 + {94031b68-6f91-411f-b8ce-57953386a4d8}, !- Inlet Branch Name 25 + {8bb8691e-76be-4904-b865-51db6edac20b}, !- Inlet Branch Name 26 + {6020f815-a47a-421f-85e4-f6bf45e8a677}, !- Inlet Branch Name 27 + {1d3f45a0-57ab-413d-bc8e-295a83438240}, !- Inlet Branch Name 28 + {1fc5cc4d-395c-487f-b1f1-3012895922ee}, !- Inlet Branch Name 29 + {bc734f2e-303c-4cac-8328-7b8a35d14a02}, !- Inlet Branch Name 30 + {2322ee7c-080c-4e1c-82d1-4c14a5af8840}, !- Inlet Branch Name 31 + {caa9a66f-3770-4835-9021-a40a7c0ea3bf}, !- Inlet Branch Name 32 + {a48da232-0f65-43d2-9d08-6f1e21d9a43b}, !- Inlet Branch Name 33 + {2e516f8c-376f-477e-a1ba-658b3eb47513}, !- Inlet Branch Name 34 + {ebc65f40-2b1c-4790-b954-f769c94e0607}, !- Inlet Branch Name 35 + {a425a7bb-e4b6-499a-8230-a2ddd2c0e5c5}, !- Inlet Branch Name 36 + {c0e2e6bc-314b-4e96-9ccd-e9af17a89745}, !- Inlet Branch Name 37 + {973a2882-cf8e-4e49-98ac-aa728e817e87}, !- Inlet Branch Name 38 + {0821c510-3ae1-4398-802c-bafcd4e50a48}, !- Inlet Branch Name 39 + {b4824245-1e76-4761-a74d-d53fa81aee17}, !- Inlet Branch Name 40 + {ae6ca603-8b11-4284-ba7e-2900127b4d19}, !- Inlet Branch Name 41 + {7774f98e-2e66-4984-abf2-20ab74534cf8}, !- Inlet Branch Name 42 + {23c6a625-ac86-459a-be6c-c288feb6a726}, !- Inlet Branch Name 43 + {98b5a116-cf11-4a84-85cd-bc4f550f4ee7}, !- Inlet Branch Name 44 + {01392355-9c7c-4416-b537-354f18ac32f4}, !- Inlet Branch Name 45 + {e7eeadf9-37a6-400e-bc74-27eff53c6994}, !- Inlet Branch Name 46 + {e7039b8c-3ffb-4d39-894f-bd113194a549}, !- Inlet Branch Name 47 + {cf7bd0e0-0fa5-4e1a-a505-3e14db12c134}, !- Inlet Branch Name 48 + {a6d15b51-89dd-4d7b-a4a3-dd39e1267cf6}, !- Inlet Branch Name 49 + {3b6eb8d6-a76d-4470-b119-fa7c2f16595d}, !- Inlet Branch Name 50 + {6cc690cd-98b9-436d-b4b2-f729037dfa4c}, !- Inlet Branch Name 51 + {bc695c33-54dd-4961-8ccf-de3fa978217d}, !- Inlet Branch Name 52 + {ad8d89e0-5b1c-49be-939f-9dba78ce576d}, !- Inlet Branch Name 53 + {8710cb43-1a4d-4f9a-bd15-9f5921952c59}, !- Inlet Branch Name 54 + {6ba2080d-1702-4a7f-b80c-e8d7ea08e985}, !- Inlet Branch Name 55 + {f1b84b6e-4d04-4c75-a45a-a11bde9e9d77}, !- Inlet Branch Name 56 + {5450a5e2-319f-47f8-8310-2744f3eb2afa}, !- Inlet Branch Name 57 + {61fc8691-54b5-46c2-bd08-29fc10f8034f}, !- Inlet Branch Name 58 + {9e0d998f-5986-4e65-9915-505065afe846}, !- Inlet Branch Name 59 + {8b6f48fc-85f7-41ce-b94b-413dd8d1925f}, !- Inlet Branch Name 60 + {cc3570e7-7168-44f2-aa2f-a6aedef5c6f3}, !- Inlet Branch Name 61 + {1b229aa4-fa15-4c3d-a7af-e71dd38cdd5b}, !- Inlet Branch Name 62 + {ca51803e-147e-4bdf-96d6-ed5d2d9b3e50}, !- Inlet Branch Name 63 + {fee404eb-c7f0-4ab6-bb14-e049e61fb0b4}, !- Inlet Branch Name 64 + {52b9d6cb-ee15-481c-a1e2-7d3c59fa6f23}, !- Inlet Branch Name 65 + {096fc69a-49be-4ce4-8307-81fe123aa797}, !- Inlet Branch Name 66 + {72d455b8-da62-49cf-b59e-08b457ccc43b}, !- Inlet Branch Name 67 + {0d80c68b-91cb-4714-bcb7-846dfd13a71d}, !- Inlet Branch Name 68 + {dd1c8985-af74-4eba-ad53-fe56847846a5}, !- Inlet Branch Name 69 + {65e81982-5de6-4bc8-85b6-2491777c8698}, !- Inlet Branch Name 70 + {c6402fdd-0e25-44f2-a827-48c24a91024f}, !- Inlet Branch Name 71 + {6f33c3ac-7405-4ed6-91aa-b04e2efa4e16}, !- Inlet Branch Name 72 + {1af8323a-5033-441b-8d11-9b1295c07bcf}, !- Inlet Branch Name 73 + {dea9329a-f0ad-4fae-bf1a-989d37fc1043}, !- Inlet Branch Name 74 + {ae4ce054-af64-46fb-bb21-255fb2b9815f}, !- Inlet Branch Name 75 + {9176b1ff-1161-4b49-be19-97beca7a8083}, !- Inlet Branch Name 76 + {43cc17a6-004b-409b-87b1-153b9a7b0b7f}, !- Inlet Branch Name 77 + {f1c6a625-0869-4e79-9c81-e46324dbea5d}, !- Inlet Branch Name 78 + {3406f47f-e63c-48c7-8575-a1d0a679fbeb}, !- Inlet Branch Name 79 + {620fc827-d92f-4c42-a965-daba573f28dc}, !- Inlet Branch Name 80 + {255f2960-5a81-4396-8e8b-11ce64a2e5e4}, !- Inlet Branch Name 81 + {4895357f-8730-4f9a-a83f-dfc68e6e62e4}, !- Inlet Branch Name 82 + {3fb3bdcc-f83e-483f-923c-9542b203d73c}, !- Inlet Branch Name 83 + {0a3289a1-8f0e-4dfe-ad05-025f2b4274b8}, !- Inlet Branch Name 84 + {fd027660-9324-44eb-a252-ca5a3ee6229d}, !- Inlet Branch Name 85 + {c9cdbb95-2cc3-41b2-8efc-22a31a0acc60}, !- Inlet Branch Name 86 + {91de7f6f-e4ac-49db-89e6-27f682b2acda}, !- Inlet Branch Name 87 + {15ddc813-a60d-4296-86db-63fef43e4f35}, !- Inlet Branch Name 88 + {fd9c09e4-7189-4777-9d74-953b05754a42}, !- Inlet Branch Name 89 + {bc298491-fd12-42a6-acc5-a20b64367d06}, !- Inlet Branch Name 90 + {7143df97-5762-4cb8-97e2-beadf39e1446}, !- Inlet Branch Name 91 + {35053131-a4ae-4295-ac6e-11a52e3e8ba1}, !- Inlet Branch Name 92 + {db983727-32c4-4a81-919a-dd6e9b3a3adc}, !- Inlet Branch Name 93 + {40b61a3d-0d26-49fd-b104-c30a2a617291}, !- Inlet Branch Name 94 + {b648836c-7027-4d50-871c-4de6c682e336}, !- Inlet Branch Name 95 + {b800d292-ac59-40dc-9018-956cf31a7108}, !- Inlet Branch Name 96 + {3655b233-3890-477b-b855-76dde0bd6da7}, !- Inlet Branch Name 97 + {b5fdc52c-5000-402c-87d5-897d4b893bad}, !- Inlet Branch Name 98 + {692a4127-a53b-40ce-b12e-b3c54ac13f01}, !- Inlet Branch Name 99 + {1df93e2f-90e1-423b-8630-4344ce42e5d3}, !- Inlet Branch Name 100 + {7c013a05-330b-42bb-abe9-db3f97eca884}, !- Inlet Branch Name 101 + {f7903e2d-f713-4702-b47f-f018993cdb2a}, !- Inlet Branch Name 102 + {2b8d1b08-fbf6-496a-b699-9716fc4ff161}, !- Inlet Branch Name 103 + {42210beb-8397-4b9c-be0f-6562162baba5}, !- Inlet Branch Name 104 + {4e7b6de7-4153-4b1e-accc-3cdf6c9ac749}, !- Inlet Branch Name 105 + {d4919fb5-8b8a-4d4a-80d3-aef95a2547c5}, !- Inlet Branch Name 106 + {c0ad77c6-f51d-4494-aff3-abc20e15c51f}, !- Inlet Branch Name 107 + {878f21eb-284f-47fc-862e-5245a88d8613}, !- Inlet Branch Name 108 + {344a1228-53e5-44a1-be58-d28d7882da0a}, !- Inlet Branch Name 109 + {826b92d7-3ddf-44d3-aa0d-cc9b16e4616b}, !- Inlet Branch Name 110 + {fc0f5970-b937-4551-8ec4-9a453d3027ee}, !- Inlet Branch Name 111 + {483d2402-8a96-47e8-b7a3-2630e25206c5}, !- Inlet Branch Name 112 + {9df6dbc0-9fc8-4ed4-bfe4-ca6ceb466d10}, !- Inlet Branch Name 113 + {f7c93e86-cd61-4060-8798-36a94cad43ef}, !- Inlet Branch Name 114 + {9eed5302-b2a9-4542-822c-94721983a5e8}, !- Inlet Branch Name 115 + {90bfcbe9-839e-4cb7-99e6-eacb7a01c605}, !- Inlet Branch Name 116 + {6a61d6be-a8b8-40d2-91d3-946b7423cbab}, !- Inlet Branch Name 117 + {cc98b6bb-afda-465a-9733-8189612d103d}, !- Inlet Branch Name 118 + {74c865c8-084d-49ab-83ed-f233afce4ffc}, !- Inlet Branch Name 119 + {624a013b-cee2-41dc-bd5c-afbdb0365c2b}, !- Inlet Branch Name 120 + {24a39798-e136-4709-aecc-b62268ad1884}, !- Inlet Branch Name 121 + {e8f71c19-44f6-4103-a37d-c6c44fe9526a}, !- Inlet Branch Name 122 + {b264e404-31ad-46b2-8bd8-02e6d8adc7e8}, !- Inlet Branch Name 123 + {a8b488dd-6141-4b5d-a483-8ed15741eb8b}, !- Inlet Branch Name 124 + {dcb2a61c-c2c8-4dcb-96bf-a1754df6c2f6}, !- Inlet Branch Name 125 + {403bdaa3-a9f9-4a01-8f12-51cb1e77b932}, !- Inlet Branch Name 126 + {f37ce78d-e987-4413-8c5d-8b3d02595db4}, !- Inlet Branch Name 127 + {7e894538-3ca1-4f26-9e4e-35909f21f13d}, !- Inlet Branch Name 128 + {425c60cd-ba60-4095-b181-ff5aa7672cd8}, !- Inlet Branch Name 129 + {b0eb6954-83d2-4b4f-a349-bd56a8476ae8}, !- Inlet Branch Name 130 + {f3feb8d8-c86f-4fe6-a8f8-5e8ea72b867b}, !- Inlet Branch Name 131 + {b37f9b6c-23a0-42ed-9f63-4e02dc6f45a6}, !- Inlet Branch Name 132 + {e1c4e2b9-5b92-4249-b546-9922e4c7202a}, !- Inlet Branch Name 133 + {6b5df472-8a2b-4a65-9406-561a7f8739e7}, !- Inlet Branch Name 134 + {99d69577-7806-4e73-a1a9-81c0b224de5e}, !- Inlet Branch Name 135 + {1a3ef528-f051-42a8-9a2b-1b8eae6b7f13}, !- Inlet Branch Name 136 + {8fd237b0-77cd-4d99-8b14-5ee57346b511}, !- Inlet Branch Name 137 + {4a60629f-1110-4606-8d27-2182e700f47f}, !- Inlet Branch Name 138 + {6a5fc93b-146b-471e-814f-09f656a14eec}, !- Inlet Branch Name 139 + {a56b03c0-e1ae-4c32-a8ee-1a819a8428ed}, !- Inlet Branch Name 140 + {1027bb32-a64d-4385-a414-951d21369c4f}, !- Inlet Branch Name 141 + {0b25ceb1-3142-4b66-99d0-e9177260318a}, !- Inlet Branch Name 142 + {ae00b50a-11e1-464f-93fb-0aa38adebc39}, !- Inlet Branch Name 143 + {7345d30f-ca40-4cff-a20e-f0aa5fbd9791}, !- Inlet Branch Name 144 + {7feec148-1a0f-41d0-9650-8f603a686a34}, !- Inlet Branch Name 145 + {750fcc83-7d80-43ed-aa13-4b1718effbce}, !- Inlet Branch Name 146 + {62b7cc3c-ca82-44c1-96d4-f84e89037e9d}, !- Inlet Branch Name 147 + {0d7cc841-e1d9-48dc-b77c-f66935dce05c}, !- Inlet Branch Name 148 + {d60c3021-0e48-4b5e-a059-9df09338c3e2}, !- Inlet Branch Name 149 + {2a28714b-32b8-4e75-a41c-812d47b80b7f}, !- Inlet Branch Name 150 + {354671d3-8456-4b38-a4e6-ce952948a550}, !- Inlet Branch Name 151 + {00cbe801-7460-44b0-9429-843ffffadc69}, !- Inlet Branch Name 152 + {b4f4cc1f-b935-4a5c-be45-1e9b8ace965a}, !- Inlet Branch Name 153 + {fce4de10-6d77-464e-b690-d2bdb422e45e}, !- Inlet Branch Name 154 + {e80b7f74-a196-4028-a4b4-86586dab6072}, !- Inlet Branch Name 155 + {29086cd3-9790-4332-b7aa-c78af74a2dd5}, !- Inlet Branch Name 156 + {081597a9-6ac5-4cf6-b0ac-25a9f0927cb2}, !- Inlet Branch Name 157 + {ea76a6d1-c579-4e9d-b313-a64c4a1e8e10}, !- Inlet Branch Name 158 + {de9abb35-1777-41db-a73f-fc62ce2876c1}, !- Inlet Branch Name 159 + {3bbcb89f-95a2-40e4-81bf-4cde07daf574}, !- Inlet Branch Name 160 + {af32d11d-0c6b-4b9c-a4a1-dbe82001f39a}, !- Inlet Branch Name 161 + {56e72ecf-4a5a-45fe-a56e-6a06bc53d586}, !- Inlet Branch Name 162 + {206e4931-22de-41b2-865d-53204508ebef}, !- Inlet Branch Name 163 + {b76d6df4-a8e1-4c56-8bdd-77d121ebf5a0}, !- Inlet Branch Name 164 + {daf47e90-cd8c-46b8-827a-03b050aac28e}, !- Inlet Branch Name 165 + {4817aa5c-d57b-426c-bb24-15ce96d346a0}, !- Inlet Branch Name 166 + {286c476e-6ed1-4058-875b-d91d258de5cc}, !- Inlet Branch Name 167 + {ba693578-e818-4722-a56f-5c67a9857206}, !- Inlet Branch Name 168 + {e4149f04-5527-4ab5-9021-dc4b1f2097eb}, !- Inlet Branch Name 169 + {12954d6a-03e2-453e-b665-204b36f29c5d}, !- Inlet Branch Name 170 + {04571621-bbff-4774-8c07-cb056f1085e5}, !- Inlet Branch Name 171 + {c8ed0e42-2962-441c-8175-cf4f0f35ee15}, !- Inlet Branch Name 172 + {308ef414-f58f-4fc2-b68c-8a96b11d732a}, !- Inlet Branch Name 173 + {44d3c2cc-2879-4619-8477-f665c1782633}, !- Inlet Branch Name 174 + {c133415e-b595-413a-b5d7-9add67babcca}, !- Inlet Branch Name 175 + {f2e6ad7a-87cb-49ff-b1a3-d51653ca8132}, !- Inlet Branch Name 176 + {1b84907b-028b-47ee-a67d-d16692e698d5}, !- Inlet Branch Name 177 + {57d0dbf0-2dcc-4bb4-a8a0-0e5d1032d65a}, !- Inlet Branch Name 178 + {dcfeb3e6-e076-4662-ab13-ec17aa70db23}, !- Inlet Branch Name 179 + {f541c4f9-d08e-4645-a18b-1b2177ca69b6}, !- Inlet Branch Name 180 + {4babe7b1-ca32-4417-bc15-517c375bec5e}, !- Inlet Branch Name 181 + {f9c5586e-8c49-4cac-b908-71d790ae037e}, !- Inlet Branch Name 182 + {42f48ec6-20d3-416b-a145-3b05dd580506}, !- Inlet Branch Name 183 + {c00bfde7-1186-4f5c-93db-00715b4e4d6c}, !- Inlet Branch Name 184 + {69e56afd-a297-4500-8197-5285c8c873c7}, !- Inlet Branch Name 185 + {7b49cbaa-665c-447b-bca0-570305aaf22b}, !- Inlet Branch Name 186 + {e4bf2253-c778-4eb9-96f3-88529fc46552}, !- Inlet Branch Name 187 + {dfbefb7d-e4f8-4a28-92c0-c6af7567d74c}, !- Inlet Branch Name 188 + {8b658ef4-b5dd-467e-80ba-d2867a61561e}, !- Inlet Branch Name 189 + {9390408e-7159-46ca-82ee-2c160f3e0864}, !- Inlet Branch Name 190 + {02881b3e-4185-40f6-a215-2486224f6969}, !- Inlet Branch Name 191 + {0b55bc90-2a84-477b-a693-316049d37e74}, !- Inlet Branch Name 192 + {f5013310-dd76-4c8e-ae10-5b9561da602c}; !- Inlet Branch Name 193 + +OS:Connector:Splitter, + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Handle + Connector Splitter 10, !- Name + {0a03a69c-4c34-4446-9ac1-6434415ca844}, !- Inlet Branch Name + {fde61f30-a49d-49a7-a79e-99f684f7c22e}, !- Outlet Branch Name 1 + {22279b11-01eb-49df-ba96-a90831edc9c8}, !- Outlet Branch Name 2 + {6448997a-5937-4cff-a5e2-e1a67ad05da0}, !- Outlet Branch Name 3 + {bf6b5f9c-747a-46a8-9e03-2d756f78c8c0}, !- Outlet Branch Name 4 + {f361fa52-85d7-4957-b1d3-12b46e91264f}, !- Outlet Branch Name 5 + {af51c9ca-2964-4375-8344-168fb16b60e2}, !- Outlet Branch Name 6 + {d78d2384-6378-4cc0-9d59-f3a41f7597b9}, !- Outlet Branch Name 7 + {e151129e-04a1-4b48-a4be-2d1dad907efb}, !- Outlet Branch Name 8 + {05012438-528e-4db1-89f1-ff2ed4855e3b}, !- Outlet Branch Name 9 + {a697147d-ef1b-46e2-84dd-065b6c292b67}, !- Outlet Branch Name 10 + {27fd1caf-00c1-4d46-8771-ee6a263afb26}, !- Outlet Branch Name 11 + {b225c41e-3464-44bd-a58b-15d535e98347}, !- Outlet Branch Name 12 + {3ab8b338-8a07-4a28-bab4-ba539deeefba}, !- Outlet Branch Name 13 + {c365aab0-63ae-422f-8ad7-7c024f55fc5d}, !- Outlet Branch Name 14 + {32187bec-5ab5-4083-bca2-f4b5e43f6057}, !- Outlet Branch Name 15 + {7bf143b2-49e1-4594-9404-a02c1b4eec09}, !- Outlet Branch Name 16 + {7d89084b-f63f-4780-b675-d7a56a6599e0}, !- Outlet Branch Name 17 + {7764a742-1004-4f27-a434-4929870263e5}, !- Outlet Branch Name 18 + {658ff3cb-dd4e-4f60-b8a6-9882084773af}, !- Outlet Branch Name 19 + {7c3c064f-9eb8-49f6-84a7-a1eda6a5c654}, !- Outlet Branch Name 20 + {488e2bd0-0f36-41fa-a24a-776499f24bdd}, !- Outlet Branch Name 21 + {f7c86a1b-bc24-4c3c-9a64-6d3b7fe214f4}, !- Outlet Branch Name 22 + {83770a37-3cba-4e33-9c12-b6bce9985f7e}, !- Outlet Branch Name 23 + {0a2ee802-01d6-43f2-a3a6-f5f7c2bda0c8}, !- Outlet Branch Name 24 + {4d1c0fab-e2e6-4989-965e-079182c69d43}, !- Outlet Branch Name 25 + {21c15324-fb63-4ca6-accb-fbdcda89740b}, !- Outlet Branch Name 26 + {bf7687ef-48cc-4417-ba81-9f2864754eea}, !- Outlet Branch Name 27 + {97226e8d-c407-4c9a-8431-f453875a9980}, !- Outlet Branch Name 28 + {e92456dc-9fbb-43f0-ac3e-c9ae19951cc1}, !- Outlet Branch Name 29 + {32b1473d-8cea-4565-9f36-92fb9adfcf3c}, !- Outlet Branch Name 30 + {b671d40b-ce90-4500-ad4a-1dcd0b99c1fa}, !- Outlet Branch Name 31 + {6924732d-b4b5-4cfe-8030-a9ef37d8dad4}, !- Outlet Branch Name 32 + {1cc08ae6-f159-4855-a185-f141b3f5389c}, !- Outlet Branch Name 33 + {f71be51a-9abf-42f7-927c-3f0bf8fba036}, !- Outlet Branch Name 34 + {34ea6475-4256-4390-86a5-e3717e66517c}, !- Outlet Branch Name 35 + {5b21bdd9-ba43-4c46-8af7-3150b01ff365}, !- Outlet Branch Name 36 + {14dca58e-ae0f-4b34-8e8d-2d94315789ea}, !- Outlet Branch Name 37 + {0c3b137c-0921-47a5-958c-90fa4e4c61b7}, !- Outlet Branch Name 38 + {22ee47e4-282c-42aa-865a-11ed7aed09ab}, !- Outlet Branch Name 39 + {3f200793-5175-413b-aee6-6363f8d4b564}, !- Outlet Branch Name 40 + {7259b5d0-de73-429f-962f-c88c59682935}, !- Outlet Branch Name 41 + {62f2a1fc-3ebc-4e90-9e88-701d6158743a}, !- Outlet Branch Name 42 + {727c1821-9fd5-4ef6-9fdb-b95c1a880351}, !- Outlet Branch Name 43 + {efc84e3e-4d70-417b-bd9d-0bf1b3a234c6}, !- Outlet Branch Name 44 + {d3dc5e36-6c31-4fd8-ae58-61b3ad0235b0}, !- Outlet Branch Name 45 + {f3cc2e24-9aea-43df-b656-5fc363e7d934}, !- Outlet Branch Name 46 + {bcfb64e6-f85e-46d2-8a23-5cabf29ffdff}, !- Outlet Branch Name 47 + {302b088b-b22f-4dc1-9621-c13184745bc7}, !- Outlet Branch Name 48 + {576159bd-2aee-4252-bb6e-21df70e6fcb0}, !- Outlet Branch Name 49 + {b3da6141-6d2c-4b64-8144-7f2eb3c39dd6}, !- Outlet Branch Name 50 + {a36c5def-e32a-4c14-8b59-a1b7f5680a1b}, !- Outlet Branch Name 51 + {683a41a0-479a-4968-994e-a3c0e681f096}, !- Outlet Branch Name 52 + {9b2e5be7-4218-4eb6-87ac-9aaec108e6fd}, !- Outlet Branch Name 53 + {95ef1375-46c7-47e2-bd7f-34a644df72dc}, !- Outlet Branch Name 54 + {28d5da8f-9cef-41ab-86e6-3a8e1236d65d}, !- Outlet Branch Name 55 + {88c15f55-8f05-4f91-9f48-aa2437ec1351}, !- Outlet Branch Name 56 + {20ff7fc5-1086-48bb-9d0b-1bf70b78eacf}, !- Outlet Branch Name 57 + {38987f51-830b-4251-8d0c-60d51c59c08a}, !- Outlet Branch Name 58 + {44308ad6-4627-4a6d-abb6-02b5b555d7ce}, !- Outlet Branch Name 59 + {70cc6d2a-ddca-4f99-a34f-83e4a863238d}, !- Outlet Branch Name 60 + {254c4d45-a76e-4551-979f-7f126999b734}, !- Outlet Branch Name 61 + {b6e3b557-d28c-4b36-b3ce-70c48c45ae25}, !- Outlet Branch Name 62 + {33102669-2ecd-4b96-9069-4732aedeaf1a}, !- Outlet Branch Name 63 + {a56a6e77-e03a-4944-bbc7-7bd4c1e5187f}, !- Outlet Branch Name 64 + {3b09fa9a-637f-4e47-99e7-fe0fe45d19c7}, !- Outlet Branch Name 65 + {e91b05ff-af6e-4163-9259-c043766da053}, !- Outlet Branch Name 66 + {6d22149e-7f80-44fc-b629-016a25d588de}, !- Outlet Branch Name 67 + {7d5008ab-96a1-46f8-a6cd-3f25a2680796}, !- Outlet Branch Name 68 + {93728f79-f121-43b1-a149-5f1491f5d5ea}, !- Outlet Branch Name 69 + {2f5233f8-0688-4357-a1e3-7c2789e91358}, !- Outlet Branch Name 70 + {a5e058a6-97f4-4288-8408-6b898f167186}, !- Outlet Branch Name 71 + {9c30e4a9-4b2f-4597-9faa-0163068ff411}, !- Outlet Branch Name 72 + {08487e15-9b68-4acb-9732-d38fb47c8eda}, !- Outlet Branch Name 73 + {b31d41be-48bd-4cec-9c4d-a7ec114c6398}, !- Outlet Branch Name 74 + {5081f31a-17ef-4836-a73a-ee973a6e5f13}, !- Outlet Branch Name 75 + {d4316481-4153-4df1-94bd-2b81d4994099}, !- Outlet Branch Name 76 + {0543849d-8147-41c4-8e9c-4290ac96a697}, !- Outlet Branch Name 77 + {3bf80fa7-6366-47af-94f9-60c6a2ffb8ac}, !- Outlet Branch Name 78 + {4e3b3802-b9ca-483c-b829-e4e52625acee}, !- Outlet Branch Name 79 + {d3c6482f-3f76-4797-9284-9192b0fe630f}, !- Outlet Branch Name 80 + {eae0c73a-cbab-4cd3-bdd4-0c73ca820f8c}, !- Outlet Branch Name 81 + {a2ecfc0b-5024-4ddc-b149-02c7d848b64d}, !- Outlet Branch Name 82 + {9173c465-c8b2-45fc-9437-4c3d414f50cf}, !- Outlet Branch Name 83 + {edd1d1b3-e8cf-4a50-bc2d-dba53c1f8d23}, !- Outlet Branch Name 84 + {0ca031ac-7b1b-432d-89e4-75d353549a19}, !- Outlet Branch Name 85 + {5a6d6588-e26b-489e-97f7-767c685bbe9d}, !- Outlet Branch Name 86 + {c248e77b-4033-4776-9bc8-64884d2ed319}, !- Outlet Branch Name 87 + {fb16bd47-8f3d-4fc0-adb8-a1435ae60499}, !- Outlet Branch Name 88 + {80b54db0-c40c-4ed4-967d-cceb267fceb3}, !- Outlet Branch Name 89 + {455a2aac-28b8-4fc8-8021-37254d8f8fe0}, !- Outlet Branch Name 90 + {653f840e-e383-4b58-bb1f-491ba6b7b8e0}, !- Outlet Branch Name 91 + {f0414b53-3464-49b3-b46b-adf85b4d193f}, !- Outlet Branch Name 92 + {e20311a6-bc27-4707-810f-52347024ed6a}, !- Outlet Branch Name 93 + {c7b1fb43-cb19-45dd-85b6-f8b7146679bb}, !- Outlet Branch Name 94 + {49dcff2d-23cc-4fc2-9930-ccc04208ca9e}, !- Outlet Branch Name 95 + {512bc3ea-fb27-4db5-8d48-1052335ab81e}, !- Outlet Branch Name 96 + {8c1861b1-c688-4c26-8c29-dd3679c9510d}, !- Outlet Branch Name 97 + {c7af149e-5197-41a9-8169-f442bc47dacb}, !- Outlet Branch Name 98 + {2a1e5b1a-323c-430c-89d8-58303b4df56a}, !- Outlet Branch Name 99 + {e2d99d71-52e4-416e-8c49-6dbf61758588}, !- Outlet Branch Name 100 + {ece0cb34-7073-4c24-8141-e9e13c1d46be}, !- Outlet Branch Name 101 + {a4a4471f-f337-4964-845f-f23c096c9a5a}, !- Outlet Branch Name 102 + {8f7c3875-17f7-4c83-976b-dc0458656571}, !- Outlet Branch Name 103 + {586822b9-2dbb-4bc6-95b5-086a466a5934}, !- Outlet Branch Name 104 + {38cf0b9c-d05c-4371-a1f1-ff0aff2ddaa7}, !- Outlet Branch Name 105 + {2d5820ab-4e2e-4460-b053-a66b86084189}, !- Outlet Branch Name 106 + {e48ada03-bbd2-4643-84a1-06ca274093da}, !- Outlet Branch Name 107 + {d4719bca-ffc1-4a53-9342-7460fe61ba39}, !- Outlet Branch Name 108 + {c548c106-2777-4133-b731-d5c4278f6999}, !- Outlet Branch Name 109 + {993297d4-888e-4b41-a194-0fca47cf13b9}, !- Outlet Branch Name 110 + {a6ab363f-03b0-4f37-9560-b848d73e6ef1}, !- Outlet Branch Name 111 + {bf98f96c-531c-437a-aa8b-bef620e83eb2}, !- Outlet Branch Name 112 + {6375dc05-3c2d-4a0f-a761-3c2e8c7504dc}, !- Outlet Branch Name 113 + {8f240b96-a32a-45dd-a776-00731ba19a27}, !- Outlet Branch Name 114 + {88958098-1fb5-4f4a-b40a-7ec953a226cb}, !- Outlet Branch Name 115 + {717921fa-40c6-4b67-8959-aba05ed2539d}, !- Outlet Branch Name 116 + {65b0277a-daf9-4f95-ad01-f71831776cc1}, !- Outlet Branch Name 117 + {e9bd7607-c159-447c-a54d-23c40e446c7b}, !- Outlet Branch Name 118 + {60e72b31-b727-4cdc-844c-cd8d918474d3}, !- Outlet Branch Name 119 + {37c461b7-c198-4d24-a73d-7b3c20ee46af}, !- Outlet Branch Name 120 + {e327e094-faa5-4acf-80ab-b58d975429e6}, !- Outlet Branch Name 121 + {dac57b54-7d8b-42e7-8cb0-b8fa8bcf01e5}, !- Outlet Branch Name 122 + {0458c943-ffe6-471a-bd7b-719e22ab20f2}, !- Outlet Branch Name 123 + {d25ede48-eb7c-4506-baef-476b84a06f52}, !- Outlet Branch Name 124 + {aa90e410-ce13-4bdc-bc6c-a4ca33bb57ac}, !- Outlet Branch Name 125 + {f7a72c5b-1863-44dd-93b1-d3f0c7496b5f}, !- Outlet Branch Name 126 + {bbc18611-3a9e-4e47-bed0-82809c21a453}, !- Outlet Branch Name 127 + {5692b641-5a8c-41f9-8100-bcdfd200d8a3}, !- Outlet Branch Name 128 + {eb9d2b75-4c9e-4ebb-a862-eafdca5e31f8}, !- Outlet Branch Name 129 + {03459db6-d5ef-4ee6-bb28-2619783a23ab}, !- Outlet Branch Name 130 + {471dfaad-e3ea-474f-a860-8fc1ff5d3590}, !- Outlet Branch Name 131 + {cb599cac-d40d-44ce-a9f9-fb98a1da5ba9}, !- Outlet Branch Name 132 + {89eb89c8-bb99-40a2-9c9f-bfb1219b4a17}, !- Outlet Branch Name 133 + {32623089-faba-4fd5-af37-57e180658f21}, !- Outlet Branch Name 134 + {98d1c6b2-42cd-4d8c-a40b-bdd57a17834d}, !- Outlet Branch Name 135 + {b33d5d05-d5f5-42e9-a619-93b014e4a15f}, !- Outlet Branch Name 136 + {3ef1a4bd-67b0-453d-8a98-0c81b1fcb475}, !- Outlet Branch Name 137 + {be59c1ee-4481-4216-ad8a-b5520f453cf8}, !- Outlet Branch Name 138 + {d45d343b-ed08-47c3-9694-3a9a35324516}, !- Outlet Branch Name 139 + {95999ee5-e202-4608-bfd4-1140d895cae0}, !- Outlet Branch Name 140 + {f85adb51-6b8b-4d6f-b06e-de7f4b25aeb2}, !- Outlet Branch Name 141 + {1fc5f957-018a-48c1-9c04-f044ddb5ebad}, !- Outlet Branch Name 142 + {3603db45-b0cd-49a8-b5ab-555089f46365}, !- Outlet Branch Name 143 + {ba264d28-a4ab-43bb-98d8-115042cdf7f8}, !- Outlet Branch Name 144 + {74196b0b-8443-404c-88ea-7607100385bb}, !- Outlet Branch Name 145 + {67af3875-e64a-4a9b-ab45-cef34ec63511}, !- Outlet Branch Name 146 + {0045113c-2d82-4b78-a400-f4f6a54c4de9}, !- Outlet Branch Name 147 + {9d65ea93-a43a-4c34-bc00-87bb95356a3e}, !- Outlet Branch Name 148 + {62764be0-6757-4987-8a7b-5307f71f909b}, !- Outlet Branch Name 149 + {3f6008c9-5e9c-43ad-b869-66ba52d5d1d8}, !- Outlet Branch Name 150 + {fb60e1e9-d1e9-42d3-9632-d68fee22a221}, !- Outlet Branch Name 151 + {f3b41255-f418-4f6f-a8a0-5a527ac70b25}, !- Outlet Branch Name 152 + {e5ee8b67-1475-4fbf-88ca-725bc794aa0c}, !- Outlet Branch Name 153 + {cda71317-44af-40fe-ab65-a7329575ddcb}, !- Outlet Branch Name 154 + {e65c64c0-f2f3-4362-a4cc-6e418ba7ed8e}, !- Outlet Branch Name 155 + {a0e4f7ce-3fd3-413e-866e-f3528a6f33c6}, !- Outlet Branch Name 156 + {f1323b8e-f890-44eb-9f14-087b430e047a}, !- Outlet Branch Name 157 + {4b42eb85-5cc6-45b2-9b39-18284c4a65c6}, !- Outlet Branch Name 158 + {fe9ef926-a0fd-4008-96c5-7a1abd05449a}, !- Outlet Branch Name 159 + {f1c0595b-c383-483c-9075-1405be93cf46}, !- Outlet Branch Name 160 + {79f7e769-f929-4139-aa60-33840e4c4b58}, !- Outlet Branch Name 161 + {b478d616-3ad3-4e63-a8ac-2ea5f0df3f45}, !- Outlet Branch Name 162 + {0c4d1c08-1347-4043-bc46-f1d4cfb6ce8c}, !- Outlet Branch Name 163 + {dbb5c07c-dc14-47b0-ae4f-4ef422609fc7}, !- Outlet Branch Name 164 + {e87b063c-aee5-473d-b787-965e8eadcc07}, !- Outlet Branch Name 165 + {9d1595df-b239-4838-8122-97a61657281a}, !- Outlet Branch Name 166 + {63fac9c8-59fc-421b-ac3e-9a8868a70152}, !- Outlet Branch Name 167 + {cee333a8-d7ff-4a04-acbe-943c13ca7a9a}, !- Outlet Branch Name 168 + {dd1e7509-cbf9-4ba2-9674-3b7ea4f88f7c}, !- Outlet Branch Name 169 + {533f172e-4c98-4e6a-923c-3c1051fda272}, !- Outlet Branch Name 170 + {407ac526-5a2d-40cd-b201-2935eab7d11d}, !- Outlet Branch Name 171 + {b40d99f5-3bb7-44f9-b6aa-09658d58364d}, !- Outlet Branch Name 172 + {b1d6f964-fb4b-4211-9226-eb70b1be3244}, !- Outlet Branch Name 173 + {496fd66d-3715-426d-961d-b04b192e6cd5}, !- Outlet Branch Name 174 + {35989bec-4cd6-4680-8823-ff476d8c59d5}, !- Outlet Branch Name 175 + {418114d3-652b-4d27-a499-f3c56bbaf066}, !- Outlet Branch Name 176 + {5e7562a4-d696-491d-8c22-98c15326c8cb}, !- Outlet Branch Name 177 + {61ab6683-dc27-4ac3-b8d4-9ece82c825b0}, !- Outlet Branch Name 178 + {2b48e94f-357a-4933-87b4-bb1bae136edd}, !- Outlet Branch Name 179 + {92d1250c-b773-4933-ae27-34a425584eb0}, !- Outlet Branch Name 180 + {a1d4a284-f94c-4926-939c-09e7ce8e4711}, !- Outlet Branch Name 181 + {1bd0b9ff-f2e2-4f49-b532-dc56074a24a0}, !- Outlet Branch Name 182 + {986c13a1-5c88-40c5-84ce-80229bb5965c}, !- Outlet Branch Name 183 + {aaa91df1-cb2c-4c59-bfd8-571dde3ee232}, !- Outlet Branch Name 184 + {6d19f5c9-8826-4320-921f-3b32e49230f2}, !- Outlet Branch Name 185 + {e4da714f-d30f-4ff1-900b-0c716b593a88}, !- Outlet Branch Name 186 + {f4eb4aee-2a85-430c-8c63-7234023eab0d}, !- Outlet Branch Name 187 + {4e95c1a1-8e33-4857-a2b4-a9b8ac4068da}, !- Outlet Branch Name 188 + {e9de403a-3a34-4357-86d2-5c9ab3b5a5ec}, !- Outlet Branch Name 189 + {7d07adfb-8466-4acc-b53d-467a95619904}, !- Outlet Branch Name 190 + {5c694d4b-e391-48e0-b8ee-cb6df7563a2c}, !- Outlet Branch Name 191 + {8cd93dc8-3a3f-469d-9d74-b3932e96ec62}, !- Outlet Branch Name 192 + {742e348f-18f4-4f7b-b088-65e9232f0dd6}; !- Outlet Branch Name 193 + +OS:Connection, + {06a391dc-12ae-4b94-a457-0149d4c9e3d8}, !- Handle + {6d6fdcf0-42af-4c31-b7d0-50530525289f}, !- Source Object + 17, !- Outlet Port + {827a5085-b426-474d-90f1-820f0b7c9f31}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fde61f30-a49d-49a7-a79e-99f684f7c22e}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 3, !- Outlet Port + {5cf711d8-9bff-44d4-9ef2-94aa5b7b558e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4254da11-9189-489e-90b9-dce6a00c1114}, !- Handle + {99851e8a-e77c-4017-b6fc-21224e88125c}, !- Source Object + 3, !- Outlet Port + {6d6fdcf0-42af-4c31-b7d0-50530525289f}, !- Target Object + 18; !- Inlet Port + +OS:Sizing:Plant, + {cf17c435-f2ff-4741-b89c-4a922e7d69a2}, !- Handle + {6d6fdcf0-42af-4c31-b7d0-50530525289f}, !- Plant or Condenser Loop Name + Heating, !- Loop Type + 39.0000000000001, !- Design Loop Exit Temperature {C} + 11, !- Loop Design Temperature Difference {deltaC} + NonCoincident, !- Sizing Option + 1, !- Zone Timesteps in Averaging Window + None; !- Coincident Sizing Factor Mode + +OS:AvailabilityManagerAssignmentList, + {39da7f74-d8bf-4fb1-bbe3-08f7492e542c}, !- Handle + Plant Loop 1 AvailabilityManagerAssignmentList 4; !- Name + +OS:Schedule:Ruleset, + {1d8b1296-c089-4413-b8e8-d1a95d581767}, !- Handle + Heat Pump Loop High Temp - 87F, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + {27efee9a-8efb-408a-a00a-2d6fea9f1b8f}; !- Default Day Schedule Name + +OS:Schedule:Day, + {27efee9a-8efb-408a-a00a-2d6fea9f1b8f}, !- Handle + Heat Pump Loop High Temp - 87F Default, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 30.5555555555556; !- Value Until Time 1 + +OS:Schedule:Ruleset, + {bfbe742d-96f6-419f-96c5-3e24a368b5c6}, !- Handle + Heat Pump Loop Low Temp - 67F, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + {01bd5452-58ed-4055-85f0-d621f43842ab}; !- Default Day Schedule Name + +OS:Schedule:Day, + {01bd5452-58ed-4055-85f0-d621f43842ab}, !- Handle + Heat Pump Loop Low Temp - 67F Default, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 19.4444444444445; !- Value Until Time 1 + +OS:SetpointManager:Scheduled:DualSetpoint, + {cddca808-778e-4238-a651-7ad2181ef0f6}, !- Handle + Heat Pump Loop Scheduled Dual Setpoint, !- Name + , !- Control Variable + {1d8b1296-c089-4413-b8e8-d1a95d581767}, !- High Setpoint Schedule Name + {bfbe742d-96f6-419f-96c5-3e24a368b5c6}, !- Low Setpoint Schedule Name + {7c978ea8-a2df-42de-a6b1-9a08606a80cd}; !- Setpoint Node or NodeList Name + +OS:Pump:ConstantSpeed, + {4bbbb9b7-fd1b-44fe-a59d-6b2913210a1b}, !- Handle + Heat Pump Loop Pump, !- Name + {51b63e59-aa95-49ab-9074-b517c5a1cdb5}, !- Inlet Node Name + {bf8e9908-a93e-4e2b-aa12-18f00de0de08}, !- Outlet Node Name + 0.027519866392449, !- Rated Flow Rate {m3/s} + 179344.0152, !- Rated Pump Head {Pa} + 7069.93745364837, !- Rated Power Consumption {W} + 0.895, !- Motor Efficiency + 0, !- Fraction of Motor Inefficiencies to Fluid Stream + Intermittent, !- Pump Control Type + , !- Pump Flow Rate Schedule + , !- Pump Curve + , !- Impeller Diameter {m} + , !- Rotational Speed {rev/min} + , !- Zone + , !- Skin Loss Radiative Fraction + PowerPerFlowPerPressure, !- Design Power Sizing Method + 348701.1, !- Design Electric Power per Unit Flow Rate {W/(m3/s)} + 1.282051282, !- Design Shaft Power per Unit Flow Rate per Unit Head {W-s/m3-Pa} + General; !- End-Use Subcategory + +OS:Node, + {b5a48d83-32b2-42dc-b413-d200b6c835ab}, !- Handle + Heat Pump Loop Pump Outlet Water Node, !- Name + {bf8e9908-a93e-4e2b-aa12-18f00de0de08}, !- Inlet Port + {3a7242ee-6564-4256-8ac0-93770ce91f7b}; !- Outlet Port + +OS:Connection, + {51b63e59-aa95-49ab-9074-b517c5a1cdb5}, !- Handle + {fcee5714-8a8a-4826-8260-305f1ac0c4f8}, !- Source Object + 3, !- Outlet Port + {4bbbb9b7-fd1b-44fe-a59d-6b2913210a1b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bf8e9908-a93e-4e2b-aa12-18f00de0de08}, !- Handle + {4bbbb9b7-fd1b-44fe-a59d-6b2913210a1b}, !- Source Object + 3, !- Outlet Port + {b5a48d83-32b2-42dc-b413-d200b6c835ab}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3a7242ee-6564-4256-8ac0-93770ce91f7b}, !- Handle + {b5a48d83-32b2-42dc-b413-d200b6c835ab}, !- Source Object + 3, !- Outlet Port + {f67ce031-5221-4aea-8c0a-d6afd0fa53da}, !- Target Object + 2; !- Inlet Port + +OS:SetpointManager:Scheduled:DualSetpoint, + {f5276e58-ce71-449e-bb91-c52dcc6b391a}, !- Handle + Heat Pump Loop Cooling Tower Scheduled Dual Setpoint, !- Name + , !- Control Variable + {1d8b1296-c089-4413-b8e8-d1a95d581767}, !- High Setpoint Schedule Name + {bfbe742d-96f6-419f-96c5-3e24a368b5c6}, !- Low Setpoint Schedule Name + {777595c1-ddd2-44dc-9d56-89907559f20c}; !- Setpoint Node or NodeList Name + +OS:CoolingTower:TwoSpeed, + {7e83bdac-da92-4084-9c9b-77d43ebdb517}, !- Handle + Heat Pump Loop CoolingTowerTwoSpeed 38.2 gpm/hp 38.2 gpm/hp, !- Name + {bff9df5c-0541-4eba-8708-59f8dcd49a09}, !- Water Inlet Node Name + {d3e2ec93-dc31-4343-a047-cf7896202684}, !- Water Outlet Node Name + 0.027519866392449, !- Design Water Flow Rate {m3/s} + 24.6497117552946, !- High Fan Speed Air Flow Rate {m3/s} + 9340.26800138415, !- High Fan Speed Fan Power {W} + 17170.0478334736, !- High Fan Speed U-Factor Times Area Value {W/K} + 12.3248558776473, !- Low Fan Speed Air Flow Rate {m3/s} + , !- Low Fan Speed Air Flow Rate Sizing Factor + 2802.08040041524, !- Low Fan Speed Fan Power {W} + , !- Low Fan Speed Fan Power Sizing Factor + 10302.0287000842, !- Low Fan Speed U-Factor Times Area Value {W/K} + , !- Low Fan Speed U-Factor Times Area Sizing Factor + , !- Free Convection Regime Air Flow Rate {m3/s} + , !- Free Convection Regime Air Flow Rate Sizing Factor + , !- Free Convection Regime U-Factor Times Area Value {W/K} + , !- Free Convection U-Factor Times Area Value Sizing Factor + , !- Performance Input Method + , !- Heat Rejection Capacity and Nominal Capacity Sizing Ratio + , !- High Speed Nominal Capacity {W} + , !- Low Speed Nominal Capacity {W} + , !- Low Speed Nominal Capacity Sizing Factor + , !- Free Convection Nominal Capacity {W} + , !- Free Convection Nominal Capacity Sizing Factor + , !- Basin Heater Capacity {W/K} + , !- Basin Heater Setpoint Temperature {C} + , !- Basin Heater Operating Schedule Name + , !- Evaporation Loss Mode + , !- Evaporation Loss Factor {percent/K} + , !- Drift Loss Percent {percent} + , !- Blowdown Calculation Mode + , !- Blowdown Concentration Ratio + , !- Blowdown Makeup Water Usage Schedule Name + , !- Supply Water Storage Tank Name + , !- Outdoor Air Inlet Node Name + , !- Number of Cells + , !- Cell Control + , !- Cell Minimum Water Flow Rate Fraction + , !- Cell Maximum Water Flow Rate Fraction + 1, !- Sizing Factor + 35, !- Design Inlet Air Dry-Bulb Temperature {C} + 25.6, !- Design Inlet Air Wet-Bulb Temperature {C} + 2.4000000000001, !- Design Approach Temperature {deltaC} + 11, !- Design Range Temperature {deltaC} + General; !- End-Use Subcategory + +OS:Node, + {777595c1-ddd2-44dc-9d56-89907559f20c}, !- Handle + Heat Pump Loop CoolingTowerTwoSpeed Outlet Water Node, !- Name + {d3e2ec93-dc31-4343-a047-cf7896202684}, !- Inlet Port + {b3b04d01-2f02-4a1d-8384-112aab3ecf99}; !- Outlet Port + +OS:Connection, + {bff9df5c-0541-4eba-8708-59f8dcd49a09}, !- Handle + {f3b73da4-833b-4a16-b28e-67a2af4dc9c4}, !- Source Object + 3, !- Outlet Port + {7e83bdac-da92-4084-9c9b-77d43ebdb517}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d3e2ec93-dc31-4343-a047-cf7896202684}, !- Handle + {7e83bdac-da92-4084-9c9b-77d43ebdb517}, !- Source Object + 3, !- Outlet Port + {777595c1-ddd2-44dc-9d56-89907559f20c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b3b04d01-2f02-4a1d-8384-112aab3ecf99}, !- Handle + {777595c1-ddd2-44dc-9d56-89907559f20c}, !- Source Object + 3, !- Outlet Port + {857687be-8246-45d3-bda8-fb55c2989861}, !- Target Object + 3; !- Inlet Port + +OS:SetpointManager:Scheduled:DualSetpoint, + {ac5e1dc7-c6cb-4579-a835-858c64c5c444}, !- Handle + Heat Pump Loop Boiler Scheduled Dual Setpoint, !- Name + , !- Control Variable + {1d8b1296-c089-4413-b8e8-d1a95d581767}, !- High Setpoint Schedule Name + {bfbe742d-96f6-419f-96c5-3e24a368b5c6}, !- Low Setpoint Schedule Name + {4d86b9d4-5452-4b0f-bf3a-8873696658ed}; !- Setpoint Node or NodeList Name + +OS:Boiler:HotWater, + {49275923-1aff-4c35-95ad-c4f5cc627297}, !- Handle + Heat Pump Loop Supplemental Boiler 4172kBtu/hr 0.76 Thermal Eff 4636kBtu/hr 0.8 Combustion Eff, !- Name + NaturalGas, !- Fuel Type + 1245593.51494687, !- Nominal Capacity {W} + 0.793, !- Nominal Thermal Efficiency + LeavingBoiler, !- Efficiency Curve Temperature Evaluation Variable + {353f28f4-9aae-45d9-931e-e142ef9ce700}, !- Normalized Boiler Efficiency Curve Name + 0.027519866392449, !- Design Water Flow Rate {m3/s} + 0, !- Minimum Part Load Ratio + 1.2, !- Maximum Part Load Ratio + 1, !- Optimum Part Load Ratio + {a6aef231-f41f-43d4-ade4-7dfb16441158}, !- Boiler Water Inlet Node Name + {40c07580-da1b-4d41-84ee-17cb5bfbf518}, !- Boiler Water Outlet Node Name + 95.0000000000001, !- Water Outlet Upper Temperature Limit {C} + ConstantFlow, !- Boiler Flow Mode + 0, !- On Cycle Parasitic Electric Load {W} + 0, !- Off Cycle Parasitic Fuel Load {W} + 1, !- Sizing Factor + General; !- End-Use Subcategory + +OS:Node, + {5940a75e-da79-4200-b298-aad038e07d80}, !- Handle + Heat Pump Loop Supplemental Boiler Inlet Water Node, !- Name + {5158db25-4af7-4233-913e-0f987aed99a2}, !- Inlet Port + {a6aef231-f41f-43d4-ade4-7dfb16441158}; !- Outlet Port + +OS:Connection, + {5158db25-4af7-4233-913e-0f987aed99a2}, !- Handle + {f67ce031-5221-4aea-8c0a-d6afd0fa53da}, !- Source Object + 4, !- Outlet Port + {5940a75e-da79-4200-b298-aad038e07d80}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {4d86b9d4-5452-4b0f-bf3a-8873696658ed}, !- Handle + Heat Pump Loop Supplemental Boiler Outlet Water Node, !- Name + {40c07580-da1b-4d41-84ee-17cb5bfbf518}, !- Inlet Port + {1fe6c9bf-0d79-4d10-980f-1b3a12229342}; !- Outlet Port + +OS:Connection, + {a6aef231-f41f-43d4-ade4-7dfb16441158}, !- Handle + {5940a75e-da79-4200-b298-aad038e07d80}, !- Source Object + 3, !- Outlet Port + {49275923-1aff-4c35-95ad-c4f5cc627297}, !- Target Object + 11; !- Inlet Port + +OS:Connection, + {40c07580-da1b-4d41-84ee-17cb5bfbf518}, !- Handle + {49275923-1aff-4c35-95ad-c4f5cc627297}, !- Source Object + 12, !- Outlet Port + {4d86b9d4-5452-4b0f-bf3a-8873696658ed}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1fe6c9bf-0d79-4d10-980f-1b3a12229342}, !- Handle + {4d86b9d4-5452-4b0f-bf3a-8873696658ed}, !- Source Object + 3, !- Outlet Port + {857687be-8246-45d3-bda8-fb55c2989861}, !- Target Object + 4; !- Inlet Port + +OS:Pipe:Adiabatic, + {0b718673-427b-472f-b602-302b23409683}, !- Handle + Heat Pump Loop Supply Bypass, !- Name + {238c91a6-ae6d-42bb-8538-cad1a24b371e}, !- Inlet Node Name + {6de52976-acf3-43ae-8b8e-3279fe85b9fd}; !- Outlet Node Name + +OS:Node, + {90bcc939-eb1c-47c1-8074-b330cebe655e}, !- Handle + Heat Pump Loop Supply Bypass Inlet Water Node, !- Name + {841c4719-38fc-44e2-b1a8-103f6c5da10a}, !- Inlet Port + {238c91a6-ae6d-42bb-8538-cad1a24b371e}; !- Outlet Port + +OS:Connection, + {841c4719-38fc-44e2-b1a8-103f6c5da10a}, !- Handle + {f67ce031-5221-4aea-8c0a-d6afd0fa53da}, !- Source Object + 5, !- Outlet Port + {90bcc939-eb1c-47c1-8074-b330cebe655e}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {ea74c83f-e554-4913-8df1-c40a0364302f}, !- Handle + Heat Pump Loop Supply Bypass Outlet Water Node, !- Name + {6de52976-acf3-43ae-8b8e-3279fe85b9fd}, !- Inlet Port + {7e5c3ab1-6789-4c40-8d2d-cf8af7356339}; !- Outlet Port + +OS:Connection, + {238c91a6-ae6d-42bb-8538-cad1a24b371e}, !- Handle + {90bcc939-eb1c-47c1-8074-b330cebe655e}, !- Source Object + 3, !- Outlet Port + {0b718673-427b-472f-b602-302b23409683}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6de52976-acf3-43ae-8b8e-3279fe85b9fd}, !- Handle + {0b718673-427b-472f-b602-302b23409683}, !- Source Object + 3, !- Outlet Port + {ea74c83f-e554-4913-8df1-c40a0364302f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7e5c3ab1-6789-4c40-8d2d-cf8af7356339}, !- Handle + {ea74c83f-e554-4913-8df1-c40a0364302f}, !- Source Object + 3, !- Outlet Port + {857687be-8246-45d3-bda8-fb55c2989861}, !- Target Object + 5; !- Inlet Port + +OS:Pipe:Adiabatic, + {9607bb13-2032-4693-ac65-25037cc12637}, !- Handle + Heat Pump Loop Demand Bypass, !- Name + {87b6ee63-6f20-49f8-9a2a-0c5c02f8388f}, !- Inlet Node Name + {2bbf8bd3-2ac6-4bd1-9644-61c14d698b4b}; !- Outlet Node Name + +OS:Node, + {82afa13c-e3e6-4a76-93c5-4b27aaa7e3cd}, !- Handle + Heat Pump Loop Demand Bypass Outlet Water Node, !- Name + {2bbf8bd3-2ac6-4bd1-9644-61c14d698b4b}, !- Inlet Port + {f3b5ab8a-f62e-4e1f-bc51-d6af723d86b1}; !- Outlet Port + +OS:Connection, + {87b6ee63-6f20-49f8-9a2a-0c5c02f8388f}, !- Handle + {5cf711d8-9bff-44d4-9ef2-94aa5b7b558e}, !- Source Object + 3, !- Outlet Port + {9607bb13-2032-4693-ac65-25037cc12637}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2bbf8bd3-2ac6-4bd1-9644-61c14d698b4b}, !- Handle + {9607bb13-2032-4693-ac65-25037cc12637}, !- Source Object + 3, !- Outlet Port + {82afa13c-e3e6-4a76-93c5-4b27aaa7e3cd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f3b5ab8a-f62e-4e1f-bc51-d6af723d86b1}, !- Handle + {82afa13c-e3e6-4a76-93c5-4b27aaa7e3cd}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 3; !- Inlet Port + +OS:Pipe:Adiabatic, + {ee417039-9257-44ea-8729-30e88d4ac9e8}, !- Handle + Heat Pump Loop Supply Outlet, !- Name + {4ebc8eac-543e-4b69-8086-1b9f72dbf460}, !- Inlet Node Name + {d7c4d7ae-a894-47c9-97d8-ce3475bdafb6}; !- Outlet Node Name + +OS:Node, + {035f33c4-6963-46dc-b3b6-00e7f0ab8087}, !- Handle + Heat Pump Loop Supply Outlet Inlet Water Node, !- Name + {a662a913-4546-4184-ba5c-a98b4f406a54}, !- Inlet Port + {4ebc8eac-543e-4b69-8086-1b9f72dbf460}; !- Outlet Port + +OS:Connection, + {a662a913-4546-4184-ba5c-a98b4f406a54}, !- Handle + {857687be-8246-45d3-bda8-fb55c2989861}, !- Source Object + 2, !- Outlet Port + {035f33c4-6963-46dc-b3b6-00e7f0ab8087}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4ebc8eac-543e-4b69-8086-1b9f72dbf460}, !- Handle + {035f33c4-6963-46dc-b3b6-00e7f0ab8087}, !- Source Object + 3, !- Outlet Port + {ee417039-9257-44ea-8729-30e88d4ac9e8}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d7c4d7ae-a894-47c9-97d8-ce3475bdafb6}, !- Handle + {ee417039-9257-44ea-8729-30e88d4ac9e8}, !- Source Object + 3, !- Outlet Port + {7c978ea8-a2df-42de-a6b1-9a08606a80cd}, !- Target Object + 2; !- Inlet Port + +OS:Pipe:Adiabatic, + {af619d88-8ee1-44f5-870c-593fc7a99a35}, !- Handle + Heat Pump Loop Demand Inlet, !- Name + {fe369bb1-09c8-4467-8cfd-8103200f8979}, !- Inlet Node Name + {94d3751b-ce94-4c5a-bd63-5acf422a1d8b}; !- Outlet Node Name + +OS:Node, + {d52495c9-6849-4430-8272-e55f832db658}, !- Handle + Heat Pump Loop Demand Inlet Outlet Water Node, !- Name + {94d3751b-ce94-4c5a-bd63-5acf422a1d8b}, !- Inlet Port + {0a03a69c-4c34-4446-9ac1-6434415ca844}; !- Outlet Port + +OS:Connection, + {fe369bb1-09c8-4467-8cfd-8103200f8979}, !- Handle + {827a5085-b426-474d-90f1-820f0b7c9f31}, !- Source Object + 3, !- Outlet Port + {af619d88-8ee1-44f5-870c-593fc7a99a35}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {94d3751b-ce94-4c5a-bd63-5acf422a1d8b}, !- Handle + {af619d88-8ee1-44f5-870c-593fc7a99a35}, !- Source Object + 3, !- Outlet Port + {d52495c9-6849-4430-8272-e55f832db658}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0a03a69c-4c34-4446-9ac1-6434415ca844}, !- Handle + {d52495c9-6849-4430-8272-e55f832db658}, !- Source Object + 3, !- Outlet Port + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Target Object + 2; !- Inlet Port + +OS:Pipe:Adiabatic, + {6b650f60-4520-47e6-a8b1-b48d886eb0c6}, !- Handle + Heat Pump Loop Demand Outlet, !- Name + {af5ff0bd-aa76-4a18-9870-f2afd4a9c235}, !- Inlet Node Name + {64b7d516-55a3-4808-b498-684e88effb7e}; !- Outlet Node Name + +OS:Node, + {fdf7c236-5176-467b-afe3-684d606f0ce5}, !- Handle + Heat Pump Loop Demand Outlet Inlet Water Node, !- Name + {f50a0a70-7b21-4e44-b1a5-ac5ea55f7236}, !- Inlet Port + {af5ff0bd-aa76-4a18-9870-f2afd4a9c235}; !- Outlet Port + +OS:Connection, + {f50a0a70-7b21-4e44-b1a5-ac5ea55f7236}, !- Handle + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Source Object + 2, !- Outlet Port + {fdf7c236-5176-467b-afe3-684d606f0ce5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {af5ff0bd-aa76-4a18-9870-f2afd4a9c235}, !- Handle + {fdf7c236-5176-467b-afe3-684d606f0ce5}, !- Source Object + 3, !- Outlet Port + {6b650f60-4520-47e6-a8b1-b48d886eb0c6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {64b7d516-55a3-4808-b498-684e88effb7e}, !- Handle + {6b650f60-4520-47e6-a8b1-b48d886eb0c6}, !- Source Object + 3, !- Outlet Port + {99851e8a-e77c-4017-b6fc-21224e88125c}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {dccf0630-b517-451a-b3c4-b13e8312f58b}, !- Handle + Zone Outpatient Anesthesia A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 271.776162912974, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {fe99042e-e6c1-4617-98b0-a7b5eb2721bc}, !- Handle + Zone Outpatient Anesthesia A - Story ground Water-to-Air HP Htg Coil 1 Clg kBtu/hr 4.2COPH, !- Name + {44c70a6e-36bf-4b70-9bcb-935dddb7cd34}, !- Water Inlet Node Name + {492a474a-83a9-4e99-a458-42a8ade68bba}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0117335474768466, !- Rated Air Flow Rate {m3/s} + 4.97217903871223e-06, !- Rated Water Flow Rate {m3/s} + 224.751077045605, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {f0ee966d-9ba0-48a5-8607-13e80382493d}, !- Handle + Zone Outpatient Anesthesia A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {22279b11-01eb-49df-ba96-a90831edc9c8}, !- Inlet Port + {44c70a6e-36bf-4b70-9bcb-935dddb7cd34}; !- Outlet Port + +OS:Connection, + {22279b11-01eb-49df-ba96-a90831edc9c8}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 4, !- Outlet Port + {f0ee966d-9ba0-48a5-8607-13e80382493d}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {d9b8a8a3-7fd6-4163-8739-321ed3cc2edc}, !- Handle + Zone Outpatient Anesthesia A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {492a474a-83a9-4e99-a458-42a8ade68bba}, !- Inlet Port + {1775adbd-9aba-45cc-94ea-a1f7e9cb1c84}; !- Outlet Port + +OS:Connection, + {44c70a6e-36bf-4b70-9bcb-935dddb7cd34}, !- Handle + {f0ee966d-9ba0-48a5-8607-13e80382493d}, !- Source Object + 3, !- Outlet Port + {fe99042e-e6c1-4617-98b0-a7b5eb2721bc}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {492a474a-83a9-4e99-a458-42a8ade68bba}, !- Handle + {fe99042e-e6c1-4617-98b0-a7b5eb2721bc}, !- Source Object + 3, !- Outlet Port + {d9b8a8a3-7fd6-4163-8739-321ed3cc2edc}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1775adbd-9aba-45cc-94ea-a1f7e9cb1c84}, !- Handle + {d9b8a8a3-7fd6-4163-8739-321ed3cc2edc}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 4; !- Inlet Port + +OS:Curve:QuadLinear, + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Handle + Water to Air Heat Pump Heating Capacity Curve, !- Name + 0.237847462869254, !- Coefficient1 Constant + -3.35823796081626, !- Coefficient2 w + 3.80640467406376, !- Coefficient3 x + 0.179200417311554, !- Coefficient4 y + 0.12860719846082, !- Coefficient5 z + -100, !- Minimum Value of w {BasedOnField A2} + 100, !- Maximum Value of w {BasedOnField A2} + -100, !- Minimum Value of x {BasedOnField A3} + 100, !- Maximum Value of x {BasedOnField A3} + 0, !- Minimum Value of y {BasedOnField A4} + 100, !- Maximum Value of y {BasedOnField A4} + 0, !- Minimum Value of z {BasedOnField A5} + 100; !- Maximum Value of z {BasedOnField A5} + +OS:Curve:QuadLinear, + {8de06865-c68a-4847-945e-4191be04afc5}, !- Handle + Water to Air Heat Pump Heating Power Consumption Curve, !- Name + -3.79175529243238, !- Coefficient1 Constant + 3.38799239505527, !- Coefficient2 w + 1.5022612076303, !- Coefficient3 x + -0.177653510577989, !- Coefficient4 y + -0.103079864171839, !- Coefficient5 z + -100, !- Minimum Value of w {BasedOnField A2} + 100, !- Maximum Value of w {BasedOnField A2} + -100, !- Minimum Value of x {BasedOnField A3} + 100, !- Maximum Value of x {BasedOnField A3} + 0, !- Minimum Value of y {BasedOnField A4} + 100, !- Maximum Value of y {BasedOnField A4} + 0, !- Minimum Value of z {BasedOnField A5} + 100; !- Maximum Value of z {BasedOnField A5} + +OS:Curve:Linear, + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Handle + Water to Air Heat Pump Part Load Fraction Correlation Curve, !- Name + 0.833746458696111, !- Coefficient1 Constant + 0.166253541303889, !- Coefficient2 x + 0, !- Minimum Value of x + 1, !- Maximum Value of x + 0, !- Minimum Curve Output + 1; !- Maximum Curve Output + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {1cb112d3-b0cd-4304-96e8-f2759923e5a5}, !- Handle + Zone Outpatient Anesthesia A - Story ground Water-to-Air HP Clg Coil 1kBtu/hr 11.2EER, !- Name + {d8409049-c6d2-4fd8-b55e-e322f9df6a44}, !- Water Inlet Node Name + {9244e10c-ad3e-4ee4-8ef5-de42a25bd41e}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0117335474768466, !- Rated Air Flow Rate {m3/s} + 4.97217903871223e-06, !- Rated Water Flow Rate {m3/s} + 237.340141630728, !- Rated Total Cooling Capacity {W} + 159.700733494459, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {ddbcd80d-51a6-4cb8-aac0-b8d1f7ca55fa}, !- Handle + Zone Outpatient Anesthesia A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {6448997a-5937-4cff-a5e2-e1a67ad05da0}, !- Inlet Port + {d8409049-c6d2-4fd8-b55e-e322f9df6a44}; !- Outlet Port + +OS:Connection, + {6448997a-5937-4cff-a5e2-e1a67ad05da0}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 5, !- Outlet Port + {ddbcd80d-51a6-4cb8-aac0-b8d1f7ca55fa}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {dbe2c611-5a54-4189-ac22-3d7dd9213772}, !- Handle + Zone Outpatient Anesthesia A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {9244e10c-ad3e-4ee4-8ef5-de42a25bd41e}, !- Inlet Port + {267f13c3-1a47-49b1-9d8c-3e7c4bc79cb7}; !- Outlet Port + +OS:Connection, + {d8409049-c6d2-4fd8-b55e-e322f9df6a44}, !- Handle + {ddbcd80d-51a6-4cb8-aac0-b8d1f7ca55fa}, !- Source Object + 3, !- Outlet Port + {1cb112d3-b0cd-4304-96e8-f2759923e5a5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9244e10c-ad3e-4ee4-8ef5-de42a25bd41e}, !- Handle + {1cb112d3-b0cd-4304-96e8-f2759923e5a5}, !- Source Object + 3, !- Outlet Port + {dbe2c611-5a54-4189-ac22-3d7dd9213772}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {267f13c3-1a47-49b1-9d8c-3e7c4bc79cb7}, !- Handle + {dbe2c611-5a54-4189-ac22-3d7dd9213772}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 5; !- Inlet Port + +OS:Curve:QuadLinear, + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Handle + Water to Air Heat Pump Total Cooling Capacity Curve, !- Name + -4.30266987344639, !- Coefficient1 Constant + 7.18536990534372, !- Coefficient2 w + -2.23946714486189, !- Coefficient3 x + 0.139995928440879, !- Coefficient4 y + 0.102660179888915, !- Coefficient5 z + -100, !- Minimum Value of w {BasedOnField A2} + 100, !- Maximum Value of w {BasedOnField A2} + -100, !- Minimum Value of x {BasedOnField A3} + 100, !- Maximum Value of x {BasedOnField A3} + 0, !- Minimum Value of y {BasedOnField A4} + 100, !- Maximum Value of y {BasedOnField A4} + 0, !- Minimum Value of z {BasedOnField A5} + 100; !- Maximum Value of z {BasedOnField A5} + +OS:Curve:QuintLinear, + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Handle + Water to Air Heat Pump Sensible Cooling Capacity Curve, !- Name + 6.0019444814887, !- Coefficient1 Constant + 22.6300677244073, !- Coefficient2 v + -26.7960783730934, !- Coefficient3 w + -1.72374720346819, !- Coefficient4 x + 0.490644802367817, !- Coefficient5 y + 0.0693119353468141, !- Coefficient6 z + -100, !- Minimum Value of v {BasedOnField A2} + 100, !- Maximum Value of v {BasedOnField A2} + -100, !- Minimum Value of w {BasedOnField A2} + 100, !- Maximum Value of w {BasedOnField A2} + -100, !- Minimum Value of x {BasedOnField A3} + 100, !- Maximum Value of x {BasedOnField A3} + 0, !- Minimum Value of y {BasedOnField A4} + 100, !- Maximum Value of y {BasedOnField A4} + 0, !- Minimum Value of z {BasedOnField A5} + 100; !- Maximum Value of z {BasedOnField A5} + +OS:Curve:QuadLinear, + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Handle + Water to Air Heat Pump Cooling Power Consumption Curve, !- Name + -5.67775976415698, !- Coefficient1 Constant + 0.438988156976704, !- Coefficient2 w + 5.845277342193, !- Coefficient3 x + 0.141605667000125, !- Coefficient4 y + -0.168727936032429, !- Coefficient5 z + -100, !- Minimum Value of w {BasedOnField A2} + 100, !- Maximum Value of w {BasedOnField A2} + -100, !- Minimum Value of x {BasedOnField A3} + 100, !- Maximum Value of x {BasedOnField A3} + 0, !- Minimum Value of y {BasedOnField A4} + 100, !- Maximum Value of y {BasedOnField A4} + 0, !- Minimum Value of z {BasedOnField A5} + 100; !- Maximum Value of z {BasedOnField A5} + +OS:Fan:OnOff, + {3259f1c2-6685-4f51-aec6-54187e970b80}, !- Handle + Zone Outpatient Anesthesia A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0117335474768466, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {29ef4f72-8c1b-45b8-9956-87ea6e00ecc0}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {44fba756-d08e-4f1d-93e3-8770f07723ba}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {29ef4f72-8c1b-45b8-9956-87ea6e00ecc0}, !- Handle + Fan On Off Power Curve, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {44fba756-d08e-4f1d-93e3-8770f07723ba}, !- Handle + Fan On Off Efficiency Curve, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {342fd66b-8a9a-4b54-b8b7-70d8861fd4b7}, !- Handle + Zone Outpatient Anesthesia A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {3a5d0046-7cdb-4cfe-9c2b-2c27cfeefcd0}, !- Air Inlet Node Name + {c0fac565-c655-4089-af5e-e952d693cf74}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0117335474768466, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0117335474768466, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0117335474768466, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {3259f1c2-6685-4f51-aec6-54187e970b80}, !- Supply Air Fan Name + {fe99042e-e6c1-4617-98b0-a7b5eb2721bc}, !- Heating Coil Name + {1cb112d3-b0cd-4304-96e8-f2759923e5a5}, !- Cooling Coil Name + {dccf0630-b517-451a-b3c4-b13e8312f58b}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {69730271-6f3c-4ccc-bedb-82b129a657b0}, !- Handle + Zone Outpatient Anesthesia A - Story ground WSHP Inlet Air Node, !- Name + {8cf42eb8-8e03-4522-82e2-785d8f4b70a2}, !- Inlet Port + {3a5d0046-7cdb-4cfe-9c2b-2c27cfeefcd0}; !- Outlet Port + +OS:Connection, + {8cf42eb8-8e03-4522-82e2-785d8f4b70a2}, !- Handle + {72751647-2588-468d-9d7f-6f3090793041}, !- Source Object + 3, !- Outlet Port + {69730271-6f3c-4ccc-bedb-82b129a657b0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3a5d0046-7cdb-4cfe-9c2b-2c27cfeefcd0}, !- Handle + {69730271-6f3c-4ccc-bedb-82b129a657b0}, !- Source Object + 3, !- Outlet Port + {342fd66b-8a9a-4b54-b8b7-70d8861fd4b7}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {2dde3ee8-1ed0-45ac-9778-3ee8e6768b7c}, !- Handle + Zone Outpatient Anesthesia A - Story ground WSHP Outlet Air Node, !- Name + {c0fac565-c655-4089-af5e-e952d693cf74}, !- Inlet Port + {cb3ce3ff-abf4-4bad-84a6-b33f5281f930}; !- Outlet Port + +OS:Connection, + {cb3ce3ff-abf4-4bad-84a6-b33f5281f930}, !- Handle + {2dde3ee8-1ed0-45ac-9778-3ee8e6768b7c}, !- Source Object + 3, !- Outlet Port + {f006732e-7d77-416e-b3f4-3f95eb618e1a}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {c0fac565-c655-4089-af5e-e952d693cf74}, !- Handle + {342fd66b-8a9a-4b54-b8b7-70d8861fd4b7}, !- Source Object + 4, !- Outlet Port + {2dde3ee8-1ed0-45ac-9778-3ee8e6768b7c}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {a05dcd2b-72c6-4885-ac5d-5634056dd323}, !- Handle + Zone Outpatient Anesthesia B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 2122.49171758406, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {6e3484b4-9e95-4654-ad3a-f58a17247d9e}, !- Handle + Zone Outpatient Anesthesia B - Story ground Water-to-Air HP Htg Coil 7 Clg kBtu/hr 4.2COPH, !- Name + {8beeb473-11ad-4fbd-9d6c-6b3928502bc4}, !- Water Inlet Node Name + {b0030a3f-c673-45b9-a9d5-eb653aaf7144}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0925432262619668, !- Rated Air Flow Rate {m3/s} + 4.04525623616338e-05, !- Rated Water Flow Rate {m3/s} + 1828.52566032827, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {e0cf3b5f-0650-4c0a-a3aa-059ecbb41e5a}, !- Handle + Zone Outpatient Anesthesia B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {bf6b5f9c-747a-46a8-9e03-2d756f78c8c0}, !- Inlet Port + {8beeb473-11ad-4fbd-9d6c-6b3928502bc4}; !- Outlet Port + +OS:Connection, + {bf6b5f9c-747a-46a8-9e03-2d756f78c8c0}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 6, !- Outlet Port + {e0cf3b5f-0650-4c0a-a3aa-059ecbb41e5a}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {5fb54c8f-c0f6-440e-8059-add4a33acf6e}, !- Handle + Zone Outpatient Anesthesia B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {b0030a3f-c673-45b9-a9d5-eb653aaf7144}, !- Inlet Port + {dc3e23b3-84a8-4a61-99f8-1c2f98585d01}; !- Outlet Port + +OS:Connection, + {8beeb473-11ad-4fbd-9d6c-6b3928502bc4}, !- Handle + {e0cf3b5f-0650-4c0a-a3aa-059ecbb41e5a}, !- Source Object + 3, !- Outlet Port + {6e3484b4-9e95-4654-ad3a-f58a17247d9e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b0030a3f-c673-45b9-a9d5-eb653aaf7144}, !- Handle + {6e3484b4-9e95-4654-ad3a-f58a17247d9e}, !- Source Object + 3, !- Outlet Port + {5fb54c8f-c0f6-440e-8059-add4a33acf6e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {dc3e23b3-84a8-4a61-99f8-1c2f98585d01}, !- Handle + {5fb54c8f-c0f6-440e-8059-add4a33acf6e}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 6; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {6ba2b86c-1ccc-4f4f-bb48-c8833eb39885}, !- Handle + Zone Outpatient Anesthesia B - Story ground Water-to-Air HP Clg Coil 7kBtu/hr 11.2EER, !- Name + {3a5b9071-e8b6-4bb2-9c24-bb53539f51f8}, !- Water Inlet Node Name + {cc449c63-db1d-4979-813b-f166ddb9f9eb}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0925432262619668, !- Rated Air Flow Rate {m3/s} + 4.04525623616338e-05, !- Rated Water Flow Rate {m3/s} + 1930.94753939565, !- Rated Total Cooling Capacity {W} + 1299.34493288152, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {b4f20d73-d2d4-429d-a1c0-c566cd93ac84}, !- Handle + Zone Outpatient Anesthesia B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {f361fa52-85d7-4957-b1d3-12b46e91264f}, !- Inlet Port + {3a5b9071-e8b6-4bb2-9c24-bb53539f51f8}; !- Outlet Port + +OS:Connection, + {f361fa52-85d7-4957-b1d3-12b46e91264f}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 7, !- Outlet Port + {b4f20d73-d2d4-429d-a1c0-c566cd93ac84}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {7f87159c-db80-4e11-ab18-799558de134c}, !- Handle + Zone Outpatient Anesthesia B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {cc449c63-db1d-4979-813b-f166ddb9f9eb}, !- Inlet Port + {18786601-bc31-4ccf-b59d-2ed173d71e24}; !- Outlet Port + +OS:Connection, + {3a5b9071-e8b6-4bb2-9c24-bb53539f51f8}, !- Handle + {b4f20d73-d2d4-429d-a1c0-c566cd93ac84}, !- Source Object + 3, !- Outlet Port + {6ba2b86c-1ccc-4f4f-bb48-c8833eb39885}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {cc449c63-db1d-4979-813b-f166ddb9f9eb}, !- Handle + {6ba2b86c-1ccc-4f4f-bb48-c8833eb39885}, !- Source Object + 3, !- Outlet Port + {7f87159c-db80-4e11-ab18-799558de134c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {18786601-bc31-4ccf-b59d-2ed173d71e24}, !- Handle + {7f87159c-db80-4e11-ab18-799558de134c}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 7; !- Inlet Port + +OS:Fan:OnOff, + {dcaf0e38-345f-45a0-9ba3-df75a211c404}, !- Handle + Zone Outpatient Anesthesia B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0925432262619668, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {95addf0c-8601-4a90-9ca6-7875c116af4d}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {0aac28bb-9a14-4157-aba5-7e3a9d72ac3d}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {95addf0c-8601-4a90-9ca6-7875c116af4d}, !- Handle + Fan On Off Power Curve 1, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {0aac28bb-9a14-4157-aba5-7e3a9d72ac3d}, !- Handle + Fan On Off Efficiency Curve 1, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {ed049a6e-f48c-46a2-b533-19bc45045796}, !- Handle + Zone Outpatient Anesthesia B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {09a62395-1c68-4aed-b0bf-897766e9a7e1}, !- Air Inlet Node Name + {cdb5dfbe-1028-4a2c-bc30-eb1dddae7b5d}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0925432262619668, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0925432262619668, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0925432262619668, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {dcaf0e38-345f-45a0-9ba3-df75a211c404}, !- Supply Air Fan Name + {6e3484b4-9e95-4654-ad3a-f58a17247d9e}, !- Heating Coil Name + {6ba2b86c-1ccc-4f4f-bb48-c8833eb39885}, !- Cooling Coil Name + {a05dcd2b-72c6-4885-ac5d-5634056dd323}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {046815e0-8fa0-40d9-bb82-4a15fc6e7432}, !- Handle + Zone Outpatient Anesthesia B - Story ground WSHP Inlet Air Node, !- Name + {e22ea942-b058-4cad-93fd-da56ce5e9d99}, !- Inlet Port + {09a62395-1c68-4aed-b0bf-897766e9a7e1}; !- Outlet Port + +OS:Connection, + {e22ea942-b058-4cad-93fd-da56ce5e9d99}, !- Handle + {1609c903-5e63-43f3-bf6a-793d8763150b}, !- Source Object + 3, !- Outlet Port + {046815e0-8fa0-40d9-bb82-4a15fc6e7432}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {09a62395-1c68-4aed-b0bf-897766e9a7e1}, !- Handle + {046815e0-8fa0-40d9-bb82-4a15fc6e7432}, !- Source Object + 3, !- Outlet Port + {ed049a6e-f48c-46a2-b533-19bc45045796}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {0a7735b7-0a01-4455-b3e2-98a1d2ece73d}, !- Handle + Zone Outpatient Anesthesia B - Story ground WSHP Outlet Air Node, !- Name + {cdb5dfbe-1028-4a2c-bc30-eb1dddae7b5d}, !- Inlet Port + {0d3a7833-468f-4a25-81a6-5b698d3c0041}; !- Outlet Port + +OS:Connection, + {0d3a7833-468f-4a25-81a6-5b698d3c0041}, !- Handle + {0a7735b7-0a01-4455-b3e2-98a1d2ece73d}, !- Source Object + 3, !- Outlet Port + {a31419b7-7a96-4c1d-9299-392563e67500}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {cdb5dfbe-1028-4a2c-bc30-eb1dddae7b5d}, !- Handle + {ed049a6e-f48c-46a2-b533-19bc45045796}, !- Source Object + 4, !- Outlet Port + {0a7735b7-0a01-4455-b3e2-98a1d2ece73d}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {a2e4d9f4-874e-41a5-bd21-85fcf8b49176}, !- Handle + Zone Outpatient Anesthesia C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 271.776162912925, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {82f6fad0-186b-476a-bae1-85513374ec63}, !- Handle + Zone Outpatient Anesthesia C - Story ground Water-to-Air HP Htg Coil 1 Clg kBtu/hr 4.2COPH, !- Name + {cb2ed371-e06b-434d-9370-0b431f8984dd}, !- Water Inlet Node Name + {ce620667-4e88-4d81-9309-45ff7249a50b}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0117335474768445, !- Rated Air Flow Rate {m3/s} + 4.97217978363287e-06, !- Rated Water Flow Rate {m3/s} + 224.751110717304, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {7442f0c4-fac6-4e98-91b4-5148fcb65dca}, !- Handle + Zone Outpatient Anesthesia C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {af51c9ca-2964-4375-8344-168fb16b60e2}, !- Inlet Port + {cb2ed371-e06b-434d-9370-0b431f8984dd}; !- Outlet Port + +OS:Connection, + {af51c9ca-2964-4375-8344-168fb16b60e2}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 8, !- Outlet Port + {7442f0c4-fac6-4e98-91b4-5148fcb65dca}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {36f5f892-94c5-422e-bae8-a14fcba9f739}, !- Handle + Zone Outpatient Anesthesia C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {ce620667-4e88-4d81-9309-45ff7249a50b}, !- Inlet Port + {e3c756c8-77f7-40d5-bf62-280a7226659e}; !- Outlet Port + +OS:Connection, + {cb2ed371-e06b-434d-9370-0b431f8984dd}, !- Handle + {7442f0c4-fac6-4e98-91b4-5148fcb65dca}, !- Source Object + 3, !- Outlet Port + {82f6fad0-186b-476a-bae1-85513374ec63}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ce620667-4e88-4d81-9309-45ff7249a50b}, !- Handle + {82f6fad0-186b-476a-bae1-85513374ec63}, !- Source Object + 3, !- Outlet Port + {36f5f892-94c5-422e-bae8-a14fcba9f739}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e3c756c8-77f7-40d5-bf62-280a7226659e}, !- Handle + {36f5f892-94c5-422e-bae8-a14fcba9f739}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 8; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {1d90010f-d314-41b6-b095-c9f4318c521f}, !- Handle + Zone Outpatient Anesthesia C - Story ground Water-to-Air HP Clg Coil 1kBtu/hr 11.2EER, !- Name + {f2a33f9b-cbe2-4e1b-80d5-e14da2b6985d}, !- Water Inlet Node Name + {02a0b69d-a4c5-4df1-983c-7978ab11734c}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0117335474768445, !- Rated Air Flow Rate {m3/s} + 4.97217978363287e-06, !- Rated Water Flow Rate {m3/s} + 237.340177188493, !- Rated Total Cooling Capacity {W} + 159.700763984441, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {715c99ff-d6f8-4026-bad9-c85ab65a141b}, !- Handle + Zone Outpatient Anesthesia C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {d78d2384-6378-4cc0-9d59-f3a41f7597b9}, !- Inlet Port + {f2a33f9b-cbe2-4e1b-80d5-e14da2b6985d}; !- Outlet Port + +OS:Connection, + {d78d2384-6378-4cc0-9d59-f3a41f7597b9}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 9, !- Outlet Port + {715c99ff-d6f8-4026-bad9-c85ab65a141b}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {79d4af75-4f30-46e7-810a-4b98167bcf0f}, !- Handle + Zone Outpatient Anesthesia C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {02a0b69d-a4c5-4df1-983c-7978ab11734c}, !- Inlet Port + {977f6e98-6468-42f1-8fae-178ee30637bc}; !- Outlet Port + +OS:Connection, + {f2a33f9b-cbe2-4e1b-80d5-e14da2b6985d}, !- Handle + {715c99ff-d6f8-4026-bad9-c85ab65a141b}, !- Source Object + 3, !- Outlet Port + {1d90010f-d314-41b6-b095-c9f4318c521f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {02a0b69d-a4c5-4df1-983c-7978ab11734c}, !- Handle + {1d90010f-d314-41b6-b095-c9f4318c521f}, !- Source Object + 3, !- Outlet Port + {79d4af75-4f30-46e7-810a-4b98167bcf0f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {977f6e98-6468-42f1-8fae-178ee30637bc}, !- Handle + {79d4af75-4f30-46e7-810a-4b98167bcf0f}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 9; !- Inlet Port + +OS:Fan:OnOff, + {cf6d20d9-d0d0-4f23-8199-202d5ddda342}, !- Handle + Zone Outpatient Anesthesia C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0117335474768445, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {660f3db2-7420-42db-a919-b13d03ec5057}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {3522fd1b-540f-4e10-b50b-5e2236464f63}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {660f3db2-7420-42db-a919-b13d03ec5057}, !- Handle + Fan On Off Power Curve 2, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {3522fd1b-540f-4e10-b50b-5e2236464f63}, !- Handle + Fan On Off Efficiency Curve 2, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {5320bdab-b7da-4659-96ec-e26f7e7d5c19}, !- Handle + Zone Outpatient Anesthesia C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {964e86a7-8fbd-403f-821a-fe824b445d6e}, !- Air Inlet Node Name + {19046c1c-5915-4c59-9d71-d7931de86f65}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0117335474768445, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0117335474768445, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0117335474768445, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {cf6d20d9-d0d0-4f23-8199-202d5ddda342}, !- Supply Air Fan Name + {82f6fad0-186b-476a-bae1-85513374ec63}, !- Heating Coil Name + {1d90010f-d314-41b6-b095-c9f4318c521f}, !- Cooling Coil Name + {a2e4d9f4-874e-41a5-bd21-85fcf8b49176}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {09390cad-91bf-4ab9-9bdd-5f32681edc36}, !- Handle + Zone Outpatient Anesthesia C - Story ground WSHP Inlet Air Node, !- Name + {ce9fe401-4bcf-4c09-a366-0f4f054b191e}, !- Inlet Port + {964e86a7-8fbd-403f-821a-fe824b445d6e}; !- Outlet Port + +OS:Connection, + {ce9fe401-4bcf-4c09-a366-0f4f054b191e}, !- Handle + {bd005f58-a040-4219-9232-aab2a1775b25}, !- Source Object + 3, !- Outlet Port + {09390cad-91bf-4ab9-9bdd-5f32681edc36}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {964e86a7-8fbd-403f-821a-fe824b445d6e}, !- Handle + {09390cad-91bf-4ab9-9bdd-5f32681edc36}, !- Source Object + 3, !- Outlet Port + {5320bdab-b7da-4659-96ec-e26f7e7d5c19}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {c4711c2e-95b0-429f-8f1c-a97bf382182b}, !- Handle + Zone Outpatient Anesthesia C - Story ground WSHP Outlet Air Node, !- Name + {19046c1c-5915-4c59-9d71-d7931de86f65}, !- Inlet Port + {e6cdea03-c3b6-49cd-a657-8a66532d8eb0}; !- Outlet Port + +OS:Connection, + {e6cdea03-c3b6-49cd-a657-8a66532d8eb0}, !- Handle + {c4711c2e-95b0-429f-8f1c-a97bf382182b}, !- Source Object + 3, !- Outlet Port + {4514ca83-cd5a-4551-8be9-148d3a4047b8}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {19046c1c-5915-4c59-9d71-d7931de86f65}, !- Handle + {5320bdab-b7da-4659-96ec-e26f7e7d5c19}, !- Source Object + 4, !- Outlet Port + {c4711c2e-95b0-429f-8f1c-a97bf382182b}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {5435b16a-8b11-4342-be04-871f347689dc}, !- Handle + Zone Outpatient BioHazard A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 289.95840738199, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {5893b110-cc64-4011-afe1-9388c1148672}, !- Handle + Zone Outpatient BioHazard A - Story ground Water-to-Air HP Htg Coil 1 Clg kBtu/hr 4.2COPH, !- Name + {eb9086de-30dd-4529-81e5-5a5dd36b5724}, !- Water Inlet Node Name + {49dd3442-7a7b-4a7e-ade7-c4dc1a6b5dcb}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0125252446114448, !- Rated Air Flow Rate {m3/s} + 4.60743469181006e-06, !- Rated Water Flow Rate {m3/s} + 208.264002832406, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {31059ed1-731c-46fc-ad2e-3bfb85e97d8d}, !- Handle + Zone Outpatient BioHazard A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {e151129e-04a1-4b48-a4be-2d1dad907efb}, !- Inlet Port + {eb9086de-30dd-4529-81e5-5a5dd36b5724}; !- Outlet Port + +OS:Connection, + {e151129e-04a1-4b48-a4be-2d1dad907efb}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 10, !- Outlet Port + {31059ed1-731c-46fc-ad2e-3bfb85e97d8d}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {79d0857e-4f40-4149-b1e0-1ec500b79d69}, !- Handle + Zone Outpatient BioHazard A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {49dd3442-7a7b-4a7e-ade7-c4dc1a6b5dcb}, !- Inlet Port + {3ca4a7e3-7df4-485e-b2e1-9ffd51c2e83f}; !- Outlet Port + +OS:Connection, + {eb9086de-30dd-4529-81e5-5a5dd36b5724}, !- Handle + {31059ed1-731c-46fc-ad2e-3bfb85e97d8d}, !- Source Object + 3, !- Outlet Port + {5893b110-cc64-4011-afe1-9388c1148672}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {49dd3442-7a7b-4a7e-ade7-c4dc1a6b5dcb}, !- Handle + {5893b110-cc64-4011-afe1-9388c1148672}, !- Source Object + 3, !- Outlet Port + {79d0857e-4f40-4149-b1e0-1ec500b79d69}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3ca4a7e3-7df4-485e-b2e1-9ffd51c2e83f}, !- Handle + {79d0857e-4f40-4149-b1e0-1ec500b79d69}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 10; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {96f19c95-0d4d-4182-a240-3519d9038b5c}, !- Handle + Zone Outpatient BioHazard A - Story ground Water-to-Air HP Clg Coil 1kBtu/hr 11.2EER, !- Name + {ab2989ed-6283-4194-b335-03b5794b28c7}, !- Water Inlet Node Name + {cc59050e-113c-42e5-a11c-738d4c6d6005}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0125252446114448, !- Rated Air Flow Rate {m3/s} + 4.60743469181006e-06, !- Rated Water Flow Rate {m3/s} + 219.929570877188, !- Rated Total Cooling Capacity {W} + 165.549244736447, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {71e4da42-c6c2-404d-a3bc-534b9b09b584}, !- Handle + Zone Outpatient BioHazard A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {05012438-528e-4db1-89f1-ff2ed4855e3b}, !- Inlet Port + {ab2989ed-6283-4194-b335-03b5794b28c7}; !- Outlet Port + +OS:Connection, + {05012438-528e-4db1-89f1-ff2ed4855e3b}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 11, !- Outlet Port + {71e4da42-c6c2-404d-a3bc-534b9b09b584}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {34fcc9d3-879f-4cae-8c77-a815b56a84fd}, !- Handle + Zone Outpatient BioHazard A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {cc59050e-113c-42e5-a11c-738d4c6d6005}, !- Inlet Port + {1a01a42b-351e-4618-838b-9e2a2bbeadce}; !- Outlet Port + +OS:Connection, + {ab2989ed-6283-4194-b335-03b5794b28c7}, !- Handle + {71e4da42-c6c2-404d-a3bc-534b9b09b584}, !- Source Object + 3, !- Outlet Port + {96f19c95-0d4d-4182-a240-3519d9038b5c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {cc59050e-113c-42e5-a11c-738d4c6d6005}, !- Handle + {96f19c95-0d4d-4182-a240-3519d9038b5c}, !- Source Object + 3, !- Outlet Port + {34fcc9d3-879f-4cae-8c77-a815b56a84fd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1a01a42b-351e-4618-838b-9e2a2bbeadce}, !- Handle + {34fcc9d3-879f-4cae-8c77-a815b56a84fd}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 11; !- Inlet Port + +OS:Fan:OnOff, + {9425c474-053a-491d-ba08-19daa0cfbd2d}, !- Handle + Zone Outpatient BioHazard A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0125252446114448, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {a1b137fa-6cdf-4bde-b11b-be4cbba070cd}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {0676f5ea-4ccf-478f-8b92-f7ff391e6bec}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {a1b137fa-6cdf-4bde-b11b-be4cbba070cd}, !- Handle + Fan On Off Power Curve 3, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {0676f5ea-4ccf-478f-8b92-f7ff391e6bec}, !- Handle + Fan On Off Efficiency Curve 3, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {461f29c6-2b36-459d-9862-6792230a2ac4}, !- Handle + Zone Outpatient BioHazard A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {2adfc782-dc2b-4eb0-add8-4cbec275537f}, !- Air Inlet Node Name + {464dc799-d680-4ee4-83b4-004c44dcac1f}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0125252446114448, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0125252446114448, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0125252446114448, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {9425c474-053a-491d-ba08-19daa0cfbd2d}, !- Supply Air Fan Name + {5893b110-cc64-4011-afe1-9388c1148672}, !- Heating Coil Name + {96f19c95-0d4d-4182-a240-3519d9038b5c}, !- Cooling Coil Name + {5435b16a-8b11-4342-be04-871f347689dc}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {b693c9dc-b7de-4384-a806-a5e13327a25c}, !- Handle + Zone Outpatient BioHazard A - Story ground WSHP Inlet Air Node, !- Name + {fb290fbe-ae96-4906-8aba-22c60a747636}, !- Inlet Port + {2adfc782-dc2b-4eb0-add8-4cbec275537f}; !- Outlet Port + +OS:Connection, + {fb290fbe-ae96-4906-8aba-22c60a747636}, !- Handle + {83cb2c5b-b7d2-4f9c-b34a-e241911b1a38}, !- Source Object + 2, !- Outlet Port + {b693c9dc-b7de-4384-a806-a5e13327a25c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2adfc782-dc2b-4eb0-add8-4cbec275537f}, !- Handle + {b693c9dc-b7de-4384-a806-a5e13327a25c}, !- Source Object + 3, !- Outlet Port + {461f29c6-2b36-459d-9862-6792230a2ac4}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {3abc200a-c26e-48cc-971c-91f8eab561b0}, !- Handle + Zone Outpatient BioHazard A - Story ground WSHP Outlet Air Node, !- Name + {464dc799-d680-4ee4-83b4-004c44dcac1f}, !- Inlet Port + {eeeb4e69-f930-4f8f-8f37-f3b144e41ceb}; !- Outlet Port + +OS:Connection, + {eeeb4e69-f930-4f8f-8f37-f3b144e41ceb}, !- Handle + {3abc200a-c26e-48cc-971c-91f8eab561b0}, !- Source Object + 3, !- Outlet Port + {25d74a51-df4c-4df1-b554-aed5ad29bc7a}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {464dc799-d680-4ee4-83b4-004c44dcac1f}, !- Handle + {461f29c6-2b36-459d-9862-6792230a2ac4}, !- Source Object + 4, !- Outlet Port + {3abc200a-c26e-48cc-971c-91f8eab561b0}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {ecf5b97e-d723-4eea-b4c7-a90164be3846}, !- Handle + Zone Outpatient BioHazard B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 2366.77778053914, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {9e31792b-7771-49e6-96cb-7443719a1473}, !- Handle + Zone Outpatient BioHazard B - Story ground Water-to-Air HP Htg Coil 8 Clg kBtu/hr 4.2COPH, !- Name + {adb4141d-9f88-4507-8b96-7556399a95b0}, !- Water Inlet Node Name + {c25af95a-c9b0-4ddc-b87d-5e102d95707f}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.102236396641889, !- Rated Air Flow Rate {m3/s} + 3.76084696348574e-05, !- Rated Water Flow Rate {m3/s} + 1699.96775873547, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {d09e7c9b-54c7-490d-9529-9e168a2dbfcb}, !- Handle + Zone Outpatient BioHazard B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {a697147d-ef1b-46e2-84dd-065b6c292b67}, !- Inlet Port + {adb4141d-9f88-4507-8b96-7556399a95b0}; !- Outlet Port + +OS:Connection, + {a697147d-ef1b-46e2-84dd-065b6c292b67}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 12, !- Outlet Port + {d09e7c9b-54c7-490d-9529-9e168a2dbfcb}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {4d556a3f-b473-42b2-9368-9a77408c3f1e}, !- Handle + Zone Outpatient BioHazard B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {c25af95a-c9b0-4ddc-b87d-5e102d95707f}, !- Inlet Port + {10d56945-2d99-4e5a-8608-08df94744757}; !- Outlet Port + +OS:Connection, + {adb4141d-9f88-4507-8b96-7556399a95b0}, !- Handle + {d09e7c9b-54c7-490d-9529-9e168a2dbfcb}, !- Source Object + 3, !- Outlet Port + {9e31792b-7771-49e6-96cb-7443719a1473}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c25af95a-c9b0-4ddc-b87d-5e102d95707f}, !- Handle + {9e31792b-7771-49e6-96cb-7443719a1473}, !- Source Object + 3, !- Outlet Port + {4d556a3f-b473-42b2-9368-9a77408c3f1e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {10d56945-2d99-4e5a-8608-08df94744757}, !- Handle + {4d556a3f-b473-42b2-9368-9a77408c3f1e}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 12; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {dad2289c-ed4d-40dc-8ba6-3c742d789914}, !- Handle + Zone Outpatient BioHazard B - Story ground Water-to-Air HP Clg Coil 8kBtu/hr 11.2EER, !- Name + {13b76a3d-9c5d-402b-9e76-14a01efb9dcb}, !- Water Inlet Node Name + {f9e1ed74-087f-4a3b-a336-1b39fc765a66}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.102236396641889, !- Rated Air Flow Rate {m3/s} + 3.76084696348574e-05, !- Rated Water Flow Rate {m3/s} + 1795.18867686707, !- Rated Total Cooling Capacity {W} + 1365.34942931416, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {eead8734-c8a9-42de-937d-efc4ede81c53}, !- Handle + Zone Outpatient BioHazard B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {27fd1caf-00c1-4d46-8771-ee6a263afb26}, !- Inlet Port + {13b76a3d-9c5d-402b-9e76-14a01efb9dcb}; !- Outlet Port + +OS:Connection, + {27fd1caf-00c1-4d46-8771-ee6a263afb26}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 13, !- Outlet Port + {eead8734-c8a9-42de-937d-efc4ede81c53}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {1d039558-2d27-4f27-b351-29f7436a69f1}, !- Handle + Zone Outpatient BioHazard B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {f9e1ed74-087f-4a3b-a336-1b39fc765a66}, !- Inlet Port + {7d5eeecc-52c3-435c-a3dc-272feb158b07}; !- Outlet Port + +OS:Connection, + {13b76a3d-9c5d-402b-9e76-14a01efb9dcb}, !- Handle + {eead8734-c8a9-42de-937d-efc4ede81c53}, !- Source Object + 3, !- Outlet Port + {dad2289c-ed4d-40dc-8ba6-3c742d789914}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f9e1ed74-087f-4a3b-a336-1b39fc765a66}, !- Handle + {dad2289c-ed4d-40dc-8ba6-3c742d789914}, !- Source Object + 3, !- Outlet Port + {1d039558-2d27-4f27-b351-29f7436a69f1}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7d5eeecc-52c3-435c-a3dc-272feb158b07}, !- Handle + {1d039558-2d27-4f27-b351-29f7436a69f1}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 13; !- Inlet Port + +OS:Fan:OnOff, + {4b71a188-e5e4-4d95-b274-491c0263362c}, !- Handle + Zone Outpatient BioHazard B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.102236396641889, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {0b01a03e-2fc5-442c-b058-67e1a53dbcbe}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {2ec504fb-486a-45bd-bd83-a8ea7f32f626}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {0b01a03e-2fc5-442c-b058-67e1a53dbcbe}, !- Handle + Fan On Off Power Curve 4, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {2ec504fb-486a-45bd-bd83-a8ea7f32f626}, !- Handle + Fan On Off Efficiency Curve 4, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {420dcf6a-a856-4c89-8d87-9f20fa532409}, !- Handle + Zone Outpatient BioHazard B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {e144b476-6aec-4207-9618-d11309a8bc05}, !- Air Inlet Node Name + {6973ee17-e456-4b1a-9114-e9fd844e73cb}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.102236396641889, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.102236396641889, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.102236396641889, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {4b71a188-e5e4-4d95-b274-491c0263362c}, !- Supply Air Fan Name + {9e31792b-7771-49e6-96cb-7443719a1473}, !- Heating Coil Name + {dad2289c-ed4d-40dc-8ba6-3c742d789914}, !- Cooling Coil Name + {ecf5b97e-d723-4eea-b4c7-a90164be3846}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {cc585434-98d5-422f-a931-ab8ebf354ad0}, !- Handle + Zone Outpatient BioHazard B - Story ground WSHP Inlet Air Node, !- Name + {9fcd8eb0-8647-4db7-87e3-a98e64d3061c}, !- Inlet Port + {e144b476-6aec-4207-9618-d11309a8bc05}; !- Outlet Port + +OS:Connection, + {9fcd8eb0-8647-4db7-87e3-a98e64d3061c}, !- Handle + {83747aa1-cec8-4012-a406-6f19eeca3db3}, !- Source Object + 2, !- Outlet Port + {cc585434-98d5-422f-a931-ab8ebf354ad0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e144b476-6aec-4207-9618-d11309a8bc05}, !- Handle + {cc585434-98d5-422f-a931-ab8ebf354ad0}, !- Source Object + 3, !- Outlet Port + {420dcf6a-a856-4c89-8d87-9f20fa532409}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {e4c41dd2-c124-4323-8edf-2132368cb33b}, !- Handle + Zone Outpatient BioHazard B - Story ground WSHP Outlet Air Node, !- Name + {6973ee17-e456-4b1a-9114-e9fd844e73cb}, !- Inlet Port + {fc4dcbca-10be-4d1e-87d9-cab73437e3f3}; !- Outlet Port + +OS:Connection, + {fc4dcbca-10be-4d1e-87d9-cab73437e3f3}, !- Handle + {e4c41dd2-c124-4323-8edf-2132368cb33b}, !- Source Object + 3, !- Outlet Port + {a73cdb59-88a4-4efb-898a-a936b9d4532c}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {6973ee17-e456-4b1a-9114-e9fd844e73cb}, !- Handle + {420dcf6a-a856-4c89-8d87-9f20fa532409}, !- Source Object + 4, !- Outlet Port + {e4c41dd2-c124-4323-8edf-2132368cb33b}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {33694c25-72eb-4cbe-ba7a-59aff9e4f7bf}, !- Handle + Zone Outpatient BioHazard C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 289.958407381988, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {a22b63c6-e39c-4658-a36a-fac1d772b009}, !- Handle + Zone Outpatient BioHazard C - Story ground Water-to-Air HP Htg Coil 1 Clg kBtu/hr 4.2COPH, !- Name + {c17cffa3-e3a3-4993-a842-32ff267a3f8b}, !- Water Inlet Node Name + {ad3ffcb4-cdb4-4e5d-b539-da5b8f2cc763}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0125252446114447, !- Rated Air Flow Rate {m3/s} + 4.60743469181004e-06, !- Rated Water Flow Rate {m3/s} + 208.264002832406, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {c60c41f9-2c5c-4583-b460-bbe6f424eacb}, !- Handle + Zone Outpatient BioHazard C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {b225c41e-3464-44bd-a58b-15d535e98347}, !- Inlet Port + {c17cffa3-e3a3-4993-a842-32ff267a3f8b}; !- Outlet Port + +OS:Connection, + {b225c41e-3464-44bd-a58b-15d535e98347}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 14, !- Outlet Port + {c60c41f9-2c5c-4583-b460-bbe6f424eacb}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {7260c9d6-d7a4-483e-a71e-a96da6c907b9}, !- Handle + Zone Outpatient BioHazard C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {ad3ffcb4-cdb4-4e5d-b539-da5b8f2cc763}, !- Inlet Port + {adeb83a0-dbc8-4908-a249-16f8e130527c}; !- Outlet Port + +OS:Connection, + {c17cffa3-e3a3-4993-a842-32ff267a3f8b}, !- Handle + {c60c41f9-2c5c-4583-b460-bbe6f424eacb}, !- Source Object + 3, !- Outlet Port + {a22b63c6-e39c-4658-a36a-fac1d772b009}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ad3ffcb4-cdb4-4e5d-b539-da5b8f2cc763}, !- Handle + {a22b63c6-e39c-4658-a36a-fac1d772b009}, !- Source Object + 3, !- Outlet Port + {7260c9d6-d7a4-483e-a71e-a96da6c907b9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {adeb83a0-dbc8-4908-a249-16f8e130527c}, !- Handle + {7260c9d6-d7a4-483e-a71e-a96da6c907b9}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 14; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {6f579808-f39f-4791-ac2a-09f7cdc0a9b2}, !- Handle + Zone Outpatient BioHazard C - Story ground Water-to-Air HP Clg Coil 1kBtu/hr 11.2EER, !- Name + {ab71db33-e2db-4c88-aad3-3188028176b8}, !- Water Inlet Node Name + {69445bf5-ba66-43fd-8d1f-0b6d5a0885b6}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0125252446114447, !- Rated Air Flow Rate {m3/s} + 4.60743469181004e-06, !- Rated Water Flow Rate {m3/s} + 219.929570877187, !- Rated Total Cooling Capacity {W} + 165.549265861442, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {1a069db2-1265-4939-85ab-2c2f5c3a2cf4}, !- Handle + Zone Outpatient BioHazard C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {3ab8b338-8a07-4a28-bab4-ba539deeefba}, !- Inlet Port + {ab71db33-e2db-4c88-aad3-3188028176b8}; !- Outlet Port + +OS:Connection, + {3ab8b338-8a07-4a28-bab4-ba539deeefba}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 15, !- Outlet Port + {1a069db2-1265-4939-85ab-2c2f5c3a2cf4}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {4d0fa607-fc14-4b98-8a59-fb0d0e4a09e0}, !- Handle + Zone Outpatient BioHazard C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {69445bf5-ba66-43fd-8d1f-0b6d5a0885b6}, !- Inlet Port + {c9bcdc27-3bc1-46e2-866d-4d9f0c262173}; !- Outlet Port + +OS:Connection, + {ab71db33-e2db-4c88-aad3-3188028176b8}, !- Handle + {1a069db2-1265-4939-85ab-2c2f5c3a2cf4}, !- Source Object + 3, !- Outlet Port + {6f579808-f39f-4791-ac2a-09f7cdc0a9b2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {69445bf5-ba66-43fd-8d1f-0b6d5a0885b6}, !- Handle + {6f579808-f39f-4791-ac2a-09f7cdc0a9b2}, !- Source Object + 3, !- Outlet Port + {4d0fa607-fc14-4b98-8a59-fb0d0e4a09e0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c9bcdc27-3bc1-46e2-866d-4d9f0c262173}, !- Handle + {4d0fa607-fc14-4b98-8a59-fb0d0e4a09e0}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 15; !- Inlet Port + +OS:Fan:OnOff, + {0a66af4f-7556-4fe9-90ca-77d4f2576aaf}, !- Handle + Zone Outpatient BioHazard C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0125252446114447, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {0d5c9f6c-b9b9-47de-8414-f8601acabd38}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {febff5b9-f962-4674-a503-1c96819fb2ab}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {0d5c9f6c-b9b9-47de-8414-f8601acabd38}, !- Handle + Fan On Off Power Curve 5, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {febff5b9-f962-4674-a503-1c96819fb2ab}, !- Handle + Fan On Off Efficiency Curve 5, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {628a97ac-94da-47a7-b55a-7639a3423514}, !- Handle + Zone Outpatient BioHazard C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {03762b51-8630-41ff-a4ed-07ff74738100}, !- Air Inlet Node Name + {04f86a07-4d4b-4a4d-864e-1d116bad50db}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0125252446114447, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0125252446114447, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0125252446114447, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {0a66af4f-7556-4fe9-90ca-77d4f2576aaf}, !- Supply Air Fan Name + {a22b63c6-e39c-4658-a36a-fac1d772b009}, !- Heating Coil Name + {6f579808-f39f-4791-ac2a-09f7cdc0a9b2}, !- Cooling Coil Name + {33694c25-72eb-4cbe-ba7a-59aff9e4f7bf}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {ba0aeddb-b7e1-4446-a981-13362bd45f05}, !- Handle + Zone Outpatient BioHazard C - Story ground WSHP Inlet Air Node, !- Name + {dcf5b2d3-7c2d-4fff-ae9a-6062955016eb}, !- Inlet Port + {03762b51-8630-41ff-a4ed-07ff74738100}; !- Outlet Port + +OS:Connection, + {dcf5b2d3-7c2d-4fff-ae9a-6062955016eb}, !- Handle + {a063b08f-99b2-4bc4-8b1f-afc215c1bc33}, !- Source Object + 2, !- Outlet Port + {ba0aeddb-b7e1-4446-a981-13362bd45f05}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {03762b51-8630-41ff-a4ed-07ff74738100}, !- Handle + {ba0aeddb-b7e1-4446-a981-13362bd45f05}, !- Source Object + 3, !- Outlet Port + {628a97ac-94da-47a7-b55a-7639a3423514}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {c6651aa8-de45-4eaa-9382-a6162b561f63}, !- Handle + Zone Outpatient BioHazard C - Story ground WSHP Outlet Air Node, !- Name + {04f86a07-4d4b-4a4d-864e-1d116bad50db}, !- Inlet Port + {958d4f44-1c4b-44ea-a996-b0dcc318211e}; !- Outlet Port + +OS:Connection, + {958d4f44-1c4b-44ea-a996-b0dcc318211e}, !- Handle + {c6651aa8-de45-4eaa-9382-a6162b561f63}, !- Source Object + 3, !- Outlet Port + {518cf85b-e755-4a02-9a70-9b71a7295f27}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {04f86a07-4d4b-4a4d-864e-1d116bad50db}, !- Handle + {628a97ac-94da-47a7-b55a-7639a3423514}, !- Source Object + 4, !- Outlet Port + {c6651aa8-de45-4eaa-9382-a6162b561f63}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {03343e0c-dae2-41cd-9ec8-5974fe851754}, !- Handle + Zone Outpatient Cafe A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 2030.55731348064, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {6dfc85ce-b2c3-4887-86e6-2566961dbd61}, !- Handle + Zone Outpatient Cafe A - Story ground Water-to-Air HP Htg Coil 10 Clg kBtu/hr 4.2COPH, !- Name + {3eae1660-ba63-451c-9fed-195f7f010bd2}, !- Water Inlet Node Name + {1f47132a-ca73-4626-a4d1-cac1dccd13ec}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.121414018943315, !- Rated Air Flow Rate {m3/s} + 6.14100941536183e-05, !- Rated Water Flow Rate {m3/s} + 2775.84228062559, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {ab392712-9bb5-4b4b-8a3f-9dd2f69c744e}, !- Handle + Zone Outpatient Cafe A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {c365aab0-63ae-422f-8ad7-7c024f55fc5d}, !- Inlet Port + {3eae1660-ba63-451c-9fed-195f7f010bd2}; !- Outlet Port + +OS:Connection, + {c365aab0-63ae-422f-8ad7-7c024f55fc5d}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 16, !- Outlet Port + {ab392712-9bb5-4b4b-8a3f-9dd2f69c744e}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {85eb6517-e258-4feb-a189-7e03df08e77c}, !- Handle + Zone Outpatient Cafe A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {1f47132a-ca73-4626-a4d1-cac1dccd13ec}, !- Inlet Port + {e6ed06fa-5692-47d6-b6d9-19b16800ec14}; !- Outlet Port + +OS:Connection, + {3eae1660-ba63-451c-9fed-195f7f010bd2}, !- Handle + {ab392712-9bb5-4b4b-8a3f-9dd2f69c744e}, !- Source Object + 3, !- Outlet Port + {6dfc85ce-b2c3-4887-86e6-2566961dbd61}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1f47132a-ca73-4626-a4d1-cac1dccd13ec}, !- Handle + {6dfc85ce-b2c3-4887-86e6-2566961dbd61}, !- Source Object + 3, !- Outlet Port + {85eb6517-e258-4feb-a189-7e03df08e77c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e6ed06fa-5692-47d6-b6d9-19b16800ec14}, !- Handle + {85eb6517-e258-4feb-a189-7e03df08e77c}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 16; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {100cdc1b-3f99-45d2-86b4-7045dc37f621}, !- Handle + Zone Outpatient Cafe A - Story ground Water-to-Air HP Clg Coil 10kBtu/hr 11.2EER, !- Name + {b53f3a83-51a5-4f32-ba33-101a0baafa59}, !- Water Inlet Node Name + {e7475cbd-0095-4893-ab70-2227f5f1f305}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.121414018943315, !- Rated Air Flow Rate {m3/s} + 6.14100941536183e-05, !- Rated Water Flow Rate {m3/s} + 2931.3265533075, !- Rated Total Cooling Capacity {W} + 1896.06405127747, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {26d90c68-c213-4a97-80df-5ef3a0d06243}, !- Handle + Zone Outpatient Cafe A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {32187bec-5ab5-4083-bca2-f4b5e43f6057}, !- Inlet Port + {b53f3a83-51a5-4f32-ba33-101a0baafa59}; !- Outlet Port + +OS:Connection, + {32187bec-5ab5-4083-bca2-f4b5e43f6057}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 17, !- Outlet Port + {26d90c68-c213-4a97-80df-5ef3a0d06243}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {230e5839-d460-4a7d-9006-1f8fcf069236}, !- Handle + Zone Outpatient Cafe A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {e7475cbd-0095-4893-ab70-2227f5f1f305}, !- Inlet Port + {e40937df-4f77-45c1-89c1-e53fa1cd4946}; !- Outlet Port + +OS:Connection, + {b53f3a83-51a5-4f32-ba33-101a0baafa59}, !- Handle + {26d90c68-c213-4a97-80df-5ef3a0d06243}, !- Source Object + 3, !- Outlet Port + {100cdc1b-3f99-45d2-86b4-7045dc37f621}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e7475cbd-0095-4893-ab70-2227f5f1f305}, !- Handle + {100cdc1b-3f99-45d2-86b4-7045dc37f621}, !- Source Object + 3, !- Outlet Port + {230e5839-d460-4a7d-9006-1f8fcf069236}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e40937df-4f77-45c1-89c1-e53fa1cd4946}, !- Handle + {230e5839-d460-4a7d-9006-1f8fcf069236}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 17; !- Inlet Port + +OS:Fan:OnOff, + {56625dac-ff6d-4ebe-8c3a-1acd24f1e389}, !- Handle + Zone Outpatient Cafe A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.121414018943315, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {f74e2aca-a5e8-489d-a2bf-1b50e28a5684}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {1bd71fc2-9dc5-47f2-b555-a7568f72bf85}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {f74e2aca-a5e8-489d-a2bf-1b50e28a5684}, !- Handle + Fan On Off Power Curve 6, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {1bd71fc2-9dc5-47f2-b555-a7568f72bf85}, !- Handle + Fan On Off Efficiency Curve 6, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {79f11f40-4b81-4757-bd64-5afd85cb2a2e}, !- Handle + Zone Outpatient Cafe A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {f953ed73-ab54-459f-9de4-4b000d66050e}, !- Air Inlet Node Name + {e7285de5-8b8f-49a1-b1bf-a9b029618bde}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.121414018943315, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.121414018943315, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.121414018943315, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {56625dac-ff6d-4ebe-8c3a-1acd24f1e389}, !- Supply Air Fan Name + {6dfc85ce-b2c3-4887-86e6-2566961dbd61}, !- Heating Coil Name + {100cdc1b-3f99-45d2-86b4-7045dc37f621}, !- Cooling Coil Name + {03343e0c-dae2-41cd-9ec8-5974fe851754}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {c299173e-937f-414f-a9f5-18cdc319c3e9}, !- Handle + Zone Outpatient Cafe A - Story ground WSHP Inlet Air Node, !- Name + {e24777af-df27-4b66-92a3-e34ed0ba5237}, !- Inlet Port + {f953ed73-ab54-459f-9de4-4b000d66050e}; !- Outlet Port + +OS:Connection, + {e24777af-df27-4b66-92a3-e34ed0ba5237}, !- Handle + {5d42a31f-a471-4233-a28b-fc8bd5158fde}, !- Source Object + 2, !- Outlet Port + {c299173e-937f-414f-a9f5-18cdc319c3e9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f953ed73-ab54-459f-9de4-4b000d66050e}, !- Handle + {c299173e-937f-414f-a9f5-18cdc319c3e9}, !- Source Object + 3, !- Outlet Port + {79f11f40-4b81-4757-bd64-5afd85cb2a2e}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {be802e88-5be1-47c4-a009-c7910ee7f7b3}, !- Handle + Zone Outpatient Cafe A - Story ground WSHP Outlet Air Node, !- Name + {e7285de5-8b8f-49a1-b1bf-a9b029618bde}, !- Inlet Port + {9ef787ca-93bd-4ea0-ad89-38d9295e2526}; !- Outlet Port + +OS:Connection, + {9ef787ca-93bd-4ea0-ad89-38d9295e2526}, !- Handle + {be802e88-5be1-47c4-a009-c7910ee7f7b3}, !- Source Object + 3, !- Outlet Port + {4ae69b1f-dadb-49ae-874f-a10896cd3d59}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {e7285de5-8b8f-49a1-b1bf-a9b029618bde}, !- Handle + {79f11f40-4b81-4757-bd64-5afd85cb2a2e}, !- Source Object + 4, !- Outlet Port + {be802e88-5be1-47c4-a009-c7910ee7f7b3}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {274dcddd-7407-4493-8e9d-23b7eab35b47}, !- Handle + Zone Outpatient Cafe B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 16514.1173243508, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {2e8710d9-e534-4f9e-b113-483050d8bf82}, !- Handle + Zone Outpatient Cafe B - Story ground Water-to-Air HP Htg Coil 81 Clg kBtu/hr 4.2COPH, !- Name + {529ef65d-de70-40bf-a576-31825fb51a4a}, !- Water Inlet Node Name + {b7fdcfd8-b354-49e8-a5e6-e65291efe9c4}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.988340498077929, !- Rated Air Flow Rate {m3/s} + 0.000499733584664456, !- Rated Water Flow Rate {m3/s} + 22588.820819752, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {38a927c0-4635-4f96-9b33-5124bf36c081}, !- Handle + Zone Outpatient Cafe B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {7bf143b2-49e1-4594-9404-a02c1b4eec09}, !- Inlet Port + {529ef65d-de70-40bf-a576-31825fb51a4a}; !- Outlet Port + +OS:Connection, + {7bf143b2-49e1-4594-9404-a02c1b4eec09}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 18, !- Outlet Port + {38a927c0-4635-4f96-9b33-5124bf36c081}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {a190f2a8-6577-4310-9c2e-ff73809c4b46}, !- Handle + Zone Outpatient Cafe B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {b7fdcfd8-b354-49e8-a5e6-e65291efe9c4}, !- Inlet Port + {e5c79728-9e47-4e02-94a2-aeb55b42be3c}; !- Outlet Port + +OS:Connection, + {529ef65d-de70-40bf-a576-31825fb51a4a}, !- Handle + {38a927c0-4635-4f96-9b33-5124bf36c081}, !- Source Object + 3, !- Outlet Port + {2e8710d9-e534-4f9e-b113-483050d8bf82}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b7fdcfd8-b354-49e8-a5e6-e65291efe9c4}, !- Handle + {2e8710d9-e534-4f9e-b113-483050d8bf82}, !- Source Object + 3, !- Outlet Port + {a190f2a8-6577-4310-9c2e-ff73809c4b46}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e5c79728-9e47-4e02-94a2-aeb55b42be3c}, !- Handle + {a190f2a8-6577-4310-9c2e-ff73809c4b46}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 18; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {67524a2a-fdee-4874-ada5-08a21f4dc1a5}, !- Handle + Zone Outpatient Cafe B - Story ground Water-to-Air HP Clg Coil 81kBtu/hr 12.0EER, !- Name + {c9fd57d6-cef4-4ecc-90d6-7c4963402cf0}, !- Water Inlet Node Name + {746b7677-7466-48e0-bd3e-a02a4b364845}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.988340498077929, !- Rated Air Flow Rate {m3/s} + 0.000499733584664456, !- Rated Water Flow Rate {m3/s} + 23854.0967327299, !- Rated Total Cooling Capacity {W} + 15430.4458081759, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {3bb2b85d-9740-46cd-a866-0323c4376224}, !- Handle + Zone Outpatient Cafe B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {7d89084b-f63f-4780-b675-d7a56a6599e0}, !- Inlet Port + {c9fd57d6-cef4-4ecc-90d6-7c4963402cf0}; !- Outlet Port + +OS:Connection, + {7d89084b-f63f-4780-b675-d7a56a6599e0}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 19, !- Outlet Port + {3bb2b85d-9740-46cd-a866-0323c4376224}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {696022e2-2d2c-4f4f-af24-9bf1ff6eb906}, !- Handle + Zone Outpatient Cafe B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {746b7677-7466-48e0-bd3e-a02a4b364845}, !- Inlet Port + {eb6a4618-a3ca-464e-9933-b444fce0e3a1}; !- Outlet Port + +OS:Connection, + {c9fd57d6-cef4-4ecc-90d6-7c4963402cf0}, !- Handle + {3bb2b85d-9740-46cd-a866-0323c4376224}, !- Source Object + 3, !- Outlet Port + {67524a2a-fdee-4874-ada5-08a21f4dc1a5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {746b7677-7466-48e0-bd3e-a02a4b364845}, !- Handle + {67524a2a-fdee-4874-ada5-08a21f4dc1a5}, !- Source Object + 3, !- Outlet Port + {696022e2-2d2c-4f4f-af24-9bf1ff6eb906}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {eb6a4618-a3ca-464e-9933-b444fce0e3a1}, !- Handle + {696022e2-2d2c-4f4f-af24-9bf1ff6eb906}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 19; !- Inlet Port + +OS:Fan:OnOff, + {56800399-f81a-4a40-b1f4-d817c3967a75}, !- Handle + Zone Outpatient Cafe B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.988340498077929, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {51e13877-6c2e-49e0-9e29-2ca460d4f290}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {85671e17-7b8d-48df-aec9-ea6070f11fb3}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {51e13877-6c2e-49e0-9e29-2ca460d4f290}, !- Handle + Fan On Off Power Curve 7, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {85671e17-7b8d-48df-aec9-ea6070f11fb3}, !- Handle + Fan On Off Efficiency Curve 7, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {0e0092c5-ed15-41b3-bd45-6108f2a274c6}, !- Handle + Zone Outpatient Cafe B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {3ec6003a-46bc-407b-9b08-9c963d0ae481}, !- Air Inlet Node Name + {5c2d3893-c3c4-4a63-a5f0-1fdb130cc36c}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.988340498077929, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.988340498077929, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.988340498077929, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {56800399-f81a-4a40-b1f4-d817c3967a75}, !- Supply Air Fan Name + {2e8710d9-e534-4f9e-b113-483050d8bf82}, !- Heating Coil Name + {67524a2a-fdee-4874-ada5-08a21f4dc1a5}, !- Cooling Coil Name + {274dcddd-7407-4493-8e9d-23b7eab35b47}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {36dcd606-94de-444e-8169-9e0a628ed334}, !- Handle + Zone Outpatient Cafe B - Story ground WSHP Inlet Air Node, !- Name + {00723ba3-c60b-44c6-ae2b-e07715504255}, !- Inlet Port + {3ec6003a-46bc-407b-9b08-9c963d0ae481}; !- Outlet Port + +OS:Connection, + {00723ba3-c60b-44c6-ae2b-e07715504255}, !- Handle + {3a2ceb51-1c84-4375-a785-3d13c1346809}, !- Source Object + 2, !- Outlet Port + {36dcd606-94de-444e-8169-9e0a628ed334}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3ec6003a-46bc-407b-9b08-9c963d0ae481}, !- Handle + {36dcd606-94de-444e-8169-9e0a628ed334}, !- Source Object + 3, !- Outlet Port + {0e0092c5-ed15-41b3-bd45-6108f2a274c6}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {285be503-5c15-4bee-b12c-2448a5946684}, !- Handle + Zone Outpatient Cafe B - Story ground WSHP Outlet Air Node, !- Name + {5c2d3893-c3c4-4a63-a5f0-1fdb130cc36c}, !- Inlet Port + {e87fd713-5911-4fea-a32c-49f8909d92f3}; !- Outlet Port + +OS:Connection, + {e87fd713-5911-4fea-a32c-49f8909d92f3}, !- Handle + {285be503-5c15-4bee-b12c-2448a5946684}, !- Source Object + 3, !- Outlet Port + {05e9dc6e-6c8a-4d5a-b4b1-27a97e5e6f91}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {5c2d3893-c3c4-4a63-a5f0-1fdb130cc36c}, !- Handle + {0e0092c5-ed15-41b3-bd45-6108f2a274c6}, !- Source Object + 4, !- Outlet Port + {285be503-5c15-4bee-b12c-2448a5946684}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {b55ce657-1b2a-47ea-8e21-b6eab66c2955}, !- Handle + Zone Outpatient Cafe C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 2030.55731348063, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {50826e03-20af-4824-95e9-7ffc017a3e66}, !- Handle + Zone Outpatient Cafe C - Story ground Water-to-Air HP Htg Coil 10 Clg kBtu/hr 4.2COPH, !- Name + {0f236b1c-dbb8-4615-bc9e-5672e2c3ac85}, !- Water Inlet Node Name + {411073c7-3f43-4612-8161-8552a637c420}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.121414018943423, !- Rated Air Flow Rate {m3/s} + 6.14100941536599e-05, !- Rated Water Flow Rate {m3/s} + 2775.84228062747, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {66f6bc36-7127-46ed-ae33-9f26597a14a5}, !- Handle + Zone Outpatient Cafe C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {7764a742-1004-4f27-a434-4929870263e5}, !- Inlet Port + {0f236b1c-dbb8-4615-bc9e-5672e2c3ac85}; !- Outlet Port + +OS:Connection, + {7764a742-1004-4f27-a434-4929870263e5}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 20, !- Outlet Port + {66f6bc36-7127-46ed-ae33-9f26597a14a5}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {15a0f970-bd74-456b-9786-295d97a73691}, !- Handle + Zone Outpatient Cafe C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {411073c7-3f43-4612-8161-8552a637c420}, !- Inlet Port + {ab0c5b47-a61a-40ab-a313-d28cc9f43abf}; !- Outlet Port + +OS:Connection, + {0f236b1c-dbb8-4615-bc9e-5672e2c3ac85}, !- Handle + {66f6bc36-7127-46ed-ae33-9f26597a14a5}, !- Source Object + 3, !- Outlet Port + {50826e03-20af-4824-95e9-7ffc017a3e66}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {411073c7-3f43-4612-8161-8552a637c420}, !- Handle + {50826e03-20af-4824-95e9-7ffc017a3e66}, !- Source Object + 3, !- Outlet Port + {15a0f970-bd74-456b-9786-295d97a73691}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ab0c5b47-a61a-40ab-a313-d28cc9f43abf}, !- Handle + {15a0f970-bd74-456b-9786-295d97a73691}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 20; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {5c5d68bc-25a3-4ba0-9c0c-ab3737a8b66e}, !- Handle + Zone Outpatient Cafe C - Story ground Water-to-Air HP Clg Coil 10kBtu/hr 11.2EER, !- Name + {5bc3e920-01a7-4c4f-b02c-dcbc0d2202cb}, !- Water Inlet Node Name + {3c3c8b0b-9faf-4a1e-82be-ad27e6eea272}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.121414018943423, !- Rated Air Flow Rate {m3/s} + 6.14100941536599e-05, !- Rated Water Flow Rate {m3/s} + 2931.32655330949, !- Rated Total Cooling Capacity {W} + 1896.06405127916, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {550dde89-a315-4847-982e-448cf7e17681}, !- Handle + Zone Outpatient Cafe C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {658ff3cb-dd4e-4f60-b8a6-9882084773af}, !- Inlet Port + {5bc3e920-01a7-4c4f-b02c-dcbc0d2202cb}; !- Outlet Port + +OS:Connection, + {658ff3cb-dd4e-4f60-b8a6-9882084773af}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 21, !- Outlet Port + {550dde89-a315-4847-982e-448cf7e17681}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {5049271a-c711-4749-ba89-d9faca04685f}, !- Handle + Zone Outpatient Cafe C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {3c3c8b0b-9faf-4a1e-82be-ad27e6eea272}, !- Inlet Port + {46fdb60e-05f8-4a4d-ac17-baf8bbfe86d8}; !- Outlet Port + +OS:Connection, + {5bc3e920-01a7-4c4f-b02c-dcbc0d2202cb}, !- Handle + {550dde89-a315-4847-982e-448cf7e17681}, !- Source Object + 3, !- Outlet Port + {5c5d68bc-25a3-4ba0-9c0c-ab3737a8b66e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3c3c8b0b-9faf-4a1e-82be-ad27e6eea272}, !- Handle + {5c5d68bc-25a3-4ba0-9c0c-ab3737a8b66e}, !- Source Object + 3, !- Outlet Port + {5049271a-c711-4749-ba89-d9faca04685f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {46fdb60e-05f8-4a4d-ac17-baf8bbfe86d8}, !- Handle + {5049271a-c711-4749-ba89-d9faca04685f}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 21; !- Inlet Port + +OS:Fan:OnOff, + {275b196b-1b21-49cb-9a8c-9dc5b4785619}, !- Handle + Zone Outpatient Cafe C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.121414018943423, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {9cd2e8ad-f434-4394-98aa-be1898b80e11}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {ff941913-9684-4acf-96df-5e180fab28b9}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {9cd2e8ad-f434-4394-98aa-be1898b80e11}, !- Handle + Fan On Off Power Curve 8, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {ff941913-9684-4acf-96df-5e180fab28b9}, !- Handle + Fan On Off Efficiency Curve 8, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {f733a838-7f14-4970-9748-5f4051b5fa05}, !- Handle + Zone Outpatient Cafe C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {e8b172e3-2f41-48b6-bc80-629bc1206bde}, !- Air Inlet Node Name + {cf465e11-ad48-4a03-84a9-ca2034655edc}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.121414018943423, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.121414018943423, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.121414018943423, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {275b196b-1b21-49cb-9a8c-9dc5b4785619}, !- Supply Air Fan Name + {50826e03-20af-4824-95e9-7ffc017a3e66}, !- Heating Coil Name + {5c5d68bc-25a3-4ba0-9c0c-ab3737a8b66e}, !- Cooling Coil Name + {b55ce657-1b2a-47ea-8e21-b6eab66c2955}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {36de7e97-3a87-41e5-a759-d9ecf54d4992}, !- Handle + Zone Outpatient Cafe C - Story ground WSHP Inlet Air Node, !- Name + {18509cb4-639e-4e4b-bb43-a7f0534f05ed}, !- Inlet Port + {e8b172e3-2f41-48b6-bc80-629bc1206bde}; !- Outlet Port + +OS:Connection, + {18509cb4-639e-4e4b-bb43-a7f0534f05ed}, !- Handle + {fd81b137-b3fb-4a11-9c2e-e6b1d6f8a374}, !- Source Object + 2, !- Outlet Port + {36de7e97-3a87-41e5-a759-d9ecf54d4992}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e8b172e3-2f41-48b6-bc80-629bc1206bde}, !- Handle + {36de7e97-3a87-41e5-a759-d9ecf54d4992}, !- Source Object + 3, !- Outlet Port + {f733a838-7f14-4970-9748-5f4051b5fa05}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {3f54e78b-86bc-4316-a11a-f199d26636fa}, !- Handle + Zone Outpatient Cafe C - Story ground WSHP Outlet Air Node, !- Name + {cf465e11-ad48-4a03-84a9-ca2034655edc}, !- Inlet Port + {9de4ddcf-6a3a-400b-8e91-f52e4b04ef76}; !- Outlet Port + +OS:Connection, + {9de4ddcf-6a3a-400b-8e91-f52e4b04ef76}, !- Handle + {3f54e78b-86bc-4316-a11a-f199d26636fa}, !- Source Object + 3, !- Outlet Port + {83954003-466a-484e-9f70-fb7b315aef8b}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {cf465e11-ad48-4a03-84a9-ca2034655edc}, !- Handle + {f733a838-7f14-4970-9748-5f4051b5fa05}, !- Source Object + 4, !- Outlet Port + {3f54e78b-86bc-4316-a11a-f199d26636fa}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {9c9558c4-800f-415e-af16-1959e4749e4a}, !- Handle + Zone Outpatient CleanWork A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 487.126035502914, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {77a77103-3110-47b2-a6bb-246c61b2eb65}, !- Handle + Zone Outpatient CleanWork A - Story ground Water-to-Air HP Htg Coil 3 Clg kBtu/hr 4.2COPH, !- Name + {ebe7c95a-81a1-4207-820b-87ce6f28f2b8}, !- Water Inlet Node Name + {fc342197-c28c-4fb3-8ae0-67bb4b2e74dc}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0451351442508465, !- Rated Air Flow Rate {m3/s} + 1.82010947581322e-05, !- Rated Water Flow Rate {m3/s} + 822.720907362742, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {ee286df1-6f3f-4068-94e1-6a10b0653aa0}, !- Handle + Zone Outpatient CleanWork A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {7c3c064f-9eb8-49f6-84a7-a1eda6a5c654}, !- Inlet Port + {ebe7c95a-81a1-4207-820b-87ce6f28f2b8}; !- Outlet Port + +OS:Connection, + {7c3c064f-9eb8-49f6-84a7-a1eda6a5c654}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 22, !- Outlet Port + {ee286df1-6f3f-4068-94e1-6a10b0653aa0}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {ed464f47-69ab-4771-a335-ad4a82ca8670}, !- Handle + Zone Outpatient CleanWork A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {fc342197-c28c-4fb3-8ae0-67bb4b2e74dc}, !- Inlet Port + {9fe73771-f9e6-4135-b9ff-0fbe015ab199}; !- Outlet Port + +OS:Connection, + {ebe7c95a-81a1-4207-820b-87ce6f28f2b8}, !- Handle + {ee286df1-6f3f-4068-94e1-6a10b0653aa0}, !- Source Object + 3, !- Outlet Port + {77a77103-3110-47b2-a6bb-246c61b2eb65}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fc342197-c28c-4fb3-8ae0-67bb4b2e74dc}, !- Handle + {77a77103-3110-47b2-a6bb-246c61b2eb65}, !- Source Object + 3, !- Outlet Port + {ed464f47-69ab-4771-a335-ad4a82ca8670}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9fe73771-f9e6-4135-b9ff-0fbe015ab199}, !- Handle + {ed464f47-69ab-4771-a335-ad4a82ca8670}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 22; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {2e246199-d012-4eb2-ba9c-5b56fd79a9ab}, !- Handle + Zone Outpatient CleanWork A - Story ground Water-to-Air HP Clg Coil 3kBtu/hr 11.2EER, !- Name + {5a4b514c-a8f3-4f30-9287-993c878a4dff}, !- Water Inlet Node Name + {82490b03-1f1c-4597-8d3c-9c0842e079d9}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0451351442508465, !- Rated Air Flow Rate {m3/s} + 1.82010947581322e-05, !- Rated Water Flow Rate {m3/s} + 868.804275569335, !- Rated Total Cooling Capacity {W} + 603.968943894895, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {afd5848a-3431-485c-9ca7-c48c24d7c64d}, !- Handle + Zone Outpatient CleanWork A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {488e2bd0-0f36-41fa-a24a-776499f24bdd}, !- Inlet Port + {5a4b514c-a8f3-4f30-9287-993c878a4dff}; !- Outlet Port + +OS:Connection, + {488e2bd0-0f36-41fa-a24a-776499f24bdd}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 23, !- Outlet Port + {afd5848a-3431-485c-9ca7-c48c24d7c64d}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {422b7680-24bc-4a85-9d54-376ac2dbbbf9}, !- Handle + Zone Outpatient CleanWork A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {82490b03-1f1c-4597-8d3c-9c0842e079d9}, !- Inlet Port + {f84b7db2-07a8-48c6-bfdd-5f5f6df5d384}; !- Outlet Port + +OS:Connection, + {5a4b514c-a8f3-4f30-9287-993c878a4dff}, !- Handle + {afd5848a-3431-485c-9ca7-c48c24d7c64d}, !- Source Object + 3, !- Outlet Port + {2e246199-d012-4eb2-ba9c-5b56fd79a9ab}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {82490b03-1f1c-4597-8d3c-9c0842e079d9}, !- Handle + {2e246199-d012-4eb2-ba9c-5b56fd79a9ab}, !- Source Object + 3, !- Outlet Port + {422b7680-24bc-4a85-9d54-376ac2dbbbf9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f84b7db2-07a8-48c6-bfdd-5f5f6df5d384}, !- Handle + {422b7680-24bc-4a85-9d54-376ac2dbbbf9}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 23; !- Inlet Port + +OS:Fan:OnOff, + {8bb91058-d6ca-48cc-ab09-9bde3e26c2a6}, !- Handle + Zone Outpatient CleanWork A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0451351442508465, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {4fbac2cc-6d10-46e1-95e1-611b9fb5312a}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {f6c50dc4-7dfd-40fc-894f-fea4f84cf5da}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {4fbac2cc-6d10-46e1-95e1-611b9fb5312a}, !- Handle + Fan On Off Power Curve 9, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {f6c50dc4-7dfd-40fc-894f-fea4f84cf5da}, !- Handle + Fan On Off Efficiency Curve 9, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {062eaa5a-cfde-4c94-a9a9-41219cf2bf05}, !- Handle + Zone Outpatient CleanWork A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {77e77158-feac-4c05-ba01-4dca0e899037}, !- Air Inlet Node Name + {27cae8df-eea3-420b-8dda-e2b2eb49dd00}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0451351442508465, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0451351442508465, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0451351442508465, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {8bb91058-d6ca-48cc-ab09-9bde3e26c2a6}, !- Supply Air Fan Name + {77a77103-3110-47b2-a6bb-246c61b2eb65}, !- Heating Coil Name + {2e246199-d012-4eb2-ba9c-5b56fd79a9ab}, !- Cooling Coil Name + {9c9558c4-800f-415e-af16-1959e4749e4a}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {1797d972-db8f-4b9f-8cbd-aebfdf3b41bf}, !- Handle + Zone Outpatient CleanWork A - Story ground WSHP Inlet Air Node, !- Name + {67ac1e81-46ee-4137-bc71-6d6a5365f48f}, !- Inlet Port + {77e77158-feac-4c05-ba01-4dca0e899037}; !- Outlet Port + +OS:Connection, + {67ac1e81-46ee-4137-bc71-6d6a5365f48f}, !- Handle + {bb32c984-c148-44fe-b405-229e4aab4059}, !- Source Object + 2, !- Outlet Port + {1797d972-db8f-4b9f-8cbd-aebfdf3b41bf}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {77e77158-feac-4c05-ba01-4dca0e899037}, !- Handle + {1797d972-db8f-4b9f-8cbd-aebfdf3b41bf}, !- Source Object + 3, !- Outlet Port + {062eaa5a-cfde-4c94-a9a9-41219cf2bf05}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {c03fa937-d987-46c7-bcf0-986a0c9630db}, !- Handle + Zone Outpatient CleanWork A - Story ground WSHP Outlet Air Node, !- Name + {27cae8df-eea3-420b-8dda-e2b2eb49dd00}, !- Inlet Port + {c2b0aa31-0a01-48a6-8709-abfb170c7234}; !- Outlet Port + +OS:Connection, + {c2b0aa31-0a01-48a6-8709-abfb170c7234}, !- Handle + {c03fa937-d987-46c7-bcf0-986a0c9630db}, !- Source Object + 3, !- Outlet Port + {e862de05-130b-4f54-a644-a8ec575ab301}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {27cae8df-eea3-420b-8dda-e2b2eb49dd00}, !- Handle + {062eaa5a-cfde-4c94-a9a9-41219cf2bf05}, !- Source Object + 4, !- Outlet Port + {c03fa937-d987-46c7-bcf0-986a0c9630db}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {91f04ac5-fbad-4193-a0e9-6018676d05ac}, !- Handle + Zone Outpatient CleanWork B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 3684.43110555425, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {fe1e2835-dbfc-4e68-8185-26bf1752c8f9}, !- Handle + Zone Outpatient CleanWork B - Story ground Water-to-Air HP Htg Coil 24 Clg kBtu/hr 4.2COPH, !- Name + {d33371cd-1437-4898-ad23-6038a888471a}, !- Water Inlet Node Name + {055b188b-976a-41ac-9319-eddd399d4616}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.362273600726501, !- Rated Air Flow Rate {m3/s} + 0.000146441973826528, !- Rated Water Flow Rate {m3/s} + 6619.43004987218, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {24a3e5c1-100b-4701-880a-a6c9ffae68c8}, !- Handle + Zone Outpatient CleanWork B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {f7c86a1b-bc24-4c3c-9a64-6d3b7fe214f4}, !- Inlet Port + {d33371cd-1437-4898-ad23-6038a888471a}; !- Outlet Port + +OS:Connection, + {f7c86a1b-bc24-4c3c-9a64-6d3b7fe214f4}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 24, !- Outlet Port + {24a3e5c1-100b-4701-880a-a6c9ffae68c8}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {7fe36743-0f1c-4a3f-8c4f-46c275c67ba5}, !- Handle + Zone Outpatient CleanWork B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {055b188b-976a-41ac-9319-eddd399d4616}, !- Inlet Port + {bf3a4680-aabf-47d7-8de9-7e07e4376939}; !- Outlet Port + +OS:Connection, + {d33371cd-1437-4898-ad23-6038a888471a}, !- Handle + {24a3e5c1-100b-4701-880a-a6c9ffae68c8}, !- Source Object + 3, !- Outlet Port + {fe1e2835-dbfc-4e68-8185-26bf1752c8f9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {055b188b-976a-41ac-9319-eddd399d4616}, !- Handle + {fe1e2835-dbfc-4e68-8185-26bf1752c8f9}, !- Source Object + 3, !- Outlet Port + {7fe36743-0f1c-4a3f-8c4f-46c275c67ba5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bf3a4680-aabf-47d7-8de9-7e07e4376939}, !- Handle + {7fe36743-0f1c-4a3f-8c4f-46c275c67ba5}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 24; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {f60d0e46-d34e-41ed-8479-ae7e9e033b0e}, !- Handle + Zone Outpatient CleanWork B - Story ground Water-to-Air HP Clg Coil 24kBtu/hr 12.0EER, !- Name + {1ae883e8-20d3-4556-be77-43e792444cc4}, !- Water Inlet Node Name + {296d5767-65aa-4aac-8a98-b3a9fae620ee}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.362273600726501, !- Rated Air Flow Rate {m3/s} + 0.000146441973826528, !- Rated Water Flow Rate {m3/s} + 6990.20661526163, !- Rated Total Cooling Capacity {W} + 4854.20676763701, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {57370e5b-9dba-4e6e-b698-d6cf11fe83bd}, !- Handle + Zone Outpatient CleanWork B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {83770a37-3cba-4e33-9c12-b6bce9985f7e}, !- Inlet Port + {1ae883e8-20d3-4556-be77-43e792444cc4}; !- Outlet Port + +OS:Connection, + {83770a37-3cba-4e33-9c12-b6bce9985f7e}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 25, !- Outlet Port + {57370e5b-9dba-4e6e-b698-d6cf11fe83bd}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {6e99ab74-0cbc-4f0c-9f35-4cfb8f2ae9ba}, !- Handle + Zone Outpatient CleanWork B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {296d5767-65aa-4aac-8a98-b3a9fae620ee}, !- Inlet Port + {f040d364-6eff-4548-97ad-d7197857261b}; !- Outlet Port + +OS:Connection, + {1ae883e8-20d3-4556-be77-43e792444cc4}, !- Handle + {57370e5b-9dba-4e6e-b698-d6cf11fe83bd}, !- Source Object + 3, !- Outlet Port + {f60d0e46-d34e-41ed-8479-ae7e9e033b0e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {296d5767-65aa-4aac-8a98-b3a9fae620ee}, !- Handle + {f60d0e46-d34e-41ed-8479-ae7e9e033b0e}, !- Source Object + 3, !- Outlet Port + {6e99ab74-0cbc-4f0c-9f35-4cfb8f2ae9ba}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f040d364-6eff-4548-97ad-d7197857261b}, !- Handle + {6e99ab74-0cbc-4f0c-9f35-4cfb8f2ae9ba}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 25; !- Inlet Port + +OS:Fan:OnOff, + {311139f0-01f9-42df-8288-c8be70eaa6d0}, !- Handle + Zone Outpatient CleanWork B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.362273600726501, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {cd676be9-e900-4f4d-972d-cc8571044d65}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {0d2401aa-1a13-405c-a82b-c2c450897745}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {cd676be9-e900-4f4d-972d-cc8571044d65}, !- Handle + Fan On Off Power Curve 10, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {0d2401aa-1a13-405c-a82b-c2c450897745}, !- Handle + Fan On Off Efficiency Curve 10, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {27f33618-31c1-445b-a847-81fbd346767a}, !- Handle + Zone Outpatient CleanWork B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {a13477c8-676a-4b3d-80d8-d1308a780672}, !- Air Inlet Node Name + {4406876a-3f4d-416c-822c-c7bbb337db98}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.362273600726501, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.362273600726501, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.362273600726501, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {311139f0-01f9-42df-8288-c8be70eaa6d0}, !- Supply Air Fan Name + {fe1e2835-dbfc-4e68-8185-26bf1752c8f9}, !- Heating Coil Name + {f60d0e46-d34e-41ed-8479-ae7e9e033b0e}, !- Cooling Coil Name + {91f04ac5-fbad-4193-a0e9-6018676d05ac}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {cb37b555-61c8-40f0-802b-741b72832680}, !- Handle + Zone Outpatient CleanWork B - Story ground WSHP Inlet Air Node, !- Name + {aafc3186-a49c-4926-adc0-4f940c37b7b7}, !- Inlet Port + {a13477c8-676a-4b3d-80d8-d1308a780672}; !- Outlet Port + +OS:Connection, + {aafc3186-a49c-4926-adc0-4f940c37b7b7}, !- Handle + {2e285365-01cd-44c2-ab86-2795c4759913}, !- Source Object + 2, !- Outlet Port + {cb37b555-61c8-40f0-802b-741b72832680}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a13477c8-676a-4b3d-80d8-d1308a780672}, !- Handle + {cb37b555-61c8-40f0-802b-741b72832680}, !- Source Object + 3, !- Outlet Port + {27f33618-31c1-445b-a847-81fbd346767a}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {917f218e-cb34-44d6-b07e-89b813dfd417}, !- Handle + Zone Outpatient CleanWork B - Story ground WSHP Outlet Air Node, !- Name + {4406876a-3f4d-416c-822c-c7bbb337db98}, !- Inlet Port + {9aaddbc2-9508-49cf-a9c6-1ca2ef637694}; !- Outlet Port + +OS:Connection, + {9aaddbc2-9508-49cf-a9c6-1ca2ef637694}, !- Handle + {917f218e-cb34-44d6-b07e-89b813dfd417}, !- Source Object + 3, !- Outlet Port + {e8255693-cf46-459b-9a6e-1cd23e09d5d6}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {4406876a-3f4d-416c-822c-c7bbb337db98}, !- Handle + {27f33618-31c1-445b-a847-81fbd346767a}, !- Source Object + 4, !- Outlet Port + {917f218e-cb34-44d6-b07e-89b813dfd417}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {df16f0aa-0f79-44b6-ac32-31b8eedc200d}, !- Handle + Zone Outpatient CleanWork C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 487.126035502735, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {5bad7dd5-d6a1-48f7-ba40-9cbd3a0fc130}, !- Handle + Zone Outpatient CleanWork C - Story ground Water-to-Air HP Htg Coil 3 Clg kBtu/hr 4.2COPH, !- Name + {2907984b-f756-4963-857a-95684e942a42}, !- Water Inlet Node Name + {980e134b-9d44-4268-9b9d-17cf3d374f31}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0451351442738076, !- Rated Air Flow Rate {m3/s} + 1.8201094765405e-05, !- Rated Water Flow Rate {m3/s} + 822.720907691484, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {6fad1ac1-2e6a-4b58-a6e3-59e7eadde561}, !- Handle + Zone Outpatient CleanWork C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {0a2ee802-01d6-43f2-a3a6-f5f7c2bda0c8}, !- Inlet Port + {2907984b-f756-4963-857a-95684e942a42}; !- Outlet Port + +OS:Connection, + {0a2ee802-01d6-43f2-a3a6-f5f7c2bda0c8}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 26, !- Outlet Port + {6fad1ac1-2e6a-4b58-a6e3-59e7eadde561}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {01c74df6-b16f-4515-a366-2f8618b054b4}, !- Handle + Zone Outpatient CleanWork C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {980e134b-9d44-4268-9b9d-17cf3d374f31}, !- Inlet Port + {762d1b25-717b-451a-a1c2-29f850a178e3}; !- Outlet Port + +OS:Connection, + {2907984b-f756-4963-857a-95684e942a42}, !- Handle + {6fad1ac1-2e6a-4b58-a6e3-59e7eadde561}, !- Source Object + 3, !- Outlet Port + {5bad7dd5-d6a1-48f7-ba40-9cbd3a0fc130}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {980e134b-9d44-4268-9b9d-17cf3d374f31}, !- Handle + {5bad7dd5-d6a1-48f7-ba40-9cbd3a0fc130}, !- Source Object + 3, !- Outlet Port + {01c74df6-b16f-4515-a366-2f8618b054b4}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {762d1b25-717b-451a-a1c2-29f850a178e3}, !- Handle + {01c74df6-b16f-4515-a366-2f8618b054b4}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 26; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {8e980de6-4ca5-4890-b1ad-943aa82a0ce3}, !- Handle + Zone Outpatient CleanWork C - Story ground Water-to-Air HP Clg Coil 3kBtu/hr 11.2EER, !- Name + {3d8e4ab2-d27b-415d-a73e-c7b7f36644f8}, !- Water Inlet Node Name + {285b1a6e-747b-470f-8489-5061467a8e9c}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0451351442738076, !- Rated Air Flow Rate {m3/s} + 1.8201094765405e-05, !- Rated Water Flow Rate {m3/s} + 868.804275916491, !- Rated Total Cooling Capacity {W} + 603.968944202064, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {6cd6caea-ae61-41c7-88bd-9ba24b833244}, !- Handle + Zone Outpatient CleanWork C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {4d1c0fab-e2e6-4989-965e-079182c69d43}, !- Inlet Port + {3d8e4ab2-d27b-415d-a73e-c7b7f36644f8}; !- Outlet Port + +OS:Connection, + {4d1c0fab-e2e6-4989-965e-079182c69d43}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 27, !- Outlet Port + {6cd6caea-ae61-41c7-88bd-9ba24b833244}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {160cbc65-ed59-466f-829d-f1d1f7b7001a}, !- Handle + Zone Outpatient CleanWork C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {285b1a6e-747b-470f-8489-5061467a8e9c}, !- Inlet Port + {94031b68-6f91-411f-b8ce-57953386a4d8}; !- Outlet Port + +OS:Connection, + {3d8e4ab2-d27b-415d-a73e-c7b7f36644f8}, !- Handle + {6cd6caea-ae61-41c7-88bd-9ba24b833244}, !- Source Object + 3, !- Outlet Port + {8e980de6-4ca5-4890-b1ad-943aa82a0ce3}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {285b1a6e-747b-470f-8489-5061467a8e9c}, !- Handle + {8e980de6-4ca5-4890-b1ad-943aa82a0ce3}, !- Source Object + 3, !- Outlet Port + {160cbc65-ed59-466f-829d-f1d1f7b7001a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {94031b68-6f91-411f-b8ce-57953386a4d8}, !- Handle + {160cbc65-ed59-466f-829d-f1d1f7b7001a}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 27; !- Inlet Port + +OS:Fan:OnOff, + {deeae6a0-e4e8-467d-aee7-c47a3362f449}, !- Handle + Zone Outpatient CleanWork C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0451351442738076, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {6d17c892-99f3-4e02-8ebb-83ced6c519b4}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {bf758b8c-32f6-4643-ace9-a641d2c42144}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {6d17c892-99f3-4e02-8ebb-83ced6c519b4}, !- Handle + Fan On Off Power Curve 11, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {bf758b8c-32f6-4643-ace9-a641d2c42144}, !- Handle + Fan On Off Efficiency Curve 11, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {a731cbf3-9cc2-4b70-adc0-5c84d6d8e7fa}, !- Handle + Zone Outpatient CleanWork C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {a2d51e91-3ce4-440e-ab19-0bff61910a27}, !- Air Inlet Node Name + {8fae5029-3425-478b-8af2-5d6833179a60}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0451351442738076, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0451351442738076, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0451351442738076, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {deeae6a0-e4e8-467d-aee7-c47a3362f449}, !- Supply Air Fan Name + {5bad7dd5-d6a1-48f7-ba40-9cbd3a0fc130}, !- Heating Coil Name + {8e980de6-4ca5-4890-b1ad-943aa82a0ce3}, !- Cooling Coil Name + {df16f0aa-0f79-44b6-ac32-31b8eedc200d}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {cd033a0a-4987-4351-8181-be3974a86fa2}, !- Handle + Zone Outpatient CleanWork C - Story ground WSHP Inlet Air Node, !- Name + {006f7508-aade-45a6-8d31-4e2881a5e62a}, !- Inlet Port + {a2d51e91-3ce4-440e-ab19-0bff61910a27}; !- Outlet Port + +OS:Connection, + {006f7508-aade-45a6-8d31-4e2881a5e62a}, !- Handle + {e9b4df6c-e9d4-46f9-bb86-1c669d3af64e}, !- Source Object + 2, !- Outlet Port + {cd033a0a-4987-4351-8181-be3974a86fa2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a2d51e91-3ce4-440e-ab19-0bff61910a27}, !- Handle + {cd033a0a-4987-4351-8181-be3974a86fa2}, !- Source Object + 3, !- Outlet Port + {a731cbf3-9cc2-4b70-adc0-5c84d6d8e7fa}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {bfe4e8be-b02f-4574-90dc-ef565dcd4713}, !- Handle + Zone Outpatient CleanWork C - Story ground WSHP Outlet Air Node, !- Name + {8fae5029-3425-478b-8af2-5d6833179a60}, !- Inlet Port + {21bb61c4-5e90-4ecc-8b4b-cb32dbad3541}; !- Outlet Port + +OS:Connection, + {21bb61c4-5e90-4ecc-8b4b-cb32dbad3541}, !- Handle + {bfe4e8be-b02f-4574-90dc-ef565dcd4713}, !- Source Object + 3, !- Outlet Port + {a476ca78-06e6-4281-b7dc-b8e19656fff7}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {8fae5029-3425-478b-8af2-5d6833179a60}, !- Handle + {a731cbf3-9cc2-4b70-adc0-5c84d6d8e7fa}, !- Source Object + 4, !- Outlet Port + {bfe4e8be-b02f-4574-90dc-ef565dcd4713}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {bf0346f4-7e59-4551-93a5-18f42e01c9a1}, !- Handle + Zone Outpatient Conference A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 807.672150172893, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {36ff21fa-fdaf-4cce-a919-4706ea24309d}, !- Handle + Zone Outpatient Conference A - Story ground Water-to-Air HP Htg Coil 5 Clg kBtu/hr 4.2COPH, !- Name + {0c918b1d-2d83-4833-a133-dae771648591}, !- Water Inlet Node Name + {677cbcee-d750-4f9e-9f42-1474443fe9e0}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0561898211231893, !- Rated Air Flow Rate {m3/s} + 2.76056076101536e-05, !- Rated Water Flow Rate {m3/s} + 1247.82112521983, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {557a6660-8ea9-41c4-a369-3dbc75c421a1}, !- Handle + Zone Outpatient Conference A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {21c15324-fb63-4ca6-accb-fbdcda89740b}, !- Inlet Port + {0c918b1d-2d83-4833-a133-dae771648591}; !- Outlet Port + +OS:Connection, + {21c15324-fb63-4ca6-accb-fbdcda89740b}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 28, !- Outlet Port + {557a6660-8ea9-41c4-a369-3dbc75c421a1}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {5c5c3b9c-9a19-4e47-995d-b0737562c4bb}, !- Handle + Zone Outpatient Conference A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {677cbcee-d750-4f9e-9f42-1474443fe9e0}, !- Inlet Port + {8bb8691e-76be-4904-b865-51db6edac20b}; !- Outlet Port + +OS:Connection, + {0c918b1d-2d83-4833-a133-dae771648591}, !- Handle + {557a6660-8ea9-41c4-a369-3dbc75c421a1}, !- Source Object + 3, !- Outlet Port + {36ff21fa-fdaf-4cce-a919-4706ea24309d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {677cbcee-d750-4f9e-9f42-1474443fe9e0}, !- Handle + {36ff21fa-fdaf-4cce-a919-4706ea24309d}, !- Source Object + 3, !- Outlet Port + {5c5c3b9c-9a19-4e47-995d-b0737562c4bb}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8bb8691e-76be-4904-b865-51db6edac20b}, !- Handle + {5c5c3b9c-9a19-4e47-995d-b0737562c4bb}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 28; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {ff9d6951-e4c9-488d-80dc-2f478fbb5b44}, !- Handle + Zone Outpatient Conference A - Story ground Water-to-Air HP Clg Coil 5kBtu/hr 11.2EER, !- Name + {8a9abfac-e139-4a91-b22c-4972e93e7a49}, !- Water Inlet Node Name + {086c8c5d-b8a3-4f35-ac4a-c4cfc1e3ef7c}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0561898211231893, !- Rated Air Flow Rate {m3/s} + 2.76056076101536e-05, !- Rated Water Flow Rate {m3/s} + 1317.71578798439, !- Rated Total Cooling Capacity {W} + 857.03578203817, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {6795c102-762c-405a-b27b-cafa92069873}, !- Handle + Zone Outpatient Conference A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {bf7687ef-48cc-4417-ba81-9f2864754eea}, !- Inlet Port + {8a9abfac-e139-4a91-b22c-4972e93e7a49}; !- Outlet Port + +OS:Connection, + {bf7687ef-48cc-4417-ba81-9f2864754eea}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 29, !- Outlet Port + {6795c102-762c-405a-b27b-cafa92069873}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {af12c36c-08f4-4ce4-ad70-9052271c78ff}, !- Handle + Zone Outpatient Conference A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {086c8c5d-b8a3-4f35-ac4a-c4cfc1e3ef7c}, !- Inlet Port + {6020f815-a47a-421f-85e4-f6bf45e8a677}; !- Outlet Port + +OS:Connection, + {8a9abfac-e139-4a91-b22c-4972e93e7a49}, !- Handle + {6795c102-762c-405a-b27b-cafa92069873}, !- Source Object + 3, !- Outlet Port + {ff9d6951-e4c9-488d-80dc-2f478fbb5b44}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {086c8c5d-b8a3-4f35-ac4a-c4cfc1e3ef7c}, !- Handle + {ff9d6951-e4c9-488d-80dc-2f478fbb5b44}, !- Source Object + 3, !- Outlet Port + {af12c36c-08f4-4ce4-ad70-9052271c78ff}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6020f815-a47a-421f-85e4-f6bf45e8a677}, !- Handle + {af12c36c-08f4-4ce4-ad70-9052271c78ff}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 29; !- Inlet Port + +OS:Fan:OnOff, + {8185e410-0ec0-4cbd-a486-6646fca8b57d}, !- Handle + Zone Outpatient Conference A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0561898211231893, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {99f168b1-c800-4c36-a2a9-f8193c36a537}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {492668a9-be85-46e7-90b0-880ee96e5d4a}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {99f168b1-c800-4c36-a2a9-f8193c36a537}, !- Handle + Fan On Off Power Curve 12, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {492668a9-be85-46e7-90b0-880ee96e5d4a}, !- Handle + Fan On Off Efficiency Curve 12, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {1f73d072-f4aa-4ecb-a601-c9a7c54e86f6}, !- Handle + Zone Outpatient Conference A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {0a5671be-8032-4826-98da-e015973ffc12}, !- Air Inlet Node Name + {fd769caa-f0bb-47ce-a7f7-bb950aac2d64}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0561898211231893, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0561898211231893, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0561898211231893, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {8185e410-0ec0-4cbd-a486-6646fca8b57d}, !- Supply Air Fan Name + {36ff21fa-fdaf-4cce-a919-4706ea24309d}, !- Heating Coil Name + {ff9d6951-e4c9-488d-80dc-2f478fbb5b44}, !- Cooling Coil Name + {bf0346f4-7e59-4551-93a5-18f42e01c9a1}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {90f70ee7-bcf2-4e33-a7a8-9832c98c0547}, !- Handle + Zone Outpatient Conference A - Story ground WSHP Inlet Air Node, !- Name + {11e071d7-4ad1-49bd-a7aa-92c0cf257f14}, !- Inlet Port + {0a5671be-8032-4826-98da-e015973ffc12}; !- Outlet Port + +OS:Connection, + {11e071d7-4ad1-49bd-a7aa-92c0cf257f14}, !- Handle + {08dcfd3b-7fa5-4651-85ec-78d6c5faba61}, !- Source Object + 2, !- Outlet Port + {90f70ee7-bcf2-4e33-a7a8-9832c98c0547}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0a5671be-8032-4826-98da-e015973ffc12}, !- Handle + {90f70ee7-bcf2-4e33-a7a8-9832c98c0547}, !- Source Object + 3, !- Outlet Port + {1f73d072-f4aa-4ecb-a601-c9a7c54e86f6}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {5028977f-5968-4799-8c93-218e02164d84}, !- Handle + Zone Outpatient Conference A - Story ground WSHP Outlet Air Node, !- Name + {fd769caa-f0bb-47ce-a7f7-bb950aac2d64}, !- Inlet Port + {3e43790b-e0fb-48c1-a8ca-2b3366a67483}; !- Outlet Port + +OS:Connection, + {3e43790b-e0fb-48c1-a8ca-2b3366a67483}, !- Handle + {5028977f-5968-4799-8c93-218e02164d84}, !- Source Object + 3, !- Outlet Port + {d8094532-a9d4-4c02-9d69-22e1cfeb16b0}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {fd769caa-f0bb-47ce-a7f7-bb950aac2d64}, !- Handle + {1f73d072-f4aa-4ecb-a601-c9a7c54e86f6}, !- Source Object + 4, !- Outlet Port + {5028977f-5968-4799-8c93-218e02164d84}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {f4f8ecce-4a2e-4c68-96d6-19c5668eda00}, !- Handle + Zone Outpatient Conference B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 6568.4033665469, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {611667d5-c47a-4472-87f8-6a56b1040841}, !- Handle + Zone Outpatient Conference B - Story ground Water-to-Air HP Htg Coil 38 Clg kBtu/hr 4.2COPH, !- Name + {bb9a02b0-6768-4d9e-b0f3-f452a68a9b82}, !- Water Inlet Node Name + {ada7ed70-3f4e-4db6-bd7d-1c9a9a5e787d}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.45067536801327, !- Rated Air Flow Rate {m3/s} + 0.000222029925591544, !- Rated Water Flow Rate {m3/s} + 10036.135972686, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {7dbd4bce-b0e4-4e73-a02b-0f0823b8a0b2}, !- Handle + Zone Outpatient Conference B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {97226e8d-c407-4c9a-8431-f453875a9980}, !- Inlet Port + {bb9a02b0-6768-4d9e-b0f3-f452a68a9b82}; !- Outlet Port + +OS:Connection, + {97226e8d-c407-4c9a-8431-f453875a9980}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 30, !- Outlet Port + {7dbd4bce-b0e4-4e73-a02b-0f0823b8a0b2}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {f349544d-ac1a-4d05-9a48-14d71918f382}, !- Handle + Zone Outpatient Conference B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {ada7ed70-3f4e-4db6-bd7d-1c9a9a5e787d}, !- Inlet Port + {1d3f45a0-57ab-413d-bc8e-295a83438240}; !- Outlet Port + +OS:Connection, + {bb9a02b0-6768-4d9e-b0f3-f452a68a9b82}, !- Handle + {7dbd4bce-b0e4-4e73-a02b-0f0823b8a0b2}, !- Source Object + 3, !- Outlet Port + {611667d5-c47a-4472-87f8-6a56b1040841}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ada7ed70-3f4e-4db6-bd7d-1c9a9a5e787d}, !- Handle + {611667d5-c47a-4472-87f8-6a56b1040841}, !- Source Object + 3, !- Outlet Port + {f349544d-ac1a-4d05-9a48-14d71918f382}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1d3f45a0-57ab-413d-bc8e-295a83438240}, !- Handle + {f349544d-ac1a-4d05-9a48-14d71918f382}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 30; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {4f481a0a-f73c-4094-a626-c5cd3fcf5cf4}, !- Handle + Zone Outpatient Conference B - Story ground Water-to-Air HP Clg Coil 38kBtu/hr 12.0EER, !- Name + {20d467be-1cde-4111-af86-22cbe4bd75a4}, !- Water Inlet Node Name + {82b88ba0-170b-42ad-b17e-7373f60da889}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.45067536801327, !- Rated Air Flow Rate {m3/s} + 0.000222029925591544, !- Rated Water Flow Rate {m3/s} + 10598.2937412096, !- Rated Total Cooling Capacity {W} + 6889.05929388743, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {d3c45f22-0834-43f3-9932-bf2461418b93}, !- Handle + Zone Outpatient Conference B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {e92456dc-9fbb-43f0-ac3e-c9ae19951cc1}, !- Inlet Port + {20d467be-1cde-4111-af86-22cbe4bd75a4}; !- Outlet Port + +OS:Connection, + {e92456dc-9fbb-43f0-ac3e-c9ae19951cc1}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 31, !- Outlet Port + {d3c45f22-0834-43f3-9932-bf2461418b93}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {155a0b76-fa87-41ee-9814-6cb5eceeb7e9}, !- Handle + Zone Outpatient Conference B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {82b88ba0-170b-42ad-b17e-7373f60da889}, !- Inlet Port + {1fc5cc4d-395c-487f-b1f1-3012895922ee}; !- Outlet Port + +OS:Connection, + {20d467be-1cde-4111-af86-22cbe4bd75a4}, !- Handle + {d3c45f22-0834-43f3-9932-bf2461418b93}, !- Source Object + 3, !- Outlet Port + {4f481a0a-f73c-4094-a626-c5cd3fcf5cf4}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {82b88ba0-170b-42ad-b17e-7373f60da889}, !- Handle + {4f481a0a-f73c-4094-a626-c5cd3fcf5cf4}, !- Source Object + 3, !- Outlet Port + {155a0b76-fa87-41ee-9814-6cb5eceeb7e9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1fc5cc4d-395c-487f-b1f1-3012895922ee}, !- Handle + {155a0b76-fa87-41ee-9814-6cb5eceeb7e9}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 31; !- Inlet Port + +OS:Fan:OnOff, + {937a2d54-54a4-4c5d-b08b-b8389e0670c6}, !- Handle + Zone Outpatient Conference B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.45067536801327, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {02771555-3300-47a3-a155-26cd82d0b1a5}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {576ada56-d90a-4a94-9d80-64ed71699d0c}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {02771555-3300-47a3-a155-26cd82d0b1a5}, !- Handle + Fan On Off Power Curve 13, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {576ada56-d90a-4a94-9d80-64ed71699d0c}, !- Handle + Fan On Off Efficiency Curve 13, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {937a8fa9-5553-46a3-9734-bf40a723fe52}, !- Handle + Zone Outpatient Conference B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {9b9d13a9-349f-4d0e-b5e9-6da2b59727de}, !- Air Inlet Node Name + {cf89549c-9997-4f28-83eb-1ef672868353}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.45067536801327, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.45067536801327, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.45067536801327, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {937a2d54-54a4-4c5d-b08b-b8389e0670c6}, !- Supply Air Fan Name + {611667d5-c47a-4472-87f8-6a56b1040841}, !- Heating Coil Name + {4f481a0a-f73c-4094-a626-c5cd3fcf5cf4}, !- Cooling Coil Name + {f4f8ecce-4a2e-4c68-96d6-19c5668eda00}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {069c6432-e84e-4d98-9b2c-2aee7ec2f3c4}, !- Handle + Zone Outpatient Conference B - Story ground WSHP Inlet Air Node, !- Name + {20ac3eab-c6b0-4a7c-8192-31d34cab252a}, !- Inlet Port + {9b9d13a9-349f-4d0e-b5e9-6da2b59727de}; !- Outlet Port + +OS:Connection, + {20ac3eab-c6b0-4a7c-8192-31d34cab252a}, !- Handle + {4c3b582a-5d34-4d82-83cf-67dd69e5f74e}, !- Source Object + 2, !- Outlet Port + {069c6432-e84e-4d98-9b2c-2aee7ec2f3c4}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9b9d13a9-349f-4d0e-b5e9-6da2b59727de}, !- Handle + {069c6432-e84e-4d98-9b2c-2aee7ec2f3c4}, !- Source Object + 3, !- Outlet Port + {937a8fa9-5553-46a3-9734-bf40a723fe52}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {0b01d4cd-1827-40a0-96e0-5b323c61bec0}, !- Handle + Zone Outpatient Conference B - Story ground WSHP Outlet Air Node, !- Name + {cf89549c-9997-4f28-83eb-1ef672868353}, !- Inlet Port + {e1c3d8f3-a2c0-48d0-a319-d67f2457b142}; !- Outlet Port + +OS:Connection, + {e1c3d8f3-a2c0-48d0-a319-d67f2457b142}, !- Handle + {0b01d4cd-1827-40a0-96e0-5b323c61bec0}, !- Source Object + 3, !- Outlet Port + {6099d2ce-cf6b-4005-bd57-cd4a03421938}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {cf89549c-9997-4f28-83eb-1ef672868353}, !- Handle + {937a8fa9-5553-46a3-9734-bf40a723fe52}, !- Source Object + 4, !- Outlet Port + {0b01d4cd-1827-40a0-96e0-5b323c61bec0}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {5b4c68fb-2760-4760-ad16-542cb3fe6d7b}, !- Handle + Zone Outpatient Conference C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 807.672150172894, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {2689782c-5673-44c7-a8b2-0e736e71ae25}, !- Handle + Zone Outpatient Conference C - Story ground Water-to-Air HP Htg Coil 5 Clg kBtu/hr 4.2COPH, !- Name + {590f3950-b074-45ea-8790-008875e90b67}, !- Water Inlet Node Name + {7d464808-9a03-4e49-8248-ff236c7c0a11}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0561898211276622, !- Rated Air Flow Rate {m3/s} + 2.76056076118176e-05, !- Rated Water Flow Rate {m3/s} + 1247.82112529505, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {6c473b35-91fb-4234-8489-42669455549a}, !- Handle + Zone Outpatient Conference C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {32b1473d-8cea-4565-9f36-92fb9adfcf3c}, !- Inlet Port + {590f3950-b074-45ea-8790-008875e90b67}; !- Outlet Port + +OS:Connection, + {32b1473d-8cea-4565-9f36-92fb9adfcf3c}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 32, !- Outlet Port + {6c473b35-91fb-4234-8489-42669455549a}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {4d22765f-8e9f-4ad3-aa2c-7fe1aea11d40}, !- Handle + Zone Outpatient Conference C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {7d464808-9a03-4e49-8248-ff236c7c0a11}, !- Inlet Port + {bc734f2e-303c-4cac-8328-7b8a35d14a02}; !- Outlet Port + +OS:Connection, + {590f3950-b074-45ea-8790-008875e90b67}, !- Handle + {6c473b35-91fb-4234-8489-42669455549a}, !- Source Object + 3, !- Outlet Port + {2689782c-5673-44c7-a8b2-0e736e71ae25}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7d464808-9a03-4e49-8248-ff236c7c0a11}, !- Handle + {2689782c-5673-44c7-a8b2-0e736e71ae25}, !- Source Object + 3, !- Outlet Port + {4d22765f-8e9f-4ad3-aa2c-7fe1aea11d40}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bc734f2e-303c-4cac-8328-7b8a35d14a02}, !- Handle + {4d22765f-8e9f-4ad3-aa2c-7fe1aea11d40}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 32; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {ffd4b658-2fed-4747-90f7-ecfcb7a6d7c7}, !- Handle + Zone Outpatient Conference C - Story ground Water-to-Air HP Clg Coil 5kBtu/hr 11.2EER, !- Name + {6212e6e0-cde5-4d6c-a2f8-8b84bd908ebb}, !- Water Inlet Node Name + {6a3da585-8506-45bb-9ee5-2d75b3314480}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0561898211276622, !- Rated Air Flow Rate {m3/s} + 2.76056076118176e-05, !- Rated Water Flow Rate {m3/s} + 1317.71578806382, !- Rated Total Cooling Capacity {W} + 857.035782106372, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {b9016739-55ef-4eee-b9de-c5f5b203b5c2}, !- Handle + Zone Outpatient Conference C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {b671d40b-ce90-4500-ad4a-1dcd0b99c1fa}, !- Inlet Port + {6212e6e0-cde5-4d6c-a2f8-8b84bd908ebb}; !- Outlet Port + +OS:Connection, + {b671d40b-ce90-4500-ad4a-1dcd0b99c1fa}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 33, !- Outlet Port + {b9016739-55ef-4eee-b9de-c5f5b203b5c2}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {5d65d314-9297-4f65-a133-01916f819f40}, !- Handle + Zone Outpatient Conference C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {6a3da585-8506-45bb-9ee5-2d75b3314480}, !- Inlet Port + {2322ee7c-080c-4e1c-82d1-4c14a5af8840}; !- Outlet Port + +OS:Connection, + {6212e6e0-cde5-4d6c-a2f8-8b84bd908ebb}, !- Handle + {b9016739-55ef-4eee-b9de-c5f5b203b5c2}, !- Source Object + 3, !- Outlet Port + {ffd4b658-2fed-4747-90f7-ecfcb7a6d7c7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6a3da585-8506-45bb-9ee5-2d75b3314480}, !- Handle + {ffd4b658-2fed-4747-90f7-ecfcb7a6d7c7}, !- Source Object + 3, !- Outlet Port + {5d65d314-9297-4f65-a133-01916f819f40}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2322ee7c-080c-4e1c-82d1-4c14a5af8840}, !- Handle + {5d65d314-9297-4f65-a133-01916f819f40}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 33; !- Inlet Port + +OS:Fan:OnOff, + {eb403991-c9ea-4e14-85cc-3ae3644bdab3}, !- Handle + Zone Outpatient Conference C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0561898211276622, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {5b4dccf2-cb3c-4df1-bf52-b0d6009986ae}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {2f9390c7-b5a7-4b2b-a0a9-21e25f1a54ee}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {5b4dccf2-cb3c-4df1-bf52-b0d6009986ae}, !- Handle + Fan On Off Power Curve 14, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {2f9390c7-b5a7-4b2b-a0a9-21e25f1a54ee}, !- Handle + Fan On Off Efficiency Curve 14, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {b4ec4a33-af4e-48de-8f03-bd9de2627f5a}, !- Handle + Zone Outpatient Conference C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {53cdce86-4294-477b-b109-7f3869c33d7f}, !- Air Inlet Node Name + {151cc94a-dd26-467e-adf0-2277080fbff7}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0561898211276622, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0561898211276622, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0561898211276622, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {eb403991-c9ea-4e14-85cc-3ae3644bdab3}, !- Supply Air Fan Name + {2689782c-5673-44c7-a8b2-0e736e71ae25}, !- Heating Coil Name + {ffd4b658-2fed-4747-90f7-ecfcb7a6d7c7}, !- Cooling Coil Name + {5b4c68fb-2760-4760-ad16-542cb3fe6d7b}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {cea8ffe8-57fe-410c-bb4b-d96612dafad7}, !- Handle + Zone Outpatient Conference C - Story ground WSHP Inlet Air Node, !- Name + {9cfe01b8-4926-4a9d-9fd3-cc1d20b7882c}, !- Inlet Port + {53cdce86-4294-477b-b109-7f3869c33d7f}; !- Outlet Port + +OS:Connection, + {9cfe01b8-4926-4a9d-9fd3-cc1d20b7882c}, !- Handle + {df207a82-c629-43fc-97dc-f03ab6265394}, !- Source Object + 2, !- Outlet Port + {cea8ffe8-57fe-410c-bb4b-d96612dafad7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {53cdce86-4294-477b-b109-7f3869c33d7f}, !- Handle + {cea8ffe8-57fe-410c-bb4b-d96612dafad7}, !- Source Object + 3, !- Outlet Port + {b4ec4a33-af4e-48de-8f03-bd9de2627f5a}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {cf53aabb-9c38-43a9-8491-a5a019c9c44a}, !- Handle + Zone Outpatient Conference C - Story ground WSHP Outlet Air Node, !- Name + {151cc94a-dd26-467e-adf0-2277080fbff7}, !- Inlet Port + {faf7a613-022f-4147-a55d-fa12dd5dfef4}; !- Outlet Port + +OS:Connection, + {faf7a613-022f-4147-a55d-fa12dd5dfef4}, !- Handle + {cf53aabb-9c38-43a9-8491-a5a019c9c44a}, !- Source Object + 3, !- Outlet Port + {eca4e934-9ddb-4181-bed5-89b7c4f37a45}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {151cc94a-dd26-467e-adf0-2277080fbff7}, !- Handle + {b4ec4a33-af4e-48de-8f03-bd9de2627f5a}, !- Source Object + 4, !- Outlet Port + {cf53aabb-9c38-43a9-8491-a5a019c9c44a}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {5c691a75-7f86-42c1-8309-bf9b4726d776}, !- Handle + Zone Outpatient DressingRoom A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 229.289977394092, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {96c0904c-6e86-41f9-aa8b-574265e481fc}, !- Handle + Zone Outpatient DressingRoom A - Story ground Water-to-Air HP Htg Coil 1 Clg kBtu/hr 4.2COPH, !- Name + {846c12a1-62d7-4572-b10e-27cf379baacd}, !- Water Inlet Node Name + {c28c8e92-296e-497a-ba67-3c14be177ed5}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.00990394259104223, !- Rated Air Flow Rate {m3/s} + 3.6569003078885e-06, !- Rated Water Flow Rate {m3/s} + 165.298207576051, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {ef4b7aa5-0d58-455d-9c04-9107207c1a3b}, !- Handle + Zone Outpatient DressingRoom A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {6924732d-b4b5-4cfe-8030-a9ef37d8dad4}, !- Inlet Port + {846c12a1-62d7-4572-b10e-27cf379baacd}; !- Outlet Port + +OS:Connection, + {6924732d-b4b5-4cfe-8030-a9ef37d8dad4}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 34, !- Outlet Port + {ef4b7aa5-0d58-455d-9c04-9107207c1a3b}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {451e50df-bf30-4028-8c31-0b675e25ec6f}, !- Handle + Zone Outpatient DressingRoom A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {c28c8e92-296e-497a-ba67-3c14be177ed5}, !- Inlet Port + {caa9a66f-3770-4835-9021-a40a7c0ea3bf}; !- Outlet Port + +OS:Connection, + {846c12a1-62d7-4572-b10e-27cf379baacd}, !- Handle + {ef4b7aa5-0d58-455d-9c04-9107207c1a3b}, !- Source Object + 3, !- Outlet Port + {96c0904c-6e86-41f9-aa8b-574265e481fc}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c28c8e92-296e-497a-ba67-3c14be177ed5}, !- Handle + {96c0904c-6e86-41f9-aa8b-574265e481fc}, !- Source Object + 3, !- Outlet Port + {451e50df-bf30-4028-8c31-0b675e25ec6f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {caa9a66f-3770-4835-9021-a40a7c0ea3bf}, !- Handle + {451e50df-bf30-4028-8c31-0b675e25ec6f}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 34; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {6e5f7d10-dd88-4d7d-90f0-96dd072c745a}, !- Handle + Zone Outpatient DressingRoom A - Story ground Water-to-Air HP Clg Coil 1kBtu/hr 11.2EER, !- Name + {484222c0-93b0-43ef-a233-00f0e0302c4e}, !- Water Inlet Node Name + {bdd67cd9-edda-41d5-be61-cf4c1cf30d48}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.00990394259104223, !- Rated Air Flow Rate {m3/s} + 3.6569003078885e-06, !- Rated Water Flow Rate {m3/s} + 174.55711675831, !- Rated Total Cooling Capacity {W} + 128.203991763665, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {0da78d4e-b93c-4034-9f29-2c8fd64e9eef}, !- Handle + Zone Outpatient DressingRoom A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {1cc08ae6-f159-4855-a185-f141b3f5389c}, !- Inlet Port + {484222c0-93b0-43ef-a233-00f0e0302c4e}; !- Outlet Port + +OS:Connection, + {1cc08ae6-f159-4855-a185-f141b3f5389c}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 35, !- Outlet Port + {0da78d4e-b93c-4034-9f29-2c8fd64e9eef}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {41fbfe80-4095-4959-8c2e-eec9e56b193e}, !- Handle + Zone Outpatient DressingRoom A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {bdd67cd9-edda-41d5-be61-cf4c1cf30d48}, !- Inlet Port + {a48da232-0f65-43d2-9d08-6f1e21d9a43b}; !- Outlet Port + +OS:Connection, + {484222c0-93b0-43ef-a233-00f0e0302c4e}, !- Handle + {0da78d4e-b93c-4034-9f29-2c8fd64e9eef}, !- Source Object + 3, !- Outlet Port + {6e5f7d10-dd88-4d7d-90f0-96dd072c745a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bdd67cd9-edda-41d5-be61-cf4c1cf30d48}, !- Handle + {6e5f7d10-dd88-4d7d-90f0-96dd072c745a}, !- Source Object + 3, !- Outlet Port + {41fbfe80-4095-4959-8c2e-eec9e56b193e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a48da232-0f65-43d2-9d08-6f1e21d9a43b}, !- Handle + {41fbfe80-4095-4959-8c2e-eec9e56b193e}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 35; !- Inlet Port + +OS:Fan:OnOff, + {5dc161f2-29fa-4ee4-a941-2694fe815f48}, !- Handle + Zone Outpatient DressingRoom A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.00990394259104223, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {77aa2254-3241-4c63-b561-db575c62f465}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {7b309b67-cf7b-43af-95cd-0fbc134a7ca7}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {77aa2254-3241-4c63-b561-db575c62f465}, !- Handle + Fan On Off Power Curve 15, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {7b309b67-cf7b-43af-95cd-0fbc134a7ca7}, !- Handle + Fan On Off Efficiency Curve 15, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {745b3d59-c161-4e76-be5f-6ae567af0dec}, !- Handle + Zone Outpatient DressingRoom A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {542d4521-f10e-44b3-9a70-1fd1d6c7f272}, !- Air Inlet Node Name + {83fac9c7-a181-45e2-be8a-098de9ad01b0}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.00990394259104223, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.00990394259104223, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.00990394259104223, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {5dc161f2-29fa-4ee4-a941-2694fe815f48}, !- Supply Air Fan Name + {96c0904c-6e86-41f9-aa8b-574265e481fc}, !- Heating Coil Name + {6e5f7d10-dd88-4d7d-90f0-96dd072c745a}, !- Cooling Coil Name + {5c691a75-7f86-42c1-8309-bf9b4726d776}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {43e72fc2-581e-487b-a2bc-044460cd3b53}, !- Handle + Zone Outpatient DressingRoom A - Story ground WSHP Inlet Air Node, !- Name + {3188afb2-6d40-4430-a5ed-60f88aed9303}, !- Inlet Port + {542d4521-f10e-44b3-9a70-1fd1d6c7f272}; !- Outlet Port + +OS:Connection, + {3188afb2-6d40-4430-a5ed-60f88aed9303}, !- Handle + {e6faf9c1-b5f7-4183-a1c2-91f74aa18485}, !- Source Object + 2, !- Outlet Port + {43e72fc2-581e-487b-a2bc-044460cd3b53}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {542d4521-f10e-44b3-9a70-1fd1d6c7f272}, !- Handle + {43e72fc2-581e-487b-a2bc-044460cd3b53}, !- Source Object + 3, !- Outlet Port + {745b3d59-c161-4e76-be5f-6ae567af0dec}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {17818dfb-6cf3-4dc3-814b-5c33d543b357}, !- Handle + Zone Outpatient DressingRoom A - Story ground WSHP Outlet Air Node, !- Name + {83fac9c7-a181-45e2-be8a-098de9ad01b0}, !- Inlet Port + {52cf622c-2f76-44ca-a289-2f2abc942ebc}; !- Outlet Port + +OS:Connection, + {52cf622c-2f76-44ca-a289-2f2abc942ebc}, !- Handle + {17818dfb-6cf3-4dc3-814b-5c33d543b357}, !- Source Object + 3, !- Outlet Port + {1888e77d-428c-42d1-a754-d3eb3ea20582}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {83fac9c7-a181-45e2-be8a-098de9ad01b0}, !- Handle + {745b3d59-c161-4e76-be5f-6ae567af0dec}, !- Source Object + 4, !- Outlet Port + {17818dfb-6cf3-4dc3-814b-5c33d543b357}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {2b09e50b-dcee-4f0c-b883-af3dc0857f45}, !- Handle + Zone Outpatient DressingRoom B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 1797.69086911401, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {26b7bd7c-64fe-4474-8d6d-7c9eba313f8b}, !- Handle + Zone Outpatient DressingRoom B - Story ground Water-to-Air HP Htg Coil 4 Clg kBtu/hr 4.2COPH, !- Name + {2fa9acae-ccf4-40c0-863d-d6a0384f2995}, !- Water Inlet Node Name + {87c9e495-c316-4651-b222-106af3fc2736}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0776486366857271, !- Rated Air Flow Rate {m3/s} + 2.86719921978368e-05, !- Rated Water Flow Rate {m3/s} + 1296.02354970226, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {98c01b0f-579f-4cd0-b768-d00505e08a8d}, !- Handle + Zone Outpatient DressingRoom B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {f71be51a-9abf-42f7-927c-3f0bf8fba036}, !- Inlet Port + {2fa9acae-ccf4-40c0-863d-d6a0384f2995}; !- Outlet Port + +OS:Connection, + {f71be51a-9abf-42f7-927c-3f0bf8fba036}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 36, !- Outlet Port + {98c01b0f-579f-4cd0-b768-d00505e08a8d}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {8ebbbe26-cda1-4e8a-b2b0-4a63e30ed491}, !- Handle + Zone Outpatient DressingRoom B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {87c9e495-c316-4651-b222-106af3fc2736}, !- Inlet Port + {2e516f8c-376f-477e-a1ba-658b3eb47513}; !- Outlet Port + +OS:Connection, + {2fa9acae-ccf4-40c0-863d-d6a0384f2995}, !- Handle + {98c01b0f-579f-4cd0-b768-d00505e08a8d}, !- Source Object + 3, !- Outlet Port + {26b7bd7c-64fe-4474-8d6d-7c9eba313f8b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {87c9e495-c316-4651-b222-106af3fc2736}, !- Handle + {26b7bd7c-64fe-4474-8d6d-7c9eba313f8b}, !- Source Object + 3, !- Outlet Port + {8ebbbe26-cda1-4e8a-b2b0-4a63e30ed491}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2e516f8c-376f-477e-a1ba-658b3eb47513}, !- Handle + {8ebbbe26-cda1-4e8a-b2b0-4a63e30ed491}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 36; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {c6b70d96-1d8d-4d38-ad9f-fe789bdeeeb0}, !- Handle + Zone Outpatient DressingRoom B - Story ground Water-to-Air HP Clg Coil 4kBtu/hr 11.2EER, !- Name + {5b985b28-3c61-4e26-a457-740e5179a271}, !- Water Inlet Node Name + {f0e77b34-e609-430f-bd46-9a9bafc86325}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0776486366857271, !- Rated Air Flow Rate {m3/s} + 2.86719921978368e-05, !- Rated Water Flow Rate {m3/s} + 1368.61819256456, !- Rated Total Cooling Capacity {W} + 1006.23468223503, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {ea89a6f8-f2d5-46d9-a07c-099223413dbc}, !- Handle + Zone Outpatient DressingRoom B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {34ea6475-4256-4390-86a5-e3717e66517c}, !- Inlet Port + {5b985b28-3c61-4e26-a457-740e5179a271}; !- Outlet Port + +OS:Connection, + {34ea6475-4256-4390-86a5-e3717e66517c}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 37, !- Outlet Port + {ea89a6f8-f2d5-46d9-a07c-099223413dbc}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {9fef80f3-5563-4252-a14a-1637ef7f3cc6}, !- Handle + Zone Outpatient DressingRoom B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {f0e77b34-e609-430f-bd46-9a9bafc86325}, !- Inlet Port + {ebc65f40-2b1c-4790-b954-f769c94e0607}; !- Outlet Port + +OS:Connection, + {5b985b28-3c61-4e26-a457-740e5179a271}, !- Handle + {ea89a6f8-f2d5-46d9-a07c-099223413dbc}, !- Source Object + 3, !- Outlet Port + {c6b70d96-1d8d-4d38-ad9f-fe789bdeeeb0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f0e77b34-e609-430f-bd46-9a9bafc86325}, !- Handle + {c6b70d96-1d8d-4d38-ad9f-fe789bdeeeb0}, !- Source Object + 3, !- Outlet Port + {9fef80f3-5563-4252-a14a-1637ef7f3cc6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ebc65f40-2b1c-4790-b954-f769c94e0607}, !- Handle + {9fef80f3-5563-4252-a14a-1637ef7f3cc6}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 37; !- Inlet Port + +OS:Fan:OnOff, + {b2ffc5ba-2c64-453e-a24f-eafd93590814}, !- Handle + Zone Outpatient DressingRoom B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0776486366857271, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {dafe0a3e-6484-4596-83a6-3e6106f90069}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {c8679fce-7108-44e9-a027-6ba2b4342f63}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {dafe0a3e-6484-4596-83a6-3e6106f90069}, !- Handle + Fan On Off Power Curve 16, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {c8679fce-7108-44e9-a027-6ba2b4342f63}, !- Handle + Fan On Off Efficiency Curve 16, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {cd2fc895-2edc-47bd-89e7-e540caf1f042}, !- Handle + Zone Outpatient DressingRoom B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {3f7dc997-501f-4234-bfad-61af884178c5}, !- Air Inlet Node Name + {6df3c11b-0368-42d1-ae54-480351810a7d}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0776486366857271, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0776486366857271, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0776486366857271, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {b2ffc5ba-2c64-453e-a24f-eafd93590814}, !- Supply Air Fan Name + {26b7bd7c-64fe-4474-8d6d-7c9eba313f8b}, !- Heating Coil Name + {c6b70d96-1d8d-4d38-ad9f-fe789bdeeeb0}, !- Cooling Coil Name + {2b09e50b-dcee-4f0c-b883-af3dc0857f45}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {d719b563-8ea3-4d33-aef8-3ae36bd99f41}, !- Handle + Zone Outpatient DressingRoom B - Story ground WSHP Inlet Air Node, !- Name + {27ef7b83-13b4-4e76-ae0f-d523d23f1b7a}, !- Inlet Port + {3f7dc997-501f-4234-bfad-61af884178c5}; !- Outlet Port + +OS:Connection, + {27ef7b83-13b4-4e76-ae0f-d523d23f1b7a}, !- Handle + {532e0dee-b083-4064-a83b-b67179ff5c2a}, !- Source Object + 2, !- Outlet Port + {d719b563-8ea3-4d33-aef8-3ae36bd99f41}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3f7dc997-501f-4234-bfad-61af884178c5}, !- Handle + {d719b563-8ea3-4d33-aef8-3ae36bd99f41}, !- Source Object + 3, !- Outlet Port + {cd2fc895-2edc-47bd-89e7-e540caf1f042}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {ba51fe94-020b-47e6-af11-0b5f86aa493f}, !- Handle + Zone Outpatient DressingRoom B - Story ground WSHP Outlet Air Node, !- Name + {6df3c11b-0368-42d1-ae54-480351810a7d}, !- Inlet Port + {d12652b6-5a17-4b28-9ba9-8e7b17e11423}; !- Outlet Port + +OS:Connection, + {d12652b6-5a17-4b28-9ba9-8e7b17e11423}, !- Handle + {ba51fe94-020b-47e6-af11-0b5f86aa493f}, !- Source Object + 3, !- Outlet Port + {4ed58ed7-fb25-4149-9d2e-3ec685b14c84}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {6df3c11b-0368-42d1-ae54-480351810a7d}, !- Handle + {cd2fc895-2edc-47bd-89e7-e540caf1f042}, !- Source Object + 4, !- Outlet Port + {ba51fe94-020b-47e6-af11-0b5f86aa493f}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {d46f7e26-74b1-484c-b896-cbcfc4402df0}, !- Handle + Zone Outpatient DressingRoom C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 229.289977394067, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {62c769a8-a3e5-464f-9dbf-aaadff3a60e6}, !- Handle + Zone Outpatient DressingRoom C - Story ground Water-to-Air HP Htg Coil 1 Clg kBtu/hr 4.2COPH, !- Name + {7e17aa8e-4be2-485d-819b-04a6095143b2}, !- Water Inlet Node Name + {2f3e15e0-5bca-4796-979b-a7f7dcc1fa8f}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.00990394259104115, !- Rated Air Flow Rate {m3/s} + 3.6569003078881e-06, !- Rated Water Flow Rate {m3/s} + 165.298207576033, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {6d937435-e4d2-46bd-b79e-f0615198d02d}, !- Handle + Zone Outpatient DressingRoom C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {5b21bdd9-ba43-4c46-8af7-3150b01ff365}, !- Inlet Port + {7e17aa8e-4be2-485d-819b-04a6095143b2}; !- Outlet Port + +OS:Connection, + {5b21bdd9-ba43-4c46-8af7-3150b01ff365}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 38, !- Outlet Port + {6d937435-e4d2-46bd-b79e-f0615198d02d}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {a7a9adfb-82a2-4c87-ab3d-98f254eaedee}, !- Handle + Zone Outpatient DressingRoom C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {2f3e15e0-5bca-4796-979b-a7f7dcc1fa8f}, !- Inlet Port + {a425a7bb-e4b6-499a-8230-a2ddd2c0e5c5}; !- Outlet Port + +OS:Connection, + {7e17aa8e-4be2-485d-819b-04a6095143b2}, !- Handle + {6d937435-e4d2-46bd-b79e-f0615198d02d}, !- Source Object + 3, !- Outlet Port + {62c769a8-a3e5-464f-9dbf-aaadff3a60e6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2f3e15e0-5bca-4796-979b-a7f7dcc1fa8f}, !- Handle + {62c769a8-a3e5-464f-9dbf-aaadff3a60e6}, !- Source Object + 3, !- Outlet Port + {a7a9adfb-82a2-4c87-ab3d-98f254eaedee}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a425a7bb-e4b6-499a-8230-a2ddd2c0e5c5}, !- Handle + {a7a9adfb-82a2-4c87-ab3d-98f254eaedee}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 38; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {3bdf28e7-7a85-44ce-a152-d37878c2d3c6}, !- Handle + Zone Outpatient DressingRoom C - Story ground Water-to-Air HP Clg Coil 1kBtu/hr 11.2EER, !- Name + {271c923f-3cf4-464d-941d-851ea37d4e07}, !- Water Inlet Node Name + {3b4073f4-7a4f-441b-b76d-e40cd318fadd}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.00990394259104115, !- Rated Air Flow Rate {m3/s} + 3.6569003078881e-06, !- Rated Water Flow Rate {m3/s} + 174.557116758291, !- Rated Total Cooling Capacity {W} + 128.204021813558, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {5e378934-29f0-49ba-95b1-6926f156f1af}, !- Handle + Zone Outpatient DressingRoom C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {14dca58e-ae0f-4b34-8e8d-2d94315789ea}, !- Inlet Port + {271c923f-3cf4-464d-941d-851ea37d4e07}; !- Outlet Port + +OS:Connection, + {14dca58e-ae0f-4b34-8e8d-2d94315789ea}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 39, !- Outlet Port + {5e378934-29f0-49ba-95b1-6926f156f1af}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {df808bd2-1884-4a02-9852-5aa632cb4be9}, !- Handle + Zone Outpatient DressingRoom C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {3b4073f4-7a4f-441b-b76d-e40cd318fadd}, !- Inlet Port + {c0e2e6bc-314b-4e96-9ccd-e9af17a89745}; !- Outlet Port + +OS:Connection, + {271c923f-3cf4-464d-941d-851ea37d4e07}, !- Handle + {5e378934-29f0-49ba-95b1-6926f156f1af}, !- Source Object + 3, !- Outlet Port + {3bdf28e7-7a85-44ce-a152-d37878c2d3c6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3b4073f4-7a4f-441b-b76d-e40cd318fadd}, !- Handle + {3bdf28e7-7a85-44ce-a152-d37878c2d3c6}, !- Source Object + 3, !- Outlet Port + {df808bd2-1884-4a02-9852-5aa632cb4be9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c0e2e6bc-314b-4e96-9ccd-e9af17a89745}, !- Handle + {df808bd2-1884-4a02-9852-5aa632cb4be9}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 39; !- Inlet Port + +OS:Fan:OnOff, + {12b8aa88-e251-421b-9657-04afab5b25fe}, !- Handle + Zone Outpatient DressingRoom C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.00990394259104115, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {80368051-bf0b-4e82-ae55-20a7b1a2293a}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {43d52bab-37d7-4ff1-885e-3ff7d0c3c812}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {80368051-bf0b-4e82-ae55-20a7b1a2293a}, !- Handle + Fan On Off Power Curve 17, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {43d52bab-37d7-4ff1-885e-3ff7d0c3c812}, !- Handle + Fan On Off Efficiency Curve 17, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {134ab194-1381-40e8-94dd-f19b2160eb76}, !- Handle + Zone Outpatient DressingRoom C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {563e6194-089e-4491-a680-940436ecf0d3}, !- Air Inlet Node Name + {a36667ac-c0fb-4dc8-9211-58e9ebf93bb0}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.00990394259104115, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.00990394259104115, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.00990394259104115, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {12b8aa88-e251-421b-9657-04afab5b25fe}, !- Supply Air Fan Name + {62c769a8-a3e5-464f-9dbf-aaadff3a60e6}, !- Heating Coil Name + {3bdf28e7-7a85-44ce-a152-d37878c2d3c6}, !- Cooling Coil Name + {d46f7e26-74b1-484c-b896-cbcfc4402df0}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {eaff08d4-e2a1-4e9f-a756-29bc352c67ec}, !- Handle + Zone Outpatient DressingRoom C - Story ground WSHP Inlet Air Node, !- Name + {b54f458b-1d61-4e5f-ba07-28ca8bcd8715}, !- Inlet Port + {563e6194-089e-4491-a680-940436ecf0d3}; !- Outlet Port + +OS:Connection, + {b54f458b-1d61-4e5f-ba07-28ca8bcd8715}, !- Handle + {2ee084ab-3c57-4ec8-90f4-a3d0ff72af81}, !- Source Object + 2, !- Outlet Port + {eaff08d4-e2a1-4e9f-a756-29bc352c67ec}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {563e6194-089e-4491-a680-940436ecf0d3}, !- Handle + {eaff08d4-e2a1-4e9f-a756-29bc352c67ec}, !- Source Object + 3, !- Outlet Port + {134ab194-1381-40e8-94dd-f19b2160eb76}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {7eb702c5-6b8b-44b9-b3a9-517d0ec3e97e}, !- Handle + Zone Outpatient DressingRoom C - Story ground WSHP Outlet Air Node, !- Name + {a36667ac-c0fb-4dc8-9211-58e9ebf93bb0}, !- Inlet Port + {9fc25b2a-9907-4a22-8f7a-7c7b1c9f182b}; !- Outlet Port + +OS:Connection, + {9fc25b2a-9907-4a22-8f7a-7c7b1c9f182b}, !- Handle + {7eb702c5-6b8b-44b9-b3a9-517d0ec3e97e}, !- Source Object + 3, !- Outlet Port + {597c798b-1791-4fd7-a153-75782f8330ac}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {a36667ac-c0fb-4dc8-9211-58e9ebf93bb0}, !- Handle + {134ab194-1381-40e8-94dd-f19b2160eb76}, !- Source Object + 4, !- Outlet Port + {7eb702c5-6b8b-44b9-b3a9-517d0ec3e97e}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {cf20e604-6629-4a3c-b82f-2cbd88ad2ddf}, !- Handle + Zone Outpatient Elec/MechRoom A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 429.115090936364, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {f03d1e23-1fa4-42f6-b97d-cd7c8b13758d}, !- Handle + Zone Outpatient Elec/MechRoom A - Story ground Water-to-Air HP Htg Coil 5 Clg kBtu/hr 4.2COPH, !- Name + {7fcc8017-be5e-48ba-a629-5cfefe0a43d8}, !- Water Inlet Node Name + {545e5262-6a40-4437-b133-e05dba29c347}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.111325127875165, !- Rated Air Flow Rate {m3/s} + 3.42955294739409e-05, !- Rated Water Flow Rate {m3/s} + 1550.21714365173, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {2c7f399f-74f8-4d72-82da-5aef28549294}, !- Handle + Zone Outpatient Elec/MechRoom A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {0c3b137c-0921-47a5-958c-90fa4e4c61b7}, !- Inlet Port + {7fcc8017-be5e-48ba-a629-5cfefe0a43d8}; !- Outlet Port + +OS:Connection, + {0c3b137c-0921-47a5-958c-90fa4e4c61b7}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 40, !- Outlet Port + {2c7f399f-74f8-4d72-82da-5aef28549294}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {0aec9a15-6faf-4f63-a1b8-82ecf9a5675a}, !- Handle + Zone Outpatient Elec/MechRoom A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {545e5262-6a40-4437-b133-e05dba29c347}, !- Inlet Port + {973a2882-cf8e-4e49-98ac-aa728e817e87}; !- Outlet Port + +OS:Connection, + {7fcc8017-be5e-48ba-a629-5cfefe0a43d8}, !- Handle + {2c7f399f-74f8-4d72-82da-5aef28549294}, !- Source Object + 3, !- Outlet Port + {f03d1e23-1fa4-42f6-b97d-cd7c8b13758d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {545e5262-6a40-4437-b133-e05dba29c347}, !- Handle + {f03d1e23-1fa4-42f6-b97d-cd7c8b13758d}, !- Source Object + 3, !- Outlet Port + {0aec9a15-6faf-4f63-a1b8-82ecf9a5675a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {973a2882-cf8e-4e49-98ac-aa728e817e87}, !- Handle + {0aec9a15-6faf-4f63-a1b8-82ecf9a5675a}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 40; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {e91a9d2a-90ed-4c8a-bb2c-423863eb5b8b}, !- Handle + Zone Outpatient Elec/MechRoom A - Story ground Water-to-Air HP Clg Coil 5kBtu/hr 11.2EER, !- Name + {504a2dc7-ea62-4042-b8bc-6dc4bb08964d}, !- Water Inlet Node Name + {6a914464-4caa-430d-8e42-bb57f1055365}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.111325127875165, !- Rated Air Flow Rate {m3/s} + 3.42955294739409e-05, !- Rated Water Flow Rate {m3/s} + 1637.0500256069, !- Rated Total Cooling Capacity {W} + 1318.49123732173, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {7ccdfe10-c2a0-4037-86f3-bffb73a11444}, !- Handle + Zone Outpatient Elec/MechRoom A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {22ee47e4-282c-42aa-865a-11ed7aed09ab}, !- Inlet Port + {504a2dc7-ea62-4042-b8bc-6dc4bb08964d}; !- Outlet Port + +OS:Connection, + {22ee47e4-282c-42aa-865a-11ed7aed09ab}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 41, !- Outlet Port + {7ccdfe10-c2a0-4037-86f3-bffb73a11444}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {f9717c8f-0b44-4d80-af6a-2c2037adfafc}, !- Handle + Zone Outpatient Elec/MechRoom A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {6a914464-4caa-430d-8e42-bb57f1055365}, !- Inlet Port + {0821c510-3ae1-4398-802c-bafcd4e50a48}; !- Outlet Port + +OS:Connection, + {504a2dc7-ea62-4042-b8bc-6dc4bb08964d}, !- Handle + {7ccdfe10-c2a0-4037-86f3-bffb73a11444}, !- Source Object + 3, !- Outlet Port + {e91a9d2a-90ed-4c8a-bb2c-423863eb5b8b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6a914464-4caa-430d-8e42-bb57f1055365}, !- Handle + {e91a9d2a-90ed-4c8a-bb2c-423863eb5b8b}, !- Source Object + 3, !- Outlet Port + {f9717c8f-0b44-4d80-af6a-2c2037adfafc}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0821c510-3ae1-4398-802c-bafcd4e50a48}, !- Handle + {f9717c8f-0b44-4d80-af6a-2c2037adfafc}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 41; !- Inlet Port + +OS:Fan:OnOff, + {1a654bc7-e0e9-43aa-9e7b-7fdcf2b2c95b}, !- Handle + Zone Outpatient Elec/MechRoom A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.111325127875165, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {94788d93-58f0-4578-8328-ef4c65d3dbcf}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {7ba33804-4310-4544-8636-9e21e558ce75}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {94788d93-58f0-4578-8328-ef4c65d3dbcf}, !- Handle + Fan On Off Power Curve 18, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {7ba33804-4310-4544-8636-9e21e558ce75}, !- Handle + Fan On Off Efficiency Curve 18, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {a478067c-298f-4689-bc8e-90698e6d1477}, !- Handle + Zone Outpatient Elec/MechRoom A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {fb9f118f-ee3c-4f2b-b66d-c5ce8b7c811f}, !- Air Inlet Node Name + {4f1e9bb2-8d6a-4542-9e9f-11d4eca39fed}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.111325127875165, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.111325127875165, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.111325127875165, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {1a654bc7-e0e9-43aa-9e7b-7fdcf2b2c95b}, !- Supply Air Fan Name + {f03d1e23-1fa4-42f6-b97d-cd7c8b13758d}, !- Heating Coil Name + {e91a9d2a-90ed-4c8a-bb2c-423863eb5b8b}, !- Cooling Coil Name + {cf20e604-6629-4a3c-b82f-2cbd88ad2ddf}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {3aa8d5f7-ea76-435f-bd8f-d42520731715}, !- Handle + Zone Outpatient Elec/MechRoom A - Story ground WSHP Inlet Air Node, !- Name + {811f97d3-d76c-4603-ac58-a1be5d34e28d}, !- Inlet Port + {fb9f118f-ee3c-4f2b-b66d-c5ce8b7c811f}; !- Outlet Port + +OS:Connection, + {811f97d3-d76c-4603-ac58-a1be5d34e28d}, !- Handle + {bc8a77d5-f80e-419b-91af-d587c7c70be0}, !- Source Object + 2, !- Outlet Port + {3aa8d5f7-ea76-435f-bd8f-d42520731715}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fb9f118f-ee3c-4f2b-b66d-c5ce8b7c811f}, !- Handle + {3aa8d5f7-ea76-435f-bd8f-d42520731715}, !- Source Object + 3, !- Outlet Port + {a478067c-298f-4689-bc8e-90698e6d1477}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {972842f0-388d-4d55-bce1-71591ec03445}, !- Handle + Zone Outpatient Elec/MechRoom A - Story ground WSHP Outlet Air Node, !- Name + {4f1e9bb2-8d6a-4542-9e9f-11d4eca39fed}, !- Inlet Port + {6ee9ac32-e9d5-4145-b95a-76bc3995a679}; !- Outlet Port + +OS:Connection, + {6ee9ac32-e9d5-4145-b95a-76bc3995a679}, !- Handle + {972842f0-388d-4d55-bce1-71591ec03445}, !- Source Object + 3, !- Outlet Port + {e798e5a1-224e-4b80-bcf5-a38950908bcd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4f1e9bb2-8d6a-4542-9e9f-11d4eca39fed}, !- Handle + {a478067c-298f-4689-bc8e-90698e6d1477}, !- Source Object + 4, !- Outlet Port + {972842f0-388d-4d55-bce1-71591ec03445}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {abd23a8d-e8ea-4f72-a284-fffe167c306a}, !- Handle + Zone Outpatient Elec/MechRoom B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 3167.07621794706, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {345a99e6-ded6-477d-83fe-091dcb220517}, !- Handle + Zone Outpatient Elec/MechRoom B - Story ground Water-to-Air HP Htg Coil 42 Clg kBtu/hr 4.2COPH, !- Name + {d4b9b5a4-fd56-4686-954b-95ccd99795eb}, !- Water Inlet Node Name + {7346a310-39b7-4ba0-a307-44a99c02291b}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.904356435615193, !- Rated Air Flow Rate {m3/s} + 0.000278603624405757, !- Rated Water Flow Rate {m3/s} + 12593.364833906, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {43925f39-377f-4a37-8802-44af93ce1ec3}, !- Handle + Zone Outpatient Elec/MechRoom B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {3f200793-5175-413b-aee6-6363f8d4b564}, !- Inlet Port + {d4b9b5a4-fd56-4686-954b-95ccd99795eb}; !- Outlet Port + +OS:Connection, + {3f200793-5175-413b-aee6-6363f8d4b564}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 42, !- Outlet Port + {43925f39-377f-4a37-8802-44af93ce1ec3}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {c5477940-9d02-4e76-80f6-6eb0b6b66528}, !- Handle + Zone Outpatient Elec/MechRoom B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {7346a310-39b7-4ba0-a307-44a99c02291b}, !- Inlet Port + {b4824245-1e76-4761-a74d-d53fa81aee17}; !- Outlet Port + +OS:Connection, + {d4b9b5a4-fd56-4686-954b-95ccd99795eb}, !- Handle + {43925f39-377f-4a37-8802-44af93ce1ec3}, !- Source Object + 3, !- Outlet Port + {345a99e6-ded6-477d-83fe-091dcb220517}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7346a310-39b7-4ba0-a307-44a99c02291b}, !- Handle + {345a99e6-ded6-477d-83fe-091dcb220517}, !- Source Object + 3, !- Outlet Port + {c5477940-9d02-4e76-80f6-6eb0b6b66528}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b4824245-1e76-4761-a74d-d53fa81aee17}, !- Handle + {c5477940-9d02-4e76-80f6-6eb0b6b66528}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 42; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {25254fc2-9350-44dc-be68-b3b91c925aa6}, !- Handle + Zone Outpatient Elec/MechRoom B - Story ground Water-to-Air HP Clg Coil 42kBtu/hr 12.0EER, !- Name + {21f36cd6-29a2-49dc-9cdd-0e9684707dea}, !- Water Inlet Node Name + {d8fa2604-c14f-435e-87d6-41ee1317848f}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.904356435615193, !- Rated Air Flow Rate {m3/s} + 0.000278603624405757, !- Rated Water Flow Rate {m3/s} + 13298.7616013969, !- Rated Total Cooling Capacity {W} + 10710.8606521332, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {226152c5-36a7-4cfa-9df8-892ade4de661}, !- Handle + Zone Outpatient Elec/MechRoom B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {7259b5d0-de73-429f-962f-c88c59682935}, !- Inlet Port + {21f36cd6-29a2-49dc-9cdd-0e9684707dea}; !- Outlet Port + +OS:Connection, + {7259b5d0-de73-429f-962f-c88c59682935}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 43, !- Outlet Port + {226152c5-36a7-4cfa-9df8-892ade4de661}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {b67a77a9-1111-49f5-b1b9-f8130fec14d1}, !- Handle + Zone Outpatient Elec/MechRoom B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {d8fa2604-c14f-435e-87d6-41ee1317848f}, !- Inlet Port + {ae6ca603-8b11-4284-ba7e-2900127b4d19}; !- Outlet Port + +OS:Connection, + {21f36cd6-29a2-49dc-9cdd-0e9684707dea}, !- Handle + {226152c5-36a7-4cfa-9df8-892ade4de661}, !- Source Object + 3, !- Outlet Port + {25254fc2-9350-44dc-be68-b3b91c925aa6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d8fa2604-c14f-435e-87d6-41ee1317848f}, !- Handle + {25254fc2-9350-44dc-be68-b3b91c925aa6}, !- Source Object + 3, !- Outlet Port + {b67a77a9-1111-49f5-b1b9-f8130fec14d1}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ae6ca603-8b11-4284-ba7e-2900127b4d19}, !- Handle + {b67a77a9-1111-49f5-b1b9-f8130fec14d1}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 43; !- Inlet Port + +OS:Fan:OnOff, + {ca4726b9-eb4f-4b93-bf2f-49ec2c61320f}, !- Handle + Zone Outpatient Elec/MechRoom B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.904356435615193, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {dfb79650-5495-4545-9d1a-62b7e6c0914b}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {72aff522-1666-4610-97f1-6c45e0fa8748}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {dfb79650-5495-4545-9d1a-62b7e6c0914b}, !- Handle + Fan On Off Power Curve 19, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {72aff522-1666-4610-97f1-6c45e0fa8748}, !- Handle + Fan On Off Efficiency Curve 19, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {84a5d4c6-09ae-4dd8-abce-ca580638a2be}, !- Handle + Zone Outpatient Elec/MechRoom B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {8126a183-d39d-49c5-8b58-659548cbd995}, !- Air Inlet Node Name + {6fbac684-1bc4-4085-9f38-3ea333fe7ced}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.904356435615193, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.904356435615193, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.904356435615193, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {ca4726b9-eb4f-4b93-bf2f-49ec2c61320f}, !- Supply Air Fan Name + {345a99e6-ded6-477d-83fe-091dcb220517}, !- Heating Coil Name + {25254fc2-9350-44dc-be68-b3b91c925aa6}, !- Cooling Coil Name + {abd23a8d-e8ea-4f72-a284-fffe167c306a}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {96f24dec-0ec6-45dd-8958-c6e0b331d9a7}, !- Handle + Zone Outpatient Elec/MechRoom B - Story ground WSHP Inlet Air Node, !- Name + {1032c88e-d73c-4238-885a-7b9e9b1cb9b3}, !- Inlet Port + {8126a183-d39d-49c5-8b58-659548cbd995}; !- Outlet Port + +OS:Connection, + {1032c88e-d73c-4238-885a-7b9e9b1cb9b3}, !- Handle + {b7a8e24b-ecc3-4e1f-93ed-bd18e0fef15a}, !- Source Object + 2, !- Outlet Port + {96f24dec-0ec6-45dd-8958-c6e0b331d9a7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8126a183-d39d-49c5-8b58-659548cbd995}, !- Handle + {96f24dec-0ec6-45dd-8958-c6e0b331d9a7}, !- Source Object + 3, !- Outlet Port + {84a5d4c6-09ae-4dd8-abce-ca580638a2be}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {d9bebeaa-c559-41fd-8d86-ff567168f53f}, !- Handle + Zone Outpatient Elec/MechRoom B - Story ground WSHP Outlet Air Node, !- Name + {6fbac684-1bc4-4085-9f38-3ea333fe7ced}, !- Inlet Port + {7a495320-75a8-429c-956e-804fefec1d25}; !- Outlet Port + +OS:Connection, + {7a495320-75a8-429c-956e-804fefec1d25}, !- Handle + {d9bebeaa-c559-41fd-8d86-ff567168f53f}, !- Source Object + 3, !- Outlet Port + {5b0c1ee4-c460-44c5-aadc-9d8220435c8d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6fbac684-1bc4-4085-9f38-3ea333fe7ced}, !- Handle + {84a5d4c6-09ae-4dd8-abce-ca580638a2be}, !- Source Object + 4, !- Outlet Port + {d9bebeaa-c559-41fd-8d86-ff567168f53f}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {441a2362-8806-4ac8-a3b5-9b8e3d1b712d}, !- Handle + Zone Outpatient Elec/MechRoom C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 429.11509093695, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {e30e3943-d1f4-4434-9d58-93b0dcf29e16}, !- Handle + Zone Outpatient Elec/MechRoom C - Story ground Water-to-Air HP Htg Coil 5 Clg kBtu/hr 4.2COPH, !- Name + {2a65bbd7-f4b1-438d-bf33-1f504bab7d0f}, !- Water Inlet Node Name + {1bb6fca4-cde2-4c27-ad16-570bbb7132b4}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.111325127875202, !- Rated Air Flow Rate {m3/s} + 3.42955294739521e-05, !- Rated Water Flow Rate {m3/s} + 1550.21714365224, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {23afbebd-4886-439d-baf7-09359187e868}, !- Handle + Zone Outpatient Elec/MechRoom C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {62f2a1fc-3ebc-4e90-9e88-701d6158743a}, !- Inlet Port + {2a65bbd7-f4b1-438d-bf33-1f504bab7d0f}; !- Outlet Port + +OS:Connection, + {62f2a1fc-3ebc-4e90-9e88-701d6158743a}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 44, !- Outlet Port + {23afbebd-4886-439d-baf7-09359187e868}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {a16c7fc6-43a2-4132-84c4-b6580f412846}, !- Handle + Zone Outpatient Elec/MechRoom C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {1bb6fca4-cde2-4c27-ad16-570bbb7132b4}, !- Inlet Port + {7774f98e-2e66-4984-abf2-20ab74534cf8}; !- Outlet Port + +OS:Connection, + {2a65bbd7-f4b1-438d-bf33-1f504bab7d0f}, !- Handle + {23afbebd-4886-439d-baf7-09359187e868}, !- Source Object + 3, !- Outlet Port + {e30e3943-d1f4-4434-9d58-93b0dcf29e16}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1bb6fca4-cde2-4c27-ad16-570bbb7132b4}, !- Handle + {e30e3943-d1f4-4434-9d58-93b0dcf29e16}, !- Source Object + 3, !- Outlet Port + {a16c7fc6-43a2-4132-84c4-b6580f412846}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7774f98e-2e66-4984-abf2-20ab74534cf8}, !- Handle + {a16c7fc6-43a2-4132-84c4-b6580f412846}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 44; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {8daff037-30e1-4de8-8983-a3527a97bcd9}, !- Handle + Zone Outpatient Elec/MechRoom C - Story ground Water-to-Air HP Clg Coil 5kBtu/hr 11.2EER, !- Name + {6777ed4e-6e06-4818-ab1a-6afe9339e3fd}, !- Water Inlet Node Name + {90747b5a-11b2-41b6-8303-ce50834c054d}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.111325127875202, !- Rated Air Flow Rate {m3/s} + 3.42955294739521e-05, !- Rated Water Flow Rate {m3/s} + 1637.05002560743, !- Rated Total Cooling Capacity {W} + 1318.49123732217, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {f5e988fc-bb4e-4194-9c75-f5c29830e9a6}, !- Handle + Zone Outpatient Elec/MechRoom C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {727c1821-9fd5-4ef6-9fdb-b95c1a880351}, !- Inlet Port + {6777ed4e-6e06-4818-ab1a-6afe9339e3fd}; !- Outlet Port + +OS:Connection, + {727c1821-9fd5-4ef6-9fdb-b95c1a880351}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 45, !- Outlet Port + {f5e988fc-bb4e-4194-9c75-f5c29830e9a6}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {415a9bb3-ae85-4cca-ae7e-7e958089d4f4}, !- Handle + Zone Outpatient Elec/MechRoom C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {90747b5a-11b2-41b6-8303-ce50834c054d}, !- Inlet Port + {23c6a625-ac86-459a-be6c-c288feb6a726}; !- Outlet Port + +OS:Connection, + {6777ed4e-6e06-4818-ab1a-6afe9339e3fd}, !- Handle + {f5e988fc-bb4e-4194-9c75-f5c29830e9a6}, !- Source Object + 3, !- Outlet Port + {8daff037-30e1-4de8-8983-a3527a97bcd9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {90747b5a-11b2-41b6-8303-ce50834c054d}, !- Handle + {8daff037-30e1-4de8-8983-a3527a97bcd9}, !- Source Object + 3, !- Outlet Port + {415a9bb3-ae85-4cca-ae7e-7e958089d4f4}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {23c6a625-ac86-459a-be6c-c288feb6a726}, !- Handle + {415a9bb3-ae85-4cca-ae7e-7e958089d4f4}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 45; !- Inlet Port + +OS:Fan:OnOff, + {3d4c6158-8d89-4a30-bb2e-6287448e5fb1}, !- Handle + Zone Outpatient Elec/MechRoom C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.111325127875202, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {124ea1fd-6a40-49c6-b5a2-227ae83ec70b}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {b9d674f6-7cec-48bf-b7fd-0d3036d516b1}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {124ea1fd-6a40-49c6-b5a2-227ae83ec70b}, !- Handle + Fan On Off Power Curve 20, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {b9d674f6-7cec-48bf-b7fd-0d3036d516b1}, !- Handle + Fan On Off Efficiency Curve 20, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {c1f90c93-9c96-4dd1-a856-5b60724d608c}, !- Handle + Zone Outpatient Elec/MechRoom C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {5613831f-39d5-457a-927e-333af32ae273}, !- Air Inlet Node Name + {c260e7dc-e5f5-4162-b571-b0678e917310}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.111325127875202, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.111325127875202, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.111325127875202, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {3d4c6158-8d89-4a30-bb2e-6287448e5fb1}, !- Supply Air Fan Name + {e30e3943-d1f4-4434-9d58-93b0dcf29e16}, !- Heating Coil Name + {8daff037-30e1-4de8-8983-a3527a97bcd9}, !- Cooling Coil Name + {441a2362-8806-4ac8-a3b5-9b8e3d1b712d}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {7c8c4435-0a91-4cb4-8e70-bfa8b0c832d3}, !- Handle + Zone Outpatient Elec/MechRoom C - Story ground WSHP Inlet Air Node, !- Name + {04bd3b21-37d9-4f88-a0b5-f3ae4f9ecfca}, !- Inlet Port + {5613831f-39d5-457a-927e-333af32ae273}; !- Outlet Port + +OS:Connection, + {04bd3b21-37d9-4f88-a0b5-f3ae4f9ecfca}, !- Handle + {698b8230-49b0-43e7-8313-8e9bf1b7d77f}, !- Source Object + 2, !- Outlet Port + {7c8c4435-0a91-4cb4-8e70-bfa8b0c832d3}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {5613831f-39d5-457a-927e-333af32ae273}, !- Handle + {7c8c4435-0a91-4cb4-8e70-bfa8b0c832d3}, !- Source Object + 3, !- Outlet Port + {c1f90c93-9c96-4dd1-a856-5b60724d608c}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {9d5a143d-531b-4d1e-a68b-9ff9bc3c352a}, !- Handle + Zone Outpatient Elec/MechRoom C - Story ground WSHP Outlet Air Node, !- Name + {c260e7dc-e5f5-4162-b571-b0678e917310}, !- Inlet Port + {a8f64e0b-de30-4ab3-b917-ecceb4303160}; !- Outlet Port + +OS:Connection, + {a8f64e0b-de30-4ab3-b917-ecceb4303160}, !- Handle + {9d5a143d-531b-4d1e-a68b-9ff9bc3c352a}, !- Source Object + 3, !- Outlet Port + {d7edc832-ccf0-4de5-a1cd-8a5f9d428ad2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c260e7dc-e5f5-4162-b571-b0678e917310}, !- Handle + {c1f90c93-9c96-4dd1-a856-5b60724d608c}, !- Source Object + 4, !- Outlet Port + {9d5a143d-531b-4d1e-a68b-9ff9bc3c352a}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {c39da408-b39d-4e8d-9604-61703aa9bf98}, !- Handle + Zone Outpatient ElevatorPumpRoom A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 225.546263754697, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {020d8cf9-ce7c-4100-aa16-6874ded40da9}, !- Handle + Zone Outpatient ElevatorPumpRoom A - Story ground Water-to-Air HP Htg Coil 1 Clg kBtu/hr 4.2COPH, !- Name + {7d3b607b-5ece-42cf-9e2d-7e6850afab1e}, !- Water Inlet Node Name + {aee84f3e-2068-474b-adfa-f82d9a7114a1}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.00974405645366266, !- Rated Air Flow Rate {m3/s} + 3.59378718107474e-06, !- Rated Water Flow Rate {m3/s} + 162.445385278891, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {7283738e-dae6-4df4-8405-fc1e1b3aee09}, !- Handle + Zone Outpatient ElevatorPumpRoom A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {efc84e3e-4d70-417b-bd9d-0bf1b3a234c6}, !- Inlet Port + {7d3b607b-5ece-42cf-9e2d-7e6850afab1e}; !- Outlet Port + +OS:Connection, + {efc84e3e-4d70-417b-bd9d-0bf1b3a234c6}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 46, !- Outlet Port + {7283738e-dae6-4df4-8405-fc1e1b3aee09}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {bff80607-aa6d-4a0c-90e1-73d8fe80c4f6}, !- Handle + Zone Outpatient ElevatorPumpRoom A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {aee84f3e-2068-474b-adfa-f82d9a7114a1}, !- Inlet Port + {98b5a116-cf11-4a84-85cd-bc4f550f4ee7}; !- Outlet Port + +OS:Connection, + {7d3b607b-5ece-42cf-9e2d-7e6850afab1e}, !- Handle + {7283738e-dae6-4df4-8405-fc1e1b3aee09}, !- Source Object + 3, !- Outlet Port + {020d8cf9-ce7c-4100-aa16-6874ded40da9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {aee84f3e-2068-474b-adfa-f82d9a7114a1}, !- Handle + {020d8cf9-ce7c-4100-aa16-6874ded40da9}, !- Source Object + 3, !- Outlet Port + {bff80607-aa6d-4a0c-90e1-73d8fe80c4f6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {98b5a116-cf11-4a84-85cd-bc4f550f4ee7}, !- Handle + {bff80607-aa6d-4a0c-90e1-73d8fe80c4f6}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 46; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {8cc03395-9024-40e5-97e5-4b373931c9fe}, !- Handle + Zone Outpatient ElevatorPumpRoom A - Story ground Water-to-Air HP Clg Coil 1kBtu/hr 11.2EER, !- Name + {ef851d94-ac31-4097-8507-993035b84caf}, !- Water Inlet Node Name + {7b16f48d-9701-4ca7-a31c-292efc0b1441}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.00974405645366266, !- Rated Air Flow Rate {m3/s} + 3.59378718107474e-06, !- Rated Water Flow Rate {m3/s} + 171.544498278542, !- Rated Total Cooling Capacity {W} + 136.628212550778, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {46c6a0da-dca8-4ff8-a1e0-d3b4838ccef6}, !- Handle + Zone Outpatient ElevatorPumpRoom A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {d3dc5e36-6c31-4fd8-ae58-61b3ad0235b0}, !- Inlet Port + {ef851d94-ac31-4097-8507-993035b84caf}; !- Outlet Port + +OS:Connection, + {d3dc5e36-6c31-4fd8-ae58-61b3ad0235b0}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 47, !- Outlet Port + {46c6a0da-dca8-4ff8-a1e0-d3b4838ccef6}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {f21bbf88-19f4-4114-9e0d-ade8d1d1c83e}, !- Handle + Zone Outpatient ElevatorPumpRoom A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {7b16f48d-9701-4ca7-a31c-292efc0b1441}, !- Inlet Port + {01392355-9c7c-4416-b537-354f18ac32f4}; !- Outlet Port + +OS:Connection, + {ef851d94-ac31-4097-8507-993035b84caf}, !- Handle + {46c6a0da-dca8-4ff8-a1e0-d3b4838ccef6}, !- Source Object + 3, !- Outlet Port + {8cc03395-9024-40e5-97e5-4b373931c9fe}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7b16f48d-9701-4ca7-a31c-292efc0b1441}, !- Handle + {8cc03395-9024-40e5-97e5-4b373931c9fe}, !- Source Object + 3, !- Outlet Port + {f21bbf88-19f4-4114-9e0d-ade8d1d1c83e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {01392355-9c7c-4416-b537-354f18ac32f4}, !- Handle + {f21bbf88-19f4-4114-9e0d-ade8d1d1c83e}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 47; !- Inlet Port + +OS:Fan:OnOff, + {d96dca85-8157-4f60-ab39-c84b50ece408}, !- Handle + Zone Outpatient ElevatorPumpRoom A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.00974405645366266, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {ec485d75-4242-4a35-abdf-6c8b74ebee37}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {1fe408a4-5a18-481a-909e-fbc3606f16a6}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {ec485d75-4242-4a35-abdf-6c8b74ebee37}, !- Handle + Fan On Off Power Curve 21, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {1fe408a4-5a18-481a-909e-fbc3606f16a6}, !- Handle + Fan On Off Efficiency Curve 21, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {a0779969-a04c-4a31-addf-8392f6b995e8}, !- Handle + Zone Outpatient ElevatorPumpRoom A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {2d7a15f1-4098-40f3-8f8a-4586eddbde4e}, !- Air Inlet Node Name + {be5989d8-aef9-419c-9464-2f39ab9bd5d2}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.00974405645366266, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.00974405645366266, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.00974405645366266, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {d96dca85-8157-4f60-ab39-c84b50ece408}, !- Supply Air Fan Name + {020d8cf9-ce7c-4100-aa16-6874ded40da9}, !- Heating Coil Name + {8cc03395-9024-40e5-97e5-4b373931c9fe}, !- Cooling Coil Name + {c39da408-b39d-4e8d-9604-61703aa9bf98}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {97bdcb28-5d37-43ec-9e7c-fc33217d841a}, !- Handle + Zone Outpatient ElevatorPumpRoom A - Story ground WSHP Inlet Air Node, !- Name + {6fe8fa27-d4b8-4da9-b4b8-28f8f394d425}, !- Inlet Port + {2d7a15f1-4098-40f3-8f8a-4586eddbde4e}; !- Outlet Port + +OS:Connection, + {6fe8fa27-d4b8-4da9-b4b8-28f8f394d425}, !- Handle + {ef500ae1-ae33-435c-9a25-2aa5b9e750e6}, !- Source Object + 2, !- Outlet Port + {97bdcb28-5d37-43ec-9e7c-fc33217d841a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2d7a15f1-4098-40f3-8f8a-4586eddbde4e}, !- Handle + {97bdcb28-5d37-43ec-9e7c-fc33217d841a}, !- Source Object + 3, !- Outlet Port + {a0779969-a04c-4a31-addf-8392f6b995e8}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {d655b02a-5738-4818-a22c-69ebe0f78664}, !- Handle + Zone Outpatient ElevatorPumpRoom A - Story ground WSHP Outlet Air Node, !- Name + {be5989d8-aef9-419c-9464-2f39ab9bd5d2}, !- Inlet Port + {ac2ef52c-7afe-48ba-a4b2-247231a7da3d}; !- Outlet Port + +OS:Connection, + {ac2ef52c-7afe-48ba-a4b2-247231a7da3d}, !- Handle + {d655b02a-5738-4818-a22c-69ebe0f78664}, !- Source Object + 3, !- Outlet Port + {b7a791a2-22c5-42e1-8437-706e115e60ab}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {be5989d8-aef9-419c-9464-2f39ab9bd5d2}, !- Handle + {a0779969-a04c-4a31-addf-8392f6b995e8}, !- Source Object + 4, !- Outlet Port + {d655b02a-5738-4818-a22c-69ebe0f78664}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {ecc668ee-3758-4a0c-ad3e-872f4d2b7488}, !- Handle + Zone Outpatient ElevatorPumpRoom B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 1759.8211407391, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {dd4c30a9-ee12-4e5a-bd16-350440990e7e}, !- Handle + Zone Outpatient ElevatorPumpRoom B - Story ground Water-to-Air HP Htg Coil 5 Clg kBtu/hr 4.2COPH, !- Name + {1b13744e-8e72-4d97-b769-e41816ae8d7f}, !- Water Inlet Node Name + {d1092b06-758c-4b98-bf10-615b94f3c512}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0760275509372124, !- Rated Air Flow Rate {m3/s} + 2.80405009356183e-05, !- Rated Water Flow Rate {m3/s} + 1267.47905437668, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {5340cad9-3005-4309-822d-c4d672287911}, !- Handle + Zone Outpatient ElevatorPumpRoom B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {f3cc2e24-9aea-43df-b656-5fc363e7d934}, !- Inlet Port + {1b13744e-8e72-4d97-b769-e41816ae8d7f}; !- Outlet Port + +OS:Connection, + {f3cc2e24-9aea-43df-b656-5fc363e7d934}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 48, !- Outlet Port + {5340cad9-3005-4309-822d-c4d672287911}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {995d8d04-ebca-47ec-b58a-d8e577630cac}, !- Handle + Zone Outpatient ElevatorPumpRoom B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {d1092b06-758c-4b98-bf10-615b94f3c512}, !- Inlet Port + {e7eeadf9-37a6-400e-bc74-27eff53c6994}; !- Outlet Port + +OS:Connection, + {1b13744e-8e72-4d97-b769-e41816ae8d7f}, !- Handle + {5340cad9-3005-4309-822d-c4d672287911}, !- Source Object + 3, !- Outlet Port + {dd4c30a9-ee12-4e5a-bd16-350440990e7e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d1092b06-758c-4b98-bf10-615b94f3c512}, !- Handle + {dd4c30a9-ee12-4e5a-bd16-350440990e7e}, !- Source Object + 3, !- Outlet Port + {995d8d04-ebca-47ec-b58a-d8e577630cac}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e7eeadf9-37a6-400e-bc74-27eff53c6994}, !- Handle + {995d8d04-ebca-47ec-b58a-d8e577630cac}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 48; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {539cb565-3872-4ac4-9253-ddcaf50bdd01}, !- Handle + Zone Outpatient ElevatorPumpRoom B - Story ground Water-to-Air HP Clg Coil 5kBtu/hr 11.2EER, !- Name + {1ea5e2a8-00d9-4441-a387-87b8b6df2605}, !- Water Inlet Node Name + {548defed-3052-48e4-b2f3-626e17e2f0e8}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0760275509372124, !- Rated Air Flow Rate {m3/s} + 2.80405009356183e-05, !- Rated Water Flow Rate {m3/s} + 1338.47482394356, !- Rated Total Cooling Capacity {W} + 1066.43812759385, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {dd2e87d2-e726-4742-b992-df5a92f538b6}, !- Handle + Zone Outpatient ElevatorPumpRoom B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {bcfb64e6-f85e-46d2-8a23-5cabf29ffdff}, !- Inlet Port + {1ea5e2a8-00d9-4441-a387-87b8b6df2605}; !- Outlet Port + +OS:Connection, + {bcfb64e6-f85e-46d2-8a23-5cabf29ffdff}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 49, !- Outlet Port + {dd2e87d2-e726-4742-b992-df5a92f538b6}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {61c6c018-27a7-4c97-bcbd-90b355e7fe82}, !- Handle + Zone Outpatient ElevatorPumpRoom B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {548defed-3052-48e4-b2f3-626e17e2f0e8}, !- Inlet Port + {e7039b8c-3ffb-4d39-894f-bd113194a549}; !- Outlet Port + +OS:Connection, + {1ea5e2a8-00d9-4441-a387-87b8b6df2605}, !- Handle + {dd2e87d2-e726-4742-b992-df5a92f538b6}, !- Source Object + 3, !- Outlet Port + {539cb565-3872-4ac4-9253-ddcaf50bdd01}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {548defed-3052-48e4-b2f3-626e17e2f0e8}, !- Handle + {539cb565-3872-4ac4-9253-ddcaf50bdd01}, !- Source Object + 3, !- Outlet Port + {61c6c018-27a7-4c97-bcbd-90b355e7fe82}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e7039b8c-3ffb-4d39-894f-bd113194a549}, !- Handle + {61c6c018-27a7-4c97-bcbd-90b355e7fe82}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 49; !- Inlet Port + +OS:Fan:OnOff, + {753cf5f0-37f9-458d-9bf8-9de75195f0ac}, !- Handle + Zone Outpatient ElevatorPumpRoom B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0760275509372124, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {0a9a4297-ef97-438e-beb8-fcf706ad8a62}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {0b176132-8b2c-43a2-90a1-c16d67b7e05c}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {0a9a4297-ef97-438e-beb8-fcf706ad8a62}, !- Handle + Fan On Off Power Curve 22, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {0b176132-8b2c-43a2-90a1-c16d67b7e05c}, !- Handle + Fan On Off Efficiency Curve 22, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {29540e1e-8806-445d-a302-7896081a81b5}, !- Handle + Zone Outpatient ElevatorPumpRoom B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {819f03ab-e9e7-4e57-b916-d4d5a4e43036}, !- Air Inlet Node Name + {7185d6d2-e8c3-4376-b45d-8d10007fd5b8}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0760275509372124, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0760275509372124, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0760275509372124, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {753cf5f0-37f9-458d-9bf8-9de75195f0ac}, !- Supply Air Fan Name + {dd4c30a9-ee12-4e5a-bd16-350440990e7e}, !- Heating Coil Name + {539cb565-3872-4ac4-9253-ddcaf50bdd01}, !- Cooling Coil Name + {ecc668ee-3758-4a0c-ad3e-872f4d2b7488}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {8792f703-5b0b-4d89-85a8-bcc2777875b0}, !- Handle + Zone Outpatient ElevatorPumpRoom B - Story ground WSHP Inlet Air Node, !- Name + {8a824c9d-2b66-4e8b-bd59-8e229666ee2f}, !- Inlet Port + {819f03ab-e9e7-4e57-b916-d4d5a4e43036}; !- Outlet Port + +OS:Connection, + {8a824c9d-2b66-4e8b-bd59-8e229666ee2f}, !- Handle + {f98e1fcd-6c39-4ac6-80bf-c4f4bb3cb08d}, !- Source Object + 2, !- Outlet Port + {8792f703-5b0b-4d89-85a8-bcc2777875b0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {819f03ab-e9e7-4e57-b916-d4d5a4e43036}, !- Handle + {8792f703-5b0b-4d89-85a8-bcc2777875b0}, !- Source Object + 3, !- Outlet Port + {29540e1e-8806-445d-a302-7896081a81b5}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {f09a1510-b4e5-4254-941a-fdd2522836b2}, !- Handle + Zone Outpatient ElevatorPumpRoom B - Story ground WSHP Outlet Air Node, !- Name + {7185d6d2-e8c3-4376-b45d-8d10007fd5b8}, !- Inlet Port + {738627df-e027-4318-8d24-f0e21f4f133b}; !- Outlet Port + +OS:Connection, + {738627df-e027-4318-8d24-f0e21f4f133b}, !- Handle + {f09a1510-b4e5-4254-941a-fdd2522836b2}, !- Source Object + 3, !- Outlet Port + {9ca080a4-0f4e-494f-bd71-08ca7e0312d2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7185d6d2-e8c3-4376-b45d-8d10007fd5b8}, !- Handle + {29540e1e-8806-445d-a302-7896081a81b5}, !- Source Object + 4, !- Outlet Port + {f09a1510-b4e5-4254-941a-fdd2522836b2}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {609cd0c6-0519-4900-ad0b-cb25428acc11}, !- Handle + Zone Outpatient ElevatorPumpRoom C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 225.546263754734, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {a7374b37-7c63-4681-8e9a-0d4e3e6213b2}, !- Handle + Zone Outpatient ElevatorPumpRoom C - Story ground Water-to-Air HP Htg Coil 1 Clg kBtu/hr 4.2COPH, !- Name + {e8b4e0f9-df3c-44af-9ee6-d82b6a42b1ac}, !- Water Inlet Node Name + {de69dd1c-ec3c-49ed-b726-ed48541ea8d6}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.00974405645366424, !- Rated Air Flow Rate {m3/s} + 3.59378718107532e-06, !- Rated Water Flow Rate {m3/s} + 162.445385278918, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {3966179c-a143-4cd3-a15b-be5c4ddf351e}, !- Handle + Zone Outpatient ElevatorPumpRoom C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {302b088b-b22f-4dc1-9621-c13184745bc7}, !- Inlet Port + {e8b4e0f9-df3c-44af-9ee6-d82b6a42b1ac}; !- Outlet Port + +OS:Connection, + {302b088b-b22f-4dc1-9621-c13184745bc7}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 50, !- Outlet Port + {3966179c-a143-4cd3-a15b-be5c4ddf351e}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {f977c596-0c73-401f-8966-ad51711c66a5}, !- Handle + Zone Outpatient ElevatorPumpRoom C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {de69dd1c-ec3c-49ed-b726-ed48541ea8d6}, !- Inlet Port + {cf7bd0e0-0fa5-4e1a-a505-3e14db12c134}; !- Outlet Port + +OS:Connection, + {e8b4e0f9-df3c-44af-9ee6-d82b6a42b1ac}, !- Handle + {3966179c-a143-4cd3-a15b-be5c4ddf351e}, !- Source Object + 3, !- Outlet Port + {a7374b37-7c63-4681-8e9a-0d4e3e6213b2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {de69dd1c-ec3c-49ed-b726-ed48541ea8d6}, !- Handle + {a7374b37-7c63-4681-8e9a-0d4e3e6213b2}, !- Source Object + 3, !- Outlet Port + {f977c596-0c73-401f-8966-ad51711c66a5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {cf7bd0e0-0fa5-4e1a-a505-3e14db12c134}, !- Handle + {f977c596-0c73-401f-8966-ad51711c66a5}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 50; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {9435113e-4462-42e8-bc1e-73687cd95692}, !- Handle + Zone Outpatient ElevatorPumpRoom C - Story ground Water-to-Air HP Clg Coil 1kBtu/hr 11.2EER, !- Name + {3e86077d-cb24-4c7d-9593-6800436f786a}, !- Water Inlet Node Name + {f03e7d69-ecf5-4553-ba7c-d176afc3d274}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.00974405645366424, !- Rated Air Flow Rate {m3/s} + 3.59378718107532e-06, !- Rated Water Flow Rate {m3/s} + 171.54449827857, !- Rated Total Cooling Capacity {W} + 136.628215410078, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {d0a1321f-d75e-441c-b263-d8c975f95b7c}, !- Handle + Zone Outpatient ElevatorPumpRoom C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {576159bd-2aee-4252-bb6e-21df70e6fcb0}, !- Inlet Port + {3e86077d-cb24-4c7d-9593-6800436f786a}; !- Outlet Port + +OS:Connection, + {576159bd-2aee-4252-bb6e-21df70e6fcb0}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 51, !- Outlet Port + {d0a1321f-d75e-441c-b263-d8c975f95b7c}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {e45b1626-6dcf-404b-a0a3-5a5b93cad2d4}, !- Handle + Zone Outpatient ElevatorPumpRoom C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {f03e7d69-ecf5-4553-ba7c-d176afc3d274}, !- Inlet Port + {a6d15b51-89dd-4d7b-a4a3-dd39e1267cf6}; !- Outlet Port + +OS:Connection, + {3e86077d-cb24-4c7d-9593-6800436f786a}, !- Handle + {d0a1321f-d75e-441c-b263-d8c975f95b7c}, !- Source Object + 3, !- Outlet Port + {9435113e-4462-42e8-bc1e-73687cd95692}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f03e7d69-ecf5-4553-ba7c-d176afc3d274}, !- Handle + {9435113e-4462-42e8-bc1e-73687cd95692}, !- Source Object + 3, !- Outlet Port + {e45b1626-6dcf-404b-a0a3-5a5b93cad2d4}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a6d15b51-89dd-4d7b-a4a3-dd39e1267cf6}, !- Handle + {e45b1626-6dcf-404b-a0a3-5a5b93cad2d4}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 51; !- Inlet Port + +OS:Fan:OnOff, + {b1eb0498-3804-40ef-a85f-dc354a062567}, !- Handle + Zone Outpatient ElevatorPumpRoom C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.00974405645366424, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {ef894091-8472-4df5-9f4d-6cb20207d335}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {242c7383-d718-46df-88f5-f188b3e15dbf}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {ef894091-8472-4df5-9f4d-6cb20207d335}, !- Handle + Fan On Off Power Curve 23, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {242c7383-d718-46df-88f5-f188b3e15dbf}, !- Handle + Fan On Off Efficiency Curve 23, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {51d708cb-6a28-455b-9942-874c6b4e9874}, !- Handle + Zone Outpatient ElevatorPumpRoom C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {028bae8e-e05c-4246-b5a4-5c1a04a58cba}, !- Air Inlet Node Name + {f9eef94e-6d81-4a7a-8bad-b2077dcdd12f}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.00974405645366424, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.00974405645366424, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.00974405645366424, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {b1eb0498-3804-40ef-a85f-dc354a062567}, !- Supply Air Fan Name + {a7374b37-7c63-4681-8e9a-0d4e3e6213b2}, !- Heating Coil Name + {9435113e-4462-42e8-bc1e-73687cd95692}, !- Cooling Coil Name + {609cd0c6-0519-4900-ad0b-cb25428acc11}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {1cccf1ba-ce23-495b-9a05-ad66cab76cf6}, !- Handle + Zone Outpatient ElevatorPumpRoom C - Story ground WSHP Inlet Air Node, !- Name + {be7582e8-6adc-4222-b3d7-c0ce9987561b}, !- Inlet Port + {028bae8e-e05c-4246-b5a4-5c1a04a58cba}; !- Outlet Port + +OS:Connection, + {be7582e8-6adc-4222-b3d7-c0ce9987561b}, !- Handle + {a3a5fc13-da83-439b-8be3-46252e1300a4}, !- Source Object + 2, !- Outlet Port + {1cccf1ba-ce23-495b-9a05-ad66cab76cf6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {028bae8e-e05c-4246-b5a4-5c1a04a58cba}, !- Handle + {1cccf1ba-ce23-495b-9a05-ad66cab76cf6}, !- Source Object + 3, !- Outlet Port + {51d708cb-6a28-455b-9942-874c6b4e9874}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {551754c9-cb0e-4445-9d5a-af57b4dd8cd1}, !- Handle + Zone Outpatient ElevatorPumpRoom C - Story ground WSHP Outlet Air Node, !- Name + {f9eef94e-6d81-4a7a-8bad-b2077dcdd12f}, !- Inlet Port + {c95bac51-d36a-426c-bdbd-ce59eb28985b}; !- Outlet Port + +OS:Connection, + {c95bac51-d36a-426c-bdbd-ce59eb28985b}, !- Handle + {551754c9-cb0e-4445-9d5a-af57b4dd8cd1}, !- Source Object + 3, !- Outlet Port + {5e8675e4-a5b3-4078-a59a-9b0dff44ab0f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f9eef94e-6d81-4a7a-8bad-b2077dcdd12f}, !- Handle + {51d708cb-6a28-455b-9942-874c6b4e9874}, !- Source Object + 4, !- Outlet Port + {551754c9-cb0e-4445-9d5a-af57b4dd8cd1}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {a34e1216-11fd-48ce-9684-e45c18df8217}, !- Handle + Zone Outpatient Exam A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 45468.2616474045, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {83a8aa47-a546-4aac-9867-4cecbd6c1f2d}, !- Handle + Zone Outpatient Exam A - Story ground Water-to-Air HP Htg Coil 318 Clg kBtu/hr 4.2COPH, !- Name + {5357a9d7-0e92-4325-add6-cf41a482d267}, !- Water Inlet Node Name + {90e3f67b-13fc-42df-b9f7-5cdefc9a8dec}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 5.54159057099659, !- Rated Air Flow Rate {m3/s} + 0.00200697984939143, !- Rated Water Flow Rate {m3/s} + 90718.9542547879, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {a73779f0-a7f7-4e1a-8950-b05343213620}, !- Handle + Zone Outpatient Exam A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {b3da6141-6d2c-4b64-8144-7f2eb3c39dd6}, !- Inlet Port + {5357a9d7-0e92-4325-add6-cf41a482d267}; !- Outlet Port + +OS:Connection, + {b3da6141-6d2c-4b64-8144-7f2eb3c39dd6}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 52, !- Outlet Port + {a73779f0-a7f7-4e1a-8950-b05343213620}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {ce897d5d-123d-4744-8e29-9e0266a5afbb}, !- Handle + Zone Outpatient Exam A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {90e3f67b-13fc-42df-b9f7-5cdefc9a8dec}, !- Inlet Port + {3b6eb8d6-a76d-4470-b119-fa7c2f16595d}; !- Outlet Port + +OS:Connection, + {5357a9d7-0e92-4325-add6-cf41a482d267}, !- Handle + {a73779f0-a7f7-4e1a-8950-b05343213620}, !- Source Object + 3, !- Outlet Port + {83a8aa47-a546-4aac-9867-4cecbd6c1f2d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {90e3f67b-13fc-42df-b9f7-5cdefc9a8dec}, !- Handle + {83a8aa47-a546-4aac-9867-4cecbd6c1f2d}, !- Source Object + 3, !- Outlet Port + {ce897d5d-123d-4744-8e29-9e0266a5afbb}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3b6eb8d6-a76d-4470-b119-fa7c2f16595d}, !- Handle + {ce897d5d-123d-4744-8e29-9e0266a5afbb}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 52; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {2c7546dc-ada6-45c3-8da7-14d37f467b83}, !- Handle + Zone Outpatient Exam A - Story ground Water-to-Air HP Clg Coil, !- Name + {b1dc7ed9-11bf-4207-97f9-66a20f340d12}, !- Water Inlet Node Name + {a00343ae-2e3f-4adc-b640-52227497e119}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 5.54159057099659, !- Rated Air Flow Rate {m3/s} + 0.00200697984939143, !- Rated Water Flow Rate {m3/s} + 95800.4283425701, !- Rated Total Cooling Capacity {W} + 70187.6869345554, !- Rated Sensible Cooling Capacity {W} + 3.4, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {ca2fe107-118f-4816-87d2-8e693382bec2}, !- Handle + Zone Outpatient Exam A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {a36c5def-e32a-4c14-8b59-a1b7f5680a1b}, !- Inlet Port + {b1dc7ed9-11bf-4207-97f9-66a20f340d12}; !- Outlet Port + +OS:Connection, + {a36c5def-e32a-4c14-8b59-a1b7f5680a1b}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 53, !- Outlet Port + {ca2fe107-118f-4816-87d2-8e693382bec2}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {d1f1f51f-4383-4e0d-bd26-e8884c59c5e9}, !- Handle + Zone Outpatient Exam A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {a00343ae-2e3f-4adc-b640-52227497e119}, !- Inlet Port + {6cc690cd-98b9-436d-b4b2-f729037dfa4c}; !- Outlet Port + +OS:Connection, + {b1dc7ed9-11bf-4207-97f9-66a20f340d12}, !- Handle + {ca2fe107-118f-4816-87d2-8e693382bec2}, !- Source Object + 3, !- Outlet Port + {2c7546dc-ada6-45c3-8da7-14d37f467b83}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a00343ae-2e3f-4adc-b640-52227497e119}, !- Handle + {2c7546dc-ada6-45c3-8da7-14d37f467b83}, !- Source Object + 3, !- Outlet Port + {d1f1f51f-4383-4e0d-bd26-e8884c59c5e9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6cc690cd-98b9-436d-b4b2-f729037dfa4c}, !- Handle + {d1f1f51f-4383-4e0d-bd26-e8884c59c5e9}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 53; !- Inlet Port + +OS:Fan:OnOff, + {5fa83c7c-94d0-44e4-b198-e532ab5374ae}, !- Handle + Zone Outpatient Exam A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 5.54159057099659, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {fe0b8b2d-d2d2-4b99-b915-11fdceab8bea}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {5010439a-7717-4817-bfba-32ee3c1b67fd}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {fe0b8b2d-d2d2-4b99-b915-11fdceab8bea}, !- Handle + Fan On Off Power Curve 24, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {5010439a-7717-4817-bfba-32ee3c1b67fd}, !- Handle + Fan On Off Efficiency Curve 24, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {f9534619-78e9-416e-980b-e00717538ca2}, !- Handle + Zone Outpatient Exam A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {b757a0ea-895a-4ad6-b140-c8b82e18e2dd}, !- Air Inlet Node Name + {07656e82-f9a7-4f41-99d6-12fc902e503f}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 5.54159057099659, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 5.54159057099659, !- Supply Air Flow Rate During Heating Operation {m3/s} + 5.54159057099659, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {5fa83c7c-94d0-44e4-b198-e532ab5374ae}, !- Supply Air Fan Name + {83a8aa47-a546-4aac-9867-4cecbd6c1f2d}, !- Heating Coil Name + {2c7546dc-ada6-45c3-8da7-14d37f467b83}, !- Cooling Coil Name + {a34e1216-11fd-48ce-9684-e45c18df8217}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {208a45ab-988a-4eac-a691-1a51fe40cf84}, !- Handle + Zone Outpatient Exam A - Story ground WSHP Inlet Air Node, !- Name + {f8dbac76-c823-4ecd-9bca-108f2e03a1c0}, !- Inlet Port + {b757a0ea-895a-4ad6-b140-c8b82e18e2dd}; !- Outlet Port + +OS:Connection, + {f8dbac76-c823-4ecd-9bca-108f2e03a1c0}, !- Handle + {daf1944c-c26e-4e1d-afc5-c579ac524b27}, !- Source Object + 2, !- Outlet Port + {208a45ab-988a-4eac-a691-1a51fe40cf84}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b757a0ea-895a-4ad6-b140-c8b82e18e2dd}, !- Handle + {208a45ab-988a-4eac-a691-1a51fe40cf84}, !- Source Object + 3, !- Outlet Port + {f9534619-78e9-416e-980b-e00717538ca2}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {870917e7-a4b0-45d8-885c-c48dd1455d75}, !- Handle + Zone Outpatient Exam A - Story ground WSHP Outlet Air Node, !- Name + {07656e82-f9a7-4f41-99d6-12fc902e503f}, !- Inlet Port + {2ceb3acf-12e4-4e14-a1d1-5b4f1375343a}; !- Outlet Port + +OS:Connection, + {2ceb3acf-12e4-4e14-a1d1-5b4f1375343a}, !- Handle + {870917e7-a4b0-45d8-885c-c48dd1455d75}, !- Source Object + 3, !- Outlet Port + {b87b26d2-d5fc-425e-97ec-f13ece7878a0}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {07656e82-f9a7-4f41-99d6-12fc902e503f}, !- Handle + {f9534619-78e9-416e-980b-e00717538ca2}, !- Source Object + 4, !- Outlet Port + {870917e7-a4b0-45d8-885c-c48dd1455d75}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {d99dc439-6ffb-4e5d-b3b4-793a23f8e19c}, !- Handle + Zone Outpatient Exam A end_a - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 8978.48013460277, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {85af4873-198e-4e70-a5e9-e57ff1a6817d}, !- Handle + Zone Outpatient Exam A end_a - Story ground Water-to-Air HP Htg Coil 55 Clg kBtu/hr 4.2COPH, !- Name + {128bec2b-5d09-48f3-bf05-b00f51250e64}, !- Water Inlet Node Name + {1b5894ce-ec9b-42b8-a246-938693415ed3}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 1.03032796218986, !- Rated Air Flow Rate {m3/s} + 0.000352189675011828, !- Rated Water Flow Rate {m3/s} + 15919.5813680415, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {77f9dfbd-3b6d-4b25-90d6-9a790998100a}, !- Handle + Zone Outpatient Exam A end_a - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {683a41a0-479a-4968-994e-a3c0e681f096}, !- Inlet Port + {128bec2b-5d09-48f3-bf05-b00f51250e64}; !- Outlet Port + +OS:Connection, + {683a41a0-479a-4968-994e-a3c0e681f096}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 54, !- Outlet Port + {77f9dfbd-3b6d-4b25-90d6-9a790998100a}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {b0f924ac-4a6e-4998-b438-f026b2b18548}, !- Handle + Zone Outpatient Exam A end_a - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {1b5894ce-ec9b-42b8-a246-938693415ed3}, !- Inlet Port + {bc695c33-54dd-4961-8ccf-de3fa978217d}; !- Outlet Port + +OS:Connection, + {128bec2b-5d09-48f3-bf05-b00f51250e64}, !- Handle + {77f9dfbd-3b6d-4b25-90d6-9a790998100a}, !- Source Object + 3, !- Outlet Port + {85af4873-198e-4e70-a5e9-e57ff1a6817d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1b5894ce-ec9b-42b8-a246-938693415ed3}, !- Handle + {85af4873-198e-4e70-a5e9-e57ff1a6817d}, !- Source Object + 3, !- Outlet Port + {b0f924ac-4a6e-4998-b438-f026b2b18548}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bc695c33-54dd-4961-8ccf-de3fa978217d}, !- Handle + {b0f924ac-4a6e-4998-b438-f026b2b18548}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 54; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {8ac688cb-b2bd-4ff3-991f-a28458a01a91}, !- Handle + Zone Outpatient Exam A end_a - Story ground Water-to-Air HP Clg Coil 55kBtu/hr 12.0EER, !- Name + {5fa7b06b-f336-4037-846c-d0cc4a50351c}, !- Water Inlet Node Name + {0679899b-3abc-46d7-8829-f42547fdda2d}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 1.03032796218986, !- Rated Air Flow Rate {m3/s} + 0.000352189675011828, !- Rated Water Flow Rate {m3/s} + 16811.2907233196, !- Rated Total Cooling Capacity {W} + 12715.7273944977, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {8726179b-7d51-4552-9d13-4822c4b74383}, !- Handle + Zone Outpatient Exam A end_a - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {9b2e5be7-4218-4eb6-87ac-9aaec108e6fd}, !- Inlet Port + {5fa7b06b-f336-4037-846c-d0cc4a50351c}; !- Outlet Port + +OS:Connection, + {9b2e5be7-4218-4eb6-87ac-9aaec108e6fd}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 55, !- Outlet Port + {8726179b-7d51-4552-9d13-4822c4b74383}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {67b27fb7-1be2-4b8b-a201-c318f7f1df1e}, !- Handle + Zone Outpatient Exam A end_a - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {0679899b-3abc-46d7-8829-f42547fdda2d}, !- Inlet Port + {ad8d89e0-5b1c-49be-939f-9dba78ce576d}; !- Outlet Port + +OS:Connection, + {5fa7b06b-f336-4037-846c-d0cc4a50351c}, !- Handle + {8726179b-7d51-4552-9d13-4822c4b74383}, !- Source Object + 3, !- Outlet Port + {8ac688cb-b2bd-4ff3-991f-a28458a01a91}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0679899b-3abc-46d7-8829-f42547fdda2d}, !- Handle + {8ac688cb-b2bd-4ff3-991f-a28458a01a91}, !- Source Object + 3, !- Outlet Port + {67b27fb7-1be2-4b8b-a201-c318f7f1df1e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ad8d89e0-5b1c-49be-939f-9dba78ce576d}, !- Handle + {67b27fb7-1be2-4b8b-a201-c318f7f1df1e}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 55; !- Inlet Port + +OS:Fan:OnOff, + {191e3619-3815-4481-90ba-3c9fd7a45887}, !- Handle + Zone Outpatient Exam A end_a - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 1.03032796218986, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {f19a8c9e-39de-4173-9cfb-bcf990c48163}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {13c765f9-66ad-4ae2-bf33-b971b5883a50}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {f19a8c9e-39de-4173-9cfb-bcf990c48163}, !- Handle + Fan On Off Power Curve 25, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {13c765f9-66ad-4ae2-bf33-b971b5883a50}, !- Handle + Fan On Off Efficiency Curve 25, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {905f873d-72b1-45af-8816-08983838bef1}, !- Handle + Zone Outpatient Exam A end_a - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {bada3077-73a8-4f8e-9a67-a6abac7c0e83}, !- Air Inlet Node Name + {fe4b347c-9fb0-4a01-bf71-fe95b76979f4}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 1.03032796218986, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 1.03032796218986, !- Supply Air Flow Rate During Heating Operation {m3/s} + 1.03032796218986, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {191e3619-3815-4481-90ba-3c9fd7a45887}, !- Supply Air Fan Name + {85af4873-198e-4e70-a5e9-e57ff1a6817d}, !- Heating Coil Name + {8ac688cb-b2bd-4ff3-991f-a28458a01a91}, !- Cooling Coil Name + {d99dc439-6ffb-4e5d-b3b4-793a23f8e19c}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {506f31ee-28b6-4497-a4a6-fd93d2cb43b5}, !- Handle + Zone Outpatient Exam A end_a - Story ground WSHP Inlet Air Node, !- Name + {d24a844d-c288-47c3-a729-13b91d28a70a}, !- Inlet Port + {bada3077-73a8-4f8e-9a67-a6abac7c0e83}; !- Outlet Port + +OS:Connection, + {d24a844d-c288-47c3-a729-13b91d28a70a}, !- Handle + {90e9b5c9-c684-4ca8-98dc-3794a89612ff}, !- Source Object + 2, !- Outlet Port + {506f31ee-28b6-4497-a4a6-fd93d2cb43b5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bada3077-73a8-4f8e-9a67-a6abac7c0e83}, !- Handle + {506f31ee-28b6-4497-a4a6-fd93d2cb43b5}, !- Source Object + 3, !- Outlet Port + {905f873d-72b1-45af-8816-08983838bef1}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {99f55831-88d1-4cf2-94d5-284c7002d25e}, !- Handle + Zone Outpatient Exam A end_a - Story ground WSHP Outlet Air Node, !- Name + {fe4b347c-9fb0-4a01-bf71-fe95b76979f4}, !- Inlet Port + {9bf08da6-eb1d-4519-bf5b-9c2834cf71c5}; !- Outlet Port + +OS:Connection, + {9bf08da6-eb1d-4519-bf5b-9c2834cf71c5}, !- Handle + {99f55831-88d1-4cf2-94d5-284c7002d25e}, !- Source Object + 3, !- Outlet Port + {e88a7202-c631-49b3-aca4-cb418a5eb612}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {fe4b347c-9fb0-4a01-bf71-fe95b76979f4}, !- Handle + {905f873d-72b1-45af-8816-08983838bef1}, !- Source Object + 4, !- Outlet Port + {99f55831-88d1-4cf2-94d5-284c7002d25e}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {f0f98b8f-2132-4069-85e6-164254634e5e}, !- Handle + Zone Outpatient Exam C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 45552.0250720538, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {2f0437c0-cad4-4dd7-874f-575bdfd4f497}, !- Handle + Zone Outpatient Exam C - Story ground Water-to-Air HP Htg Coil 243 Clg kBtu/hr 4.2COPH, !- Name + {a28402e9-64d0-458d-9d3e-909d96377b00}, !- Water Inlet Node Name + {d073430c-de3f-4f9e-acf4-140a20e111d4}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 3.90912631233192, !- Rated Air Flow Rate {m3/s} + 0.00149977951910832, !- Rated Water Flow Rate {m3/s} + 67792.6236416933, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {81b01c76-3a78-464d-88b7-e5f238ef8c2a}, !- Handle + Zone Outpatient Exam C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {95ef1375-46c7-47e2-bd7f-34a644df72dc}, !- Inlet Port + {a28402e9-64d0-458d-9d3e-909d96377b00}; !- Outlet Port + +OS:Connection, + {95ef1375-46c7-47e2-bd7f-34a644df72dc}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 56, !- Outlet Port + {81b01c76-3a78-464d-88b7-e5f238ef8c2a}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {bb9cf3e3-b2d9-4a9e-8c72-b3b680aa1f0b}, !- Handle + Zone Outpatient Exam C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {d073430c-de3f-4f9e-acf4-140a20e111d4}, !- Inlet Port + {8710cb43-1a4d-4f9a-bd15-9f5921952c59}; !- Outlet Port + +OS:Connection, + {a28402e9-64d0-458d-9d3e-909d96377b00}, !- Handle + {81b01c76-3a78-464d-88b7-e5f238ef8c2a}, !- Source Object + 3, !- Outlet Port + {2f0437c0-cad4-4dd7-874f-575bdfd4f497}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d073430c-de3f-4f9e-acf4-140a20e111d4}, !- Handle + {2f0437c0-cad4-4dd7-874f-575bdfd4f497}, !- Source Object + 3, !- Outlet Port + {bb9cf3e3-b2d9-4a9e-8c72-b3b680aa1f0b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8710cb43-1a4d-4f9a-bd15-9f5921952c59}, !- Handle + {bb9cf3e3-b2d9-4a9e-8c72-b3b680aa1f0b}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 56; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {d6f19afd-9c9e-4bb0-97b1-44223c85db77}, !- Handle + Zone Outpatient Exam C - Story ground Water-to-Air HP Clg Coil, !- Name + {41ae0cbc-37ad-4d3b-b157-0ec6a7f3382e}, !- Water Inlet Node Name + {1b58bff6-f4aa-4662-9bfa-8ae745d3bcfb}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 3.90912631233192, !- Rated Air Flow Rate {m3/s} + 0.00149977951910832, !- Rated Water Flow Rate {m3/s} + 71589.9167565427, !- Rated Total Cooling Capacity {W} + 50932.5524686014, !- Rated Sensible Cooling Capacity {W} + 3.4, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {6b8bb35b-8b1f-49cd-9bab-1721b1a63961}, !- Handle + Zone Outpatient Exam C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {28d5da8f-9cef-41ab-86e6-3a8e1236d65d}, !- Inlet Port + {41ae0cbc-37ad-4d3b-b157-0ec6a7f3382e}; !- Outlet Port + +OS:Connection, + {28d5da8f-9cef-41ab-86e6-3a8e1236d65d}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 57, !- Outlet Port + {6b8bb35b-8b1f-49cd-9bab-1721b1a63961}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {1f1101d1-884e-4006-90ff-f012f936574d}, !- Handle + Zone Outpatient Exam C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {1b58bff6-f4aa-4662-9bfa-8ae745d3bcfb}, !- Inlet Port + {6ba2080d-1702-4a7f-b80c-e8d7ea08e985}; !- Outlet Port + +OS:Connection, + {41ae0cbc-37ad-4d3b-b157-0ec6a7f3382e}, !- Handle + {6b8bb35b-8b1f-49cd-9bab-1721b1a63961}, !- Source Object + 3, !- Outlet Port + {d6f19afd-9c9e-4bb0-97b1-44223c85db77}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1b58bff6-f4aa-4662-9bfa-8ae745d3bcfb}, !- Handle + {d6f19afd-9c9e-4bb0-97b1-44223c85db77}, !- Source Object + 3, !- Outlet Port + {1f1101d1-884e-4006-90ff-f012f936574d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6ba2080d-1702-4a7f-b80c-e8d7ea08e985}, !- Handle + {1f1101d1-884e-4006-90ff-f012f936574d}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 57; !- Inlet Port + +OS:Fan:OnOff, + {ba8b9dbb-228f-4963-bfd2-c31c65cbddae}, !- Handle + Zone Outpatient Exam C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 3.90912631233192, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {24b6d3f3-c141-4a64-8902-80b7ae8e132f}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {a364e5b8-eba1-436d-a6be-764fce169c3b}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {24b6d3f3-c141-4a64-8902-80b7ae8e132f}, !- Handle + Fan On Off Power Curve 26, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {a364e5b8-eba1-436d-a6be-764fce169c3b}, !- Handle + Fan On Off Efficiency Curve 26, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {ed283ccc-af9d-4907-aef0-e089b8f8fff9}, !- Handle + Zone Outpatient Exam C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {9673e56c-0571-4176-80fd-2d1b1490bbac}, !- Air Inlet Node Name + {0c2decde-2dab-4174-859c-8dbffbe165ea}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 3.90912631233192, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 3.90912631233192, !- Supply Air Flow Rate During Heating Operation {m3/s} + 3.90912631233192, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {ba8b9dbb-228f-4963-bfd2-c31c65cbddae}, !- Supply Air Fan Name + {2f0437c0-cad4-4dd7-874f-575bdfd4f497}, !- Heating Coil Name + {d6f19afd-9c9e-4bb0-97b1-44223c85db77}, !- Cooling Coil Name + {f0f98b8f-2132-4069-85e6-164254634e5e}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {8ed0d13d-3477-435b-a4bd-1620187370ac}, !- Handle + Zone Outpatient Exam C - Story ground WSHP Inlet Air Node, !- Name + {1269aba1-32d8-45ea-9d02-bff1c957c799}, !- Inlet Port + {9673e56c-0571-4176-80fd-2d1b1490bbac}; !- Outlet Port + +OS:Connection, + {1269aba1-32d8-45ea-9d02-bff1c957c799}, !- Handle + {a67d20bc-14ae-4799-b916-70ece9134835}, !- Source Object + 2, !- Outlet Port + {8ed0d13d-3477-435b-a4bd-1620187370ac}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9673e56c-0571-4176-80fd-2d1b1490bbac}, !- Handle + {8ed0d13d-3477-435b-a4bd-1620187370ac}, !- Source Object + 3, !- Outlet Port + {ed283ccc-af9d-4907-aef0-e089b8f8fff9}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {fa49a453-70a2-4494-bd8a-94379004c718}, !- Handle + Zone Outpatient Exam C - Story ground WSHP Outlet Air Node, !- Name + {0c2decde-2dab-4174-859c-8dbffbe165ea}, !- Inlet Port + {16bc7598-fab8-4dc2-a73d-11cdf3829e47}; !- Outlet Port + +OS:Connection, + {16bc7598-fab8-4dc2-a73d-11cdf3829e47}, !- Handle + {fa49a453-70a2-4494-bd8a-94379004c718}, !- Source Object + 3, !- Outlet Port + {040db27d-47bd-476d-8019-9a2b9c1b383a}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {0c2decde-2dab-4174-859c-8dbffbe165ea}, !- Handle + {ed283ccc-af9d-4907-aef0-e089b8f8fff9}, !- Source Object + 4, !- Outlet Port + {fa49a453-70a2-4494-bd8a-94379004c718}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {3099c7ed-5603-4881-911c-93d63e6e9ed6}, !- Handle + Zone Outpatient Exam C end_a - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 8986.5237521317, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {07b7e94d-aeda-4fb6-8bc4-d19bb83cdc1b}, !- Handle + Zone Outpatient Exam C end_a - Story ground Water-to-Air HP Htg Coil 47 Clg kBtu/hr 4.2COPH, !- Name + {af7b287e-1b09-4fc5-8011-395491186f37}, !- Water Inlet Node Name + {53e4d564-14b4-4d29-849a-d03bd9f64272}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.857581473772007, !- Rated Air Flow Rate {m3/s} + 0.000298870050838177, !- Rated Water Flow Rate {m3/s} + 13509.4422987536, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {7b2a322a-640b-4775-8375-7a7f1d4d4cdf}, !- Handle + Zone Outpatient Exam C end_a - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {88c15f55-8f05-4f91-9f48-aa2437ec1351}, !- Inlet Port + {af7b287e-1b09-4fc5-8011-395491186f37}; !- Outlet Port + +OS:Connection, + {88c15f55-8f05-4f91-9f48-aa2437ec1351}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 58, !- Outlet Port + {7b2a322a-640b-4775-8375-7a7f1d4d4cdf}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {fdc0654c-45e8-4ea1-95fa-2ce80eb11fee}, !- Handle + Zone Outpatient Exam C end_a - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {53e4d564-14b4-4d29-849a-d03bd9f64272}, !- Inlet Port + {f1b84b6e-4d04-4c75-a45a-a11bde9e9d77}; !- Outlet Port + +OS:Connection, + {af7b287e-1b09-4fc5-8011-395491186f37}, !- Handle + {7b2a322a-640b-4775-8375-7a7f1d4d4cdf}, !- Source Object + 3, !- Outlet Port + {07b7e94d-aeda-4fb6-8bc4-d19bb83cdc1b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {53e4d564-14b4-4d29-849a-d03bd9f64272}, !- Handle + {07b7e94d-aeda-4fb6-8bc4-d19bb83cdc1b}, !- Source Object + 3, !- Outlet Port + {fdc0654c-45e8-4ea1-95fa-2ce80eb11fee}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f1b84b6e-4d04-4c75-a45a-a11bde9e9d77}, !- Handle + {fdc0654c-45e8-4ea1-95fa-2ce80eb11fee}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 58; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {baeb1c3a-80f4-4895-8835-ca10e2425816}, !- Handle + Zone Outpatient Exam C end_a - Story ground Water-to-Air HP Clg Coil 47kBtu/hr 12.0EER, !- Name + {09791b05-dff3-470c-86e3-0fb4c84e9105}, !- Water Inlet Node Name + {2e998442-fd46-4292-9435-56aeb27b806f}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.857581473772007, !- Rated Air Flow Rate {m3/s} + 0.000298870050838177, !- Rated Water Flow Rate {m3/s} + 14266.1516495769, !- Rated Total Cooling Capacity {W} + 10673.5786212123, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {fe9f20fb-d303-4d85-a0ed-6982bab7d161}, !- Handle + Zone Outpatient Exam C end_a - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {20ff7fc5-1086-48bb-9d0b-1bf70b78eacf}, !- Inlet Port + {09791b05-dff3-470c-86e3-0fb4c84e9105}; !- Outlet Port + +OS:Connection, + {20ff7fc5-1086-48bb-9d0b-1bf70b78eacf}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 59, !- Outlet Port + {fe9f20fb-d303-4d85-a0ed-6982bab7d161}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {ac82dfd7-d16c-42c9-b8bf-185586efc69c}, !- Handle + Zone Outpatient Exam C end_a - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {2e998442-fd46-4292-9435-56aeb27b806f}, !- Inlet Port + {5450a5e2-319f-47f8-8310-2744f3eb2afa}; !- Outlet Port + +OS:Connection, + {09791b05-dff3-470c-86e3-0fb4c84e9105}, !- Handle + {fe9f20fb-d303-4d85-a0ed-6982bab7d161}, !- Source Object + 3, !- Outlet Port + {baeb1c3a-80f4-4895-8835-ca10e2425816}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2e998442-fd46-4292-9435-56aeb27b806f}, !- Handle + {baeb1c3a-80f4-4895-8835-ca10e2425816}, !- Source Object + 3, !- Outlet Port + {ac82dfd7-d16c-42c9-b8bf-185586efc69c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {5450a5e2-319f-47f8-8310-2744f3eb2afa}, !- Handle + {ac82dfd7-d16c-42c9-b8bf-185586efc69c}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 59; !- Inlet Port + +OS:Fan:OnOff, + {df9d0850-6b6b-42ef-8a45-2b5c70cd1209}, !- Handle + Zone Outpatient Exam C end_a - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.857581473772007, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {7b4c280e-4d91-43fb-af79-e25b0d5b7188}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {fa715488-41b8-4250-9b19-a805c92f22c8}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {7b4c280e-4d91-43fb-af79-e25b0d5b7188}, !- Handle + Fan On Off Power Curve 27, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {fa715488-41b8-4250-9b19-a805c92f22c8}, !- Handle + Fan On Off Efficiency Curve 27, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {ae1eeabd-bfd1-4a0b-ad98-5da1cd86879e}, !- Handle + Zone Outpatient Exam C end_a - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {d27a5455-980f-44b0-b83d-463380528c9b}, !- Air Inlet Node Name + {be34850b-4d56-4dfb-897e-3990e86e222d}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.857581473772007, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.857581473772007, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.857581473772007, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {df9d0850-6b6b-42ef-8a45-2b5c70cd1209}, !- Supply Air Fan Name + {07b7e94d-aeda-4fb6-8bc4-d19bb83cdc1b}, !- Heating Coil Name + {baeb1c3a-80f4-4895-8835-ca10e2425816}, !- Cooling Coil Name + {3099c7ed-5603-4881-911c-93d63e6e9ed6}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {4028bff1-2e56-480d-b5f8-73d97d1562ca}, !- Handle + Zone Outpatient Exam C end_a - Story ground WSHP Inlet Air Node, !- Name + {d70ab58f-5d4c-410b-b1cf-9613487a6136}, !- Inlet Port + {d27a5455-980f-44b0-b83d-463380528c9b}; !- Outlet Port + +OS:Connection, + {d70ab58f-5d4c-410b-b1cf-9613487a6136}, !- Handle + {a09973ca-8bb7-4c49-9554-b66883f41309}, !- Source Object + 2, !- Outlet Port + {4028bff1-2e56-480d-b5f8-73d97d1562ca}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d27a5455-980f-44b0-b83d-463380528c9b}, !- Handle + {4028bff1-2e56-480d-b5f8-73d97d1562ca}, !- Source Object + 3, !- Outlet Port + {ae1eeabd-bfd1-4a0b-ad98-5da1cd86879e}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {39f1b925-e7f6-4864-b14a-29c2e7511e93}, !- Handle + Zone Outpatient Exam C end_a - Story ground WSHP Outlet Air Node, !- Name + {be34850b-4d56-4dfb-897e-3990e86e222d}, !- Inlet Port + {fe019cdc-6277-4397-b02d-9737ca68477b}; !- Outlet Port + +OS:Connection, + {fe019cdc-6277-4397-b02d-9737ca68477b}, !- Handle + {39f1b925-e7f6-4864-b14a-29c2e7511e93}, !- Source Object + 3, !- Outlet Port + {f6c4c369-8269-45fc-b416-50a81132052a}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {be34850b-4d56-4dfb-897e-3990e86e222d}, !- Handle + {ae1eeabd-bfd1-4a0b-ad98-5da1cd86879e}, !- Source Object + 4, !- Outlet Port + {39f1b925-e7f6-4864-b14a-29c2e7511e93}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {aad3550a-9c57-4863-a00a-5a1a75bb3fed}, !- Handle + Zone Outpatient Hall B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 81491.2493082533, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {ee104eeb-b3dc-4019-a65d-ac53e7d7e3b3}, !- Handle + Zone Outpatient Hall B - Story ground Water-to-Air HP Htg Coil 274 Clg kBtu/hr 4.2COPH, !- Name + {88ff85e0-7a2b-49b2-8538-70d32144f4b4}, !- Water Inlet Node Name + {d1c404e1-77d4-4810-91ad-f1e8d8cb6db1}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 5.09158715402576, !- Rated Air Flow Rate {m3/s} + 0.00175506842164109, !- Rated Water Flow Rate {m3/s} + 79332.1227939384, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {10ac0055-c931-4a06-930e-41c2111bb0a0}, !- Handle + Zone Outpatient Hall B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {38987f51-830b-4251-8d0c-60d51c59c08a}, !- Inlet Port + {88ff85e0-7a2b-49b2-8538-70d32144f4b4}; !- Outlet Port + +OS:Connection, + {38987f51-830b-4251-8d0c-60d51c59c08a}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 60, !- Outlet Port + {10ac0055-c931-4a06-930e-41c2111bb0a0}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {9e0f29d2-442a-4b6d-a077-7892b3559067}, !- Handle + Zone Outpatient Hall B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {d1c404e1-77d4-4810-91ad-f1e8d8cb6db1}, !- Inlet Port + {61fc8691-54b5-46c2-bd08-29fc10f8034f}; !- Outlet Port + +OS:Connection, + {88ff85e0-7a2b-49b2-8538-70d32144f4b4}, !- Handle + {10ac0055-c931-4a06-930e-41c2111bb0a0}, !- Source Object + 3, !- Outlet Port + {ee104eeb-b3dc-4019-a65d-ac53e7d7e3b3}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d1c404e1-77d4-4810-91ad-f1e8d8cb6db1}, !- Handle + {ee104eeb-b3dc-4019-a65d-ac53e7d7e3b3}, !- Source Object + 3, !- Outlet Port + {9e0f29d2-442a-4b6d-a077-7892b3559067}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {61fc8691-54b5-46c2-bd08-29fc10f8034f}, !- Handle + {9e0f29d2-442a-4b6d-a077-7892b3559067}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 60; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {6560220d-7f1c-449b-a717-ca0f0ebf5072}, !- Handle + Zone Outpatient Hall B - Story ground Water-to-Air HP Clg Coil, !- Name + {9dfcbc61-994f-4fe0-89f3-c1f87295e78f}, !- Water Inlet Node Name + {28dca283-ab99-45c4-96f5-7505272589c5}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 5.09158715402576, !- Rated Air Flow Rate {m3/s} + 0.00175506842164109, !- Rated Water Flow Rate {m3/s} + 83775.7821109756, !- Rated Total Cooling Capacity {W} + 63071.8602185888, !- Rated Sensible Cooling Capacity {W} + 3.4, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {c8dc3545-5711-46fd-a53b-f020bace092c}, !- Handle + Zone Outpatient Hall B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {44308ad6-4627-4a6d-abb6-02b5b555d7ce}, !- Inlet Port + {9dfcbc61-994f-4fe0-89f3-c1f87295e78f}; !- Outlet Port + +OS:Connection, + {44308ad6-4627-4a6d-abb6-02b5b555d7ce}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 61, !- Outlet Port + {c8dc3545-5711-46fd-a53b-f020bace092c}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {b6602858-b7ac-48d2-aeda-01b1b021df48}, !- Handle + Zone Outpatient Hall B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {28dca283-ab99-45c4-96f5-7505272589c5}, !- Inlet Port + {9e0d998f-5986-4e65-9915-505065afe846}; !- Outlet Port + +OS:Connection, + {9dfcbc61-994f-4fe0-89f3-c1f87295e78f}, !- Handle + {c8dc3545-5711-46fd-a53b-f020bace092c}, !- Source Object + 3, !- Outlet Port + {6560220d-7f1c-449b-a717-ca0f0ebf5072}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {28dca283-ab99-45c4-96f5-7505272589c5}, !- Handle + {6560220d-7f1c-449b-a717-ca0f0ebf5072}, !- Source Object + 3, !- Outlet Port + {b6602858-b7ac-48d2-aeda-01b1b021df48}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9e0d998f-5986-4e65-9915-505065afe846}, !- Handle + {b6602858-b7ac-48d2-aeda-01b1b021df48}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 61; !- Inlet Port + +OS:Fan:OnOff, + {8d8f0bac-e22f-4961-8534-f682e8442681}, !- Handle + Zone Outpatient Hall B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 5.09158715402576, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {fcb6fa08-667f-4eae-963b-0b65f88154fe}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {cb717e26-e9fe-454f-8c4e-d62d00a43ef1}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {fcb6fa08-667f-4eae-963b-0b65f88154fe}, !- Handle + Fan On Off Power Curve 28, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {cb717e26-e9fe-454f-8c4e-d62d00a43ef1}, !- Handle + Fan On Off Efficiency Curve 28, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {4e68c34e-c319-4036-86a8-f3ae09e2112e}, !- Handle + Zone Outpatient Hall B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {66e73b9e-b199-4dbf-be25-2a8da61792b7}, !- Air Inlet Node Name + {855d8eee-6777-499e-adab-83077cc0ec7e}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 5.09158715402576, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 5.09158715402576, !- Supply Air Flow Rate During Heating Operation {m3/s} + 5.09158715402576, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {8d8f0bac-e22f-4961-8534-f682e8442681}, !- Supply Air Fan Name + {ee104eeb-b3dc-4019-a65d-ac53e7d7e3b3}, !- Heating Coil Name + {6560220d-7f1c-449b-a717-ca0f0ebf5072}, !- Cooling Coil Name + {aad3550a-9c57-4863-a00a-5a1a75bb3fed}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {a251c69b-f8d8-480e-92d2-b10f411f0845}, !- Handle + Zone Outpatient Hall B - Story ground WSHP Inlet Air Node, !- Name + {5b807492-40b9-4f76-b6cc-27a651d76361}, !- Inlet Port + {66e73b9e-b199-4dbf-be25-2a8da61792b7}; !- Outlet Port + +OS:Connection, + {5b807492-40b9-4f76-b6cc-27a651d76361}, !- Handle + {6f4157f8-3c7e-418e-8ea8-e39bc0e49b70}, !- Source Object + 2, !- Outlet Port + {a251c69b-f8d8-480e-92d2-b10f411f0845}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {66e73b9e-b199-4dbf-be25-2a8da61792b7}, !- Handle + {a251c69b-f8d8-480e-92d2-b10f411f0845}, !- Source Object + 3, !- Outlet Port + {4e68c34e-c319-4036-86a8-f3ae09e2112e}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {00dba462-10d3-44c4-9310-d891108b77ba}, !- Handle + Zone Outpatient Hall B - Story ground WSHP Outlet Air Node, !- Name + {855d8eee-6777-499e-adab-83077cc0ec7e}, !- Inlet Port + {aba15370-d8ea-44a9-993e-c58615d1d6ce}; !- Outlet Port + +OS:Connection, + {aba15370-d8ea-44a9-993e-c58615d1d6ce}, !- Handle + {00dba462-10d3-44c4-9310-d891108b77ba}, !- Source Object + 3, !- Outlet Port + {550a7d97-ea54-4014-86e3-b00783f75b61}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {855d8eee-6777-499e-adab-83077cc0ec7e}, !- Handle + {4e68c34e-c319-4036-86a8-f3ae09e2112e}, !- Source Object + 4, !- Outlet Port + {00dba462-10d3-44c4-9310-d891108b77ba}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {1a497a41-4292-4ac7-9204-e1d2ce085363}, !- Handle + Zone Outpatient Hall B end_a - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 25021.879361987, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {6750a9d3-cbee-4ef6-8595-8b37408d5ce7}, !- Handle + Zone Outpatient Hall B end_a - Story ground Water-to-Air HP Htg Coil 120 Clg kBtu/hr 4.2COPH, !- Name + {b7bd9862-8ac4-4892-a5d6-fad1babbbdf0}, !- Water Inlet Node Name + {8f07607b-8787-4602-b94e-4a068e22a010}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 2.51787485775316, !- Rated Air Flow Rate {m3/s} + 0.000794159470096845, !- Rated Water Flow Rate {m3/s} + 35897.3791692868, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {f9911f99-3f8b-4633-a079-73c94d1d7654}, !- Handle + Zone Outpatient Hall B end_a - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {70cc6d2a-ddca-4f99-a34f-83e4a863238d}, !- Inlet Port + {b7bd9862-8ac4-4892-a5d6-fad1babbbdf0}; !- Outlet Port + +OS:Connection, + {70cc6d2a-ddca-4f99-a34f-83e4a863238d}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 62, !- Outlet Port + {f9911f99-3f8b-4633-a079-73c94d1d7654}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {d2b5128e-06d3-4d9c-aaf7-a0460b25d154}, !- Handle + Zone Outpatient Hall B end_a - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {8f07607b-8787-4602-b94e-4a068e22a010}, !- Inlet Port + {8b6f48fc-85f7-41ce-b94b-413dd8d1925f}; !- Outlet Port + +OS:Connection, + {b7bd9862-8ac4-4892-a5d6-fad1babbbdf0}, !- Handle + {f9911f99-3f8b-4633-a079-73c94d1d7654}, !- Source Object + 3, !- Outlet Port + {6750a9d3-cbee-4ef6-8595-8b37408d5ce7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8f07607b-8787-4602-b94e-4a068e22a010}, !- Handle + {6750a9d3-cbee-4ef6-8595-8b37408d5ce7}, !- Source Object + 3, !- Outlet Port + {d2b5128e-06d3-4d9c-aaf7-a0460b25d154}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8b6f48fc-85f7-41ce-b94b-413dd8d1925f}, !- Handle + {d2b5128e-06d3-4d9c-aaf7-a0460b25d154}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 62; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {29f0bda9-a711-40aa-97bc-b8eae915be67}, !- Handle + Zone Outpatient Hall B end_a - Story ground Water-to-Air HP Clg Coil 120kBtu/hr 12.0EER, !- Name + {63355940-6a24-48bd-b645-68e8bb9949a0}, !- Water Inlet Node Name + {bc0e4bda-448d-4394-90ee-271086e5c6a6}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 2.51787485775316, !- Rated Air Flow Rate {m3/s} + 0.000794159470096845, !- Rated Water Flow Rate {m3/s} + 37908.1122466954, !- Rated Total Cooling Capacity {W} + 30084.1283368078, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {6bc0ba2f-d7a3-45e6-819c-eee4d01914aa}, !- Handle + Zone Outpatient Hall B end_a - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {254c4d45-a76e-4551-979f-7f126999b734}, !- Inlet Port + {63355940-6a24-48bd-b645-68e8bb9949a0}; !- Outlet Port + +OS:Connection, + {254c4d45-a76e-4551-979f-7f126999b734}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 63, !- Outlet Port + {6bc0ba2f-d7a3-45e6-819c-eee4d01914aa}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {6703e09b-feef-4278-ab78-4dd177d7bec2}, !- Handle + Zone Outpatient Hall B end_a - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {bc0e4bda-448d-4394-90ee-271086e5c6a6}, !- Inlet Port + {cc3570e7-7168-44f2-aa2f-a6aedef5c6f3}; !- Outlet Port + +OS:Connection, + {63355940-6a24-48bd-b645-68e8bb9949a0}, !- Handle + {6bc0ba2f-d7a3-45e6-819c-eee4d01914aa}, !- Source Object + 3, !- Outlet Port + {29f0bda9-a711-40aa-97bc-b8eae915be67}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bc0e4bda-448d-4394-90ee-271086e5c6a6}, !- Handle + {29f0bda9-a711-40aa-97bc-b8eae915be67}, !- Source Object + 3, !- Outlet Port + {6703e09b-feef-4278-ab78-4dd177d7bec2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {cc3570e7-7168-44f2-aa2f-a6aedef5c6f3}, !- Handle + {6703e09b-feef-4278-ab78-4dd177d7bec2}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 63; !- Inlet Port + +OS:Fan:OnOff, + {1b77767b-55dc-4ebf-a738-24957acb4d84}, !- Handle + Zone Outpatient Hall B end_a - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 2.51787485775316, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {196dd8c9-2ccd-40d6-ba2e-a5dddf4d2010}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {4869dfaf-d3b4-437a-878b-8a5c05acf6e4}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {196dd8c9-2ccd-40d6-ba2e-a5dddf4d2010}, !- Handle + Fan On Off Power Curve 29, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {4869dfaf-d3b4-437a-878b-8a5c05acf6e4}, !- Handle + Fan On Off Efficiency Curve 29, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {4e7569e8-159e-4800-a29a-6414a4281378}, !- Handle + Zone Outpatient Hall B end_a - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {4490d4bd-dfbb-4475-96b0-9ba3b1193ea9}, !- Air Inlet Node Name + {f54d4a76-42dd-49d4-892b-379171dd36f0}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 2.51787485775316, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 2.51787485775316, !- Supply Air Flow Rate During Heating Operation {m3/s} + 2.51787485775316, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {1b77767b-55dc-4ebf-a738-24957acb4d84}, !- Supply Air Fan Name + {6750a9d3-cbee-4ef6-8595-8b37408d5ce7}, !- Heating Coil Name + {29f0bda9-a711-40aa-97bc-b8eae915be67}, !- Cooling Coil Name + {1a497a41-4292-4ac7-9204-e1d2ce085363}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {432f7f71-ba80-4cdd-9459-26c2129abb7d}, !- Handle + Zone Outpatient Hall B end_a - Story ground WSHP Inlet Air Node, !- Name + {d145f710-3eb1-4971-bdf7-cf48da4c6f46}, !- Inlet Port + {4490d4bd-dfbb-4475-96b0-9ba3b1193ea9}; !- Outlet Port + +OS:Connection, + {d145f710-3eb1-4971-bdf7-cf48da4c6f46}, !- Handle + {c297e94b-e6aa-4fba-a5c0-7aece9946b6e}, !- Source Object + 2, !- Outlet Port + {432f7f71-ba80-4cdd-9459-26c2129abb7d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4490d4bd-dfbb-4475-96b0-9ba3b1193ea9}, !- Handle + {432f7f71-ba80-4cdd-9459-26c2129abb7d}, !- Source Object + 3, !- Outlet Port + {4e7569e8-159e-4800-a29a-6414a4281378}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {922ab7c4-50ea-4515-b125-f505527c4814}, !- Handle + Zone Outpatient Hall B end_a - Story ground WSHP Outlet Air Node, !- Name + {f54d4a76-42dd-49d4-892b-379171dd36f0}, !- Inlet Port + {ad52bdab-9ed6-4109-811e-1f4dab0e1b0b}; !- Outlet Port + +OS:Connection, + {ad52bdab-9ed6-4109-811e-1f4dab0e1b0b}, !- Handle + {922ab7c4-50ea-4515-b125-f505527c4814}, !- Source Object + 3, !- Outlet Port + {eda8d083-a741-4031-bbeb-49a63073c96c}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {f54d4a76-42dd-49d4-892b-379171dd36f0}, !- Handle + {4e7569e8-159e-4800-a29a-6414a4281378}, !- Source Object + 4, !- Outlet Port + {922ab7c4-50ea-4515-b125-f505527c4814}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {803be08c-7a9d-4936-a9bb-59d856c88662}, !- Handle + Zone Outpatient IT_Room A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 247.887710383005, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {bdf2a775-f3ad-4835-9086-785af8ff394a}, !- Handle + Zone Outpatient IT_Room A - Story ground Water-to-Air HP Htg Coil 1 Clg kBtu/hr 4.2COPH, !- Name + {f30a4cde-b86e-4452-8884-6e684d7854f1}, !- Water Inlet Node Name + {1aa34bae-9fe4-4158-8f52-aca93984eca4}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0126386469297767, !- Rated Air Flow Rate {m3/s} + 4.47611824069188e-06, !- Rated Water Flow Rate {m3/s} + 202.328272523254, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {bf055832-e21b-4ee1-9071-d5aad6ca14b0}, !- Handle + Zone Outpatient IT_Room A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {b6e3b557-d28c-4b36-b3ce-70c48c45ae25}, !- Inlet Port + {f30a4cde-b86e-4452-8884-6e684d7854f1}; !- Outlet Port + +OS:Connection, + {b6e3b557-d28c-4b36-b3ce-70c48c45ae25}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 64, !- Outlet Port + {bf055832-e21b-4ee1-9071-d5aad6ca14b0}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {48e7ebcf-5779-4185-b926-83e6342d7516}, !- Handle + Zone Outpatient IT_Room A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {1aa34bae-9fe4-4158-8f52-aca93984eca4}, !- Inlet Port + {1b229aa4-fa15-4c3d-a7af-e71dd38cdd5b}; !- Outlet Port + +OS:Connection, + {f30a4cde-b86e-4452-8884-6e684d7854f1}, !- Handle + {bf055832-e21b-4ee1-9071-d5aad6ca14b0}, !- Source Object + 3, !- Outlet Port + {bdf2a775-f3ad-4835-9086-785af8ff394a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1aa34bae-9fe4-4158-8f52-aca93984eca4}, !- Handle + {bdf2a775-f3ad-4835-9086-785af8ff394a}, !- Source Object + 3, !- Outlet Port + {48e7ebcf-5779-4185-b926-83e6342d7516}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1b229aa4-fa15-4c3d-a7af-e71dd38cdd5b}, !- Handle + {48e7ebcf-5779-4185-b926-83e6342d7516}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 64; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {d34acb56-3ea8-4feb-bce3-d573fcfd0f8a}, !- Handle + Zone Outpatient IT_Room A - Story ground Water-to-Air HP Clg Coil 1kBtu/hr 11.2EER, !- Name + {3e9ae686-b559-4a68-bef1-e848e7e2a47d}, !- Water Inlet Node Name + {75e72ceb-b5f2-4a8b-8397-244f456eb657}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0126386469297767, !- Rated Air Flow Rate {m3/s} + 4.47611824069188e-06, !- Rated Water Flow Rate {m3/s} + 213.661360327211, !- Rated Total Cooling Capacity {W} + 158.452568738363, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {7a6b04ae-9b87-47c3-83c5-4eed933f0193}, !- Handle + Zone Outpatient IT_Room A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {33102669-2ecd-4b96-9069-4732aedeaf1a}, !- Inlet Port + {3e9ae686-b559-4a68-bef1-e848e7e2a47d}; !- Outlet Port + +OS:Connection, + {33102669-2ecd-4b96-9069-4732aedeaf1a}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 65, !- Outlet Port + {7a6b04ae-9b87-47c3-83c5-4eed933f0193}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {798849ed-1e03-4458-8503-2f51cb94a5c6}, !- Handle + Zone Outpatient IT_Room A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {75e72ceb-b5f2-4a8b-8397-244f456eb657}, !- Inlet Port + {ca51803e-147e-4bdf-96d6-ed5d2d9b3e50}; !- Outlet Port + +OS:Connection, + {3e9ae686-b559-4a68-bef1-e848e7e2a47d}, !- Handle + {7a6b04ae-9b87-47c3-83c5-4eed933f0193}, !- Source Object + 3, !- Outlet Port + {d34acb56-3ea8-4feb-bce3-d573fcfd0f8a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {75e72ceb-b5f2-4a8b-8397-244f456eb657}, !- Handle + {d34acb56-3ea8-4feb-bce3-d573fcfd0f8a}, !- Source Object + 3, !- Outlet Port + {798849ed-1e03-4458-8503-2f51cb94a5c6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ca51803e-147e-4bdf-96d6-ed5d2d9b3e50}, !- Handle + {798849ed-1e03-4458-8503-2f51cb94a5c6}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 65; !- Inlet Port + +OS:Fan:OnOff, + {1540a1c7-52df-4794-bb0b-cb39e9ca7896}, !- Handle + Zone Outpatient IT_Room A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0126386469297767, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {fed90083-3e13-4a39-b2e7-d5e9d6845839}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {40917e7a-7899-4151-9f1a-e12d3dd3da71}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {fed90083-3e13-4a39-b2e7-d5e9d6845839}, !- Handle + Fan On Off Power Curve 30, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {40917e7a-7899-4151-9f1a-e12d3dd3da71}, !- Handle + Fan On Off Efficiency Curve 30, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {1d482285-af36-4eaf-9b2d-3661375dd7bb}, !- Handle + Zone Outpatient IT_Room A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {6c276931-61d8-4e87-9d25-959c7ac3e786}, !- Air Inlet Node Name + {483a35d1-0f5a-48b7-801a-4fd7e4273f1b}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0126386469297767, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0126386469297767, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0126386469297767, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {1540a1c7-52df-4794-bb0b-cb39e9ca7896}, !- Supply Air Fan Name + {bdf2a775-f3ad-4835-9086-785af8ff394a}, !- Heating Coil Name + {d34acb56-3ea8-4feb-bce3-d573fcfd0f8a}, !- Cooling Coil Name + {803be08c-7a9d-4936-a9bb-59d856c88662}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {05236f7d-e943-4a9e-9aa3-6286b0263367}, !- Handle + Zone Outpatient IT_Room A - Story ground WSHP Inlet Air Node, !- Name + {2e4655dc-de68-4ee3-9eda-8df6602c97c3}, !- Inlet Port + {6c276931-61d8-4e87-9d25-959c7ac3e786}; !- Outlet Port + +OS:Connection, + {2e4655dc-de68-4ee3-9eda-8df6602c97c3}, !- Handle + {cde8e11f-4a3d-4465-8145-c58fef87bad2}, !- Source Object + 2, !- Outlet Port + {05236f7d-e943-4a9e-9aa3-6286b0263367}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6c276931-61d8-4e87-9d25-959c7ac3e786}, !- Handle + {05236f7d-e943-4a9e-9aa3-6286b0263367}, !- Source Object + 3, !- Outlet Port + {1d482285-af36-4eaf-9b2d-3661375dd7bb}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {ae886470-a707-4bd4-8aef-edb85f049d71}, !- Handle + Zone Outpatient IT_Room A - Story ground WSHP Outlet Air Node, !- Name + {483a35d1-0f5a-48b7-801a-4fd7e4273f1b}, !- Inlet Port + {ca1bdbbd-fc0c-4b96-abaa-4fc87c8cc726}; !- Outlet Port + +OS:Connection, + {ca1bdbbd-fc0c-4b96-abaa-4fc87c8cc726}, !- Handle + {ae886470-a707-4bd4-8aef-edb85f049d71}, !- Source Object + 3, !- Outlet Port + {b50b2a81-4121-4ee8-b7ba-3d9147e7a831}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {483a35d1-0f5a-48b7-801a-4fd7e4273f1b}, !- Handle + {1d482285-af36-4eaf-9b2d-3661375dd7bb}, !- Source Object + 4, !- Outlet Port + {ae886470-a707-4bd4-8aef-edb85f049d71}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {a376423f-0642-4000-99c5-ce954068183c}, !- Handle + Zone Outpatient IT_Room B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 1923.80085213649, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {8fc81787-5f98-4494-b8b3-54508668fe36}, !- Handle + Zone Outpatient IT_Room B - Story ground Water-to-Air HP Htg Coil 7 Clg kBtu/hr 4.2COPH, !- Name + {a04f2128-7892-403d-a6bb-ec8396a9b48d}, !- Water Inlet Node Name + {2f5efe32-8364-43bd-b013-b91eb775baa3}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.103549652493258, !- Rated Air Flow Rate {m3/s} + 3.66398934334003e-05, !- Rated Water Flow Rate {m3/s} + 1656.18644217721, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {152853d4-bb1c-450a-b68d-3e9bda6c1239}, !- Handle + Zone Outpatient IT_Room B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {a56a6e77-e03a-4944-bbc7-7bd4c1e5187f}, !- Inlet Port + {a04f2128-7892-403d-a6bb-ec8396a9b48d}; !- Outlet Port + +OS:Connection, + {a56a6e77-e03a-4944-bbc7-7bd4c1e5187f}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 66, !- Outlet Port + {152853d4-bb1c-450a-b68d-3e9bda6c1239}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {ffa39a28-abcd-4c2e-814e-9c1d276bbfbf}, !- Handle + Zone Outpatient IT_Room B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {2f5efe32-8364-43bd-b013-b91eb775baa3}, !- Inlet Port + {fee404eb-c7f0-4ab6-bb14-e049e61fb0b4}; !- Outlet Port + +OS:Connection, + {a04f2128-7892-403d-a6bb-ec8396a9b48d}, !- Handle + {152853d4-bb1c-450a-b68d-3e9bda6c1239}, !- Source Object + 3, !- Outlet Port + {8fc81787-5f98-4494-b8b3-54508668fe36}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2f5efe32-8364-43bd-b013-b91eb775baa3}, !- Handle + {8fc81787-5f98-4494-b8b3-54508668fe36}, !- Source Object + 3, !- Outlet Port + {ffa39a28-abcd-4c2e-814e-9c1d276bbfbf}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fee404eb-c7f0-4ab6-bb14-e049e61fb0b4}, !- Handle + {ffa39a28-abcd-4c2e-814e-9c1d276bbfbf}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 66; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {ca2019b7-9d93-4628-acaf-09976ba7e54c}, !- Handle + Zone Outpatient IT_Room B - Story ground Water-to-Air HP Clg Coil 7kBtu/hr 11.2EER, !- Name + {57dfb584-688e-4b19-a618-f5de30f1a5d8}, !- Water Inlet Node Name + {8500929d-138a-49fb-93f0-3e72e2775e43}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.103549652493258, !- Rated Air Flow Rate {m3/s} + 3.66398934334003e-05, !- Rated Water Flow Rate {m3/s} + 1748.95502135222, !- Rated Total Cooling Capacity {W} + 1297.680007393, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {b7da8cb0-5f32-4e09-b201-17471ac08444}, !- Handle + Zone Outpatient IT_Room B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {3b09fa9a-637f-4e47-99e7-fe0fe45d19c7}, !- Inlet Port + {57dfb584-688e-4b19-a618-f5de30f1a5d8}; !- Outlet Port + +OS:Connection, + {3b09fa9a-637f-4e47-99e7-fe0fe45d19c7}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 67, !- Outlet Port + {b7da8cb0-5f32-4e09-b201-17471ac08444}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {faafa886-91d7-4775-9e2e-63aeaa97a3a3}, !- Handle + Zone Outpatient IT_Room B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {8500929d-138a-49fb-93f0-3e72e2775e43}, !- Inlet Port + {52b9d6cb-ee15-481c-a1e2-7d3c59fa6f23}; !- Outlet Port + +OS:Connection, + {57dfb584-688e-4b19-a618-f5de30f1a5d8}, !- Handle + {b7da8cb0-5f32-4e09-b201-17471ac08444}, !- Source Object + 3, !- Outlet Port + {ca2019b7-9d93-4628-acaf-09976ba7e54c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8500929d-138a-49fb-93f0-3e72e2775e43}, !- Handle + {ca2019b7-9d93-4628-acaf-09976ba7e54c}, !- Source Object + 3, !- Outlet Port + {faafa886-91d7-4775-9e2e-63aeaa97a3a3}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {52b9d6cb-ee15-481c-a1e2-7d3c59fa6f23}, !- Handle + {faafa886-91d7-4775-9e2e-63aeaa97a3a3}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 67; !- Inlet Port + +OS:Fan:OnOff, + {405b11a1-9c0c-4e85-b767-3ae1076d26b3}, !- Handle + Zone Outpatient IT_Room B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.103549652493258, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {8858dca2-fbf0-4c95-a2a5-ee29237a576f}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {40429fd0-5a0a-4379-a967-fafc99fadd53}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {8858dca2-fbf0-4c95-a2a5-ee29237a576f}, !- Handle + Fan On Off Power Curve 31, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {40429fd0-5a0a-4379-a967-fafc99fadd53}, !- Handle + Fan On Off Efficiency Curve 31, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {f42ce8e4-0a5a-4c78-ac05-566a017110ea}, !- Handle + Zone Outpatient IT_Room B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {831f7add-0ea3-4bec-a1c2-65b81a72031b}, !- Air Inlet Node Name + {e42e2eec-3a74-4ac4-aaf5-417290dc8e25}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.103549652493258, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.103549652493258, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.103549652493258, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {405b11a1-9c0c-4e85-b767-3ae1076d26b3}, !- Supply Air Fan Name + {8fc81787-5f98-4494-b8b3-54508668fe36}, !- Heating Coil Name + {ca2019b7-9d93-4628-acaf-09976ba7e54c}, !- Cooling Coil Name + {a376423f-0642-4000-99c5-ce954068183c}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {2bc408ce-5bae-44d6-947c-6e21132d302a}, !- Handle + Zone Outpatient IT_Room B - Story ground WSHP Inlet Air Node, !- Name + {2c2a2376-78a5-4774-9a83-70246ef8a986}, !- Inlet Port + {831f7add-0ea3-4bec-a1c2-65b81a72031b}; !- Outlet Port + +OS:Connection, + {2c2a2376-78a5-4774-9a83-70246ef8a986}, !- Handle + {25711b08-0f4d-466a-a4fe-ed97774baf05}, !- Source Object + 2, !- Outlet Port + {2bc408ce-5bae-44d6-947c-6e21132d302a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {831f7add-0ea3-4bec-a1c2-65b81a72031b}, !- Handle + {2bc408ce-5bae-44d6-947c-6e21132d302a}, !- Source Object + 3, !- Outlet Port + {f42ce8e4-0a5a-4c78-ac05-566a017110ea}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {578889a5-2966-4fce-b433-a4ee7bd6e53e}, !- Handle + Zone Outpatient IT_Room B - Story ground WSHP Outlet Air Node, !- Name + {e42e2eec-3a74-4ac4-aaf5-417290dc8e25}, !- Inlet Port + {074f2a27-1468-4ecf-b54c-3c2fbdfe3116}; !- Outlet Port + +OS:Connection, + {074f2a27-1468-4ecf-b54c-3c2fbdfe3116}, !- Handle + {578889a5-2966-4fce-b433-a4ee7bd6e53e}, !- Source Object + 3, !- Outlet Port + {af3cd633-f5cc-4983-96ae-059e3d8683ac}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {e42e2eec-3a74-4ac4-aaf5-417290dc8e25}, !- Handle + {f42ce8e4-0a5a-4c78-ac05-566a017110ea}, !- Source Object + 4, !- Outlet Port + {578889a5-2966-4fce-b433-a4ee7bd6e53e}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {dcc16cf1-8fba-4336-9544-8ad35f490326}, !- Handle + Zone Outpatient IT_Room C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 247.887710382956, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {6d288619-5e9d-4bc6-96da-89bef187a53e}, !- Handle + Zone Outpatient IT_Room C - Story ground Water-to-Air HP Htg Coil 1 Clg kBtu/hr 4.2COPH, !- Name + {9fc81df8-67fa-4e5d-b6ee-5b35a3b29fba}, !- Water Inlet Node Name + {2ed99a33-83ce-449c-af8a-719516dfa0e2}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0126386477458614, !- Rated Air Flow Rate {m3/s} + 4.47611848984542e-06, !- Rated Water Flow Rate {m3/s} + 202.328283785424, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {e59a7bfa-1239-4971-9f84-e62262f21772}, !- Handle + Zone Outpatient IT_Room C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {e91b05ff-af6e-4163-9259-c043766da053}, !- Inlet Port + {9fc81df8-67fa-4e5d-b6ee-5b35a3b29fba}; !- Outlet Port + +OS:Connection, + {e91b05ff-af6e-4163-9259-c043766da053}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 68, !- Outlet Port + {e59a7bfa-1239-4971-9f84-e62262f21772}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {71361778-ab7c-4e25-8e33-1e2be9d8c658}, !- Handle + Zone Outpatient IT_Room C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {2ed99a33-83ce-449c-af8a-719516dfa0e2}, !- Inlet Port + {096fc69a-49be-4ce4-8307-81fe123aa797}; !- Outlet Port + +OS:Connection, + {9fc81df8-67fa-4e5d-b6ee-5b35a3b29fba}, !- Handle + {e59a7bfa-1239-4971-9f84-e62262f21772}, !- Source Object + 3, !- Outlet Port + {6d288619-5e9d-4bc6-96da-89bef187a53e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2ed99a33-83ce-449c-af8a-719516dfa0e2}, !- Handle + {6d288619-5e9d-4bc6-96da-89bef187a53e}, !- Source Object + 3, !- Outlet Port + {71361778-ab7c-4e25-8e33-1e2be9d8c658}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {096fc69a-49be-4ce4-8307-81fe123aa797}, !- Handle + {71361778-ab7c-4e25-8e33-1e2be9d8c658}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 68; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {f7ee257b-943b-48bd-91a4-aa9669210cc1}, !- Handle + Zone Outpatient IT_Room C - Story ground Water-to-Air HP Clg Coil 1kBtu/hr 11.2EER, !- Name + {23122256-2e2c-4277-b041-8b5e40af161a}, !- Water Inlet Node Name + {7feb77d3-901f-4724-bd0c-44b1336b3944}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0126386477458614, !- Rated Air Flow Rate {m3/s} + 4.47611848984542e-06, !- Rated Water Flow Rate {m3/s} + 213.661372220213, !- Rated Total Cooling Capacity {W} + 158.452578968266, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {61776fe6-be1e-451b-9da3-0dc823bdf26a}, !- Handle + Zone Outpatient IT_Room C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {6d22149e-7f80-44fc-b629-016a25d588de}, !- Inlet Port + {23122256-2e2c-4277-b041-8b5e40af161a}; !- Outlet Port + +OS:Connection, + {6d22149e-7f80-44fc-b629-016a25d588de}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 69, !- Outlet Port + {61776fe6-be1e-451b-9da3-0dc823bdf26a}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {bd5bf89c-ff96-4165-a6ec-94d067059623}, !- Handle + Zone Outpatient IT_Room C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {7feb77d3-901f-4724-bd0c-44b1336b3944}, !- Inlet Port + {72d455b8-da62-49cf-b59e-08b457ccc43b}; !- Outlet Port + +OS:Connection, + {23122256-2e2c-4277-b041-8b5e40af161a}, !- Handle + {61776fe6-be1e-451b-9da3-0dc823bdf26a}, !- Source Object + 3, !- Outlet Port + {f7ee257b-943b-48bd-91a4-aa9669210cc1}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7feb77d3-901f-4724-bd0c-44b1336b3944}, !- Handle + {f7ee257b-943b-48bd-91a4-aa9669210cc1}, !- Source Object + 3, !- Outlet Port + {bd5bf89c-ff96-4165-a6ec-94d067059623}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {72d455b8-da62-49cf-b59e-08b457ccc43b}, !- Handle + {bd5bf89c-ff96-4165-a6ec-94d067059623}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 69; !- Inlet Port + +OS:Fan:OnOff, + {9e561438-1d66-4f6a-9a6c-d713335c95b3}, !- Handle + Zone Outpatient IT_Room C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0126386477458614, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {5e2180f8-8009-4afc-a13e-50171bfb00ca}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {b1bcd4d5-2ef6-44ca-bece-4b759c61e816}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {5e2180f8-8009-4afc-a13e-50171bfb00ca}, !- Handle + Fan On Off Power Curve 32, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {b1bcd4d5-2ef6-44ca-bece-4b759c61e816}, !- Handle + Fan On Off Efficiency Curve 32, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {2bad5b27-82b2-4496-b168-b4d8921b0327}, !- Handle + Zone Outpatient IT_Room C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {5f1f222a-6347-4c41-8547-2c4ec3363c76}, !- Air Inlet Node Name + {f9bb1d78-8a61-4937-8eb8-27c9336c0cf2}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0126386477458614, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0126386477458614, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0126386477458614, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {9e561438-1d66-4f6a-9a6c-d713335c95b3}, !- Supply Air Fan Name + {6d288619-5e9d-4bc6-96da-89bef187a53e}, !- Heating Coil Name + {f7ee257b-943b-48bd-91a4-aa9669210cc1}, !- Cooling Coil Name + {dcc16cf1-8fba-4336-9544-8ad35f490326}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {8463db46-c4a8-4c5e-b534-377057ab1ae9}, !- Handle + Zone Outpatient IT_Room C - Story ground WSHP Inlet Air Node, !- Name + {03e1225e-fa52-4dc9-b3b3-0958b1c91174}, !- Inlet Port + {5f1f222a-6347-4c41-8547-2c4ec3363c76}; !- Outlet Port + +OS:Connection, + {03e1225e-fa52-4dc9-b3b3-0958b1c91174}, !- Handle + {cecf28a8-f809-4e1b-bfe8-bc383f5a1e14}, !- Source Object + 2, !- Outlet Port + {8463db46-c4a8-4c5e-b534-377057ab1ae9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {5f1f222a-6347-4c41-8547-2c4ec3363c76}, !- Handle + {8463db46-c4a8-4c5e-b534-377057ab1ae9}, !- Source Object + 3, !- Outlet Port + {2bad5b27-82b2-4496-b168-b4d8921b0327}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {9aa5da56-54c3-4054-ad82-c769a9ef4394}, !- Handle + Zone Outpatient IT_Room C - Story ground WSHP Outlet Air Node, !- Name + {f9bb1d78-8a61-4937-8eb8-27c9336c0cf2}, !- Inlet Port + {ab76f24f-0c8b-4d18-b5b1-877d0cfcaa05}; !- Outlet Port + +OS:Connection, + {ab76f24f-0c8b-4d18-b5b1-877d0cfcaa05}, !- Handle + {9aa5da56-54c3-4054-ad82-c769a9ef4394}, !- Source Object + 3, !- Outlet Port + {2b250855-5e0c-4fda-9ab4-696c9c4bc3ef}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {f9bb1d78-8a61-4937-8eb8-27c9336c0cf2}, !- Handle + {2bad5b27-82b2-4496-b168-b4d8921b0327}, !- Source Object + 4, !- Outlet Port + {9aa5da56-54c3-4054-ad82-c769a9ef4394}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {20e5e9a7-0080-48b9-96ee-9462acf6b1c8}, !- Handle + Zone Outpatient Janitor A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 7561.26105551767, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {71e22477-9748-4d43-ad50-6242881501ed}, !- Handle + Zone Outpatient Janitor A - Story ground Water-to-Air HP Htg Coil 47 Clg kBtu/hr 4.2COPH, !- Name + {7924789f-3ab6-485c-95f6-38681ecf5766}, !- Water Inlet Node Name + {d0722279-6f81-4ef5-9a40-b47ecabc68d8}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 1.00855377626562, !- Rated Air Flow Rate {m3/s} + 0.00030986619087322, !- Rated Water Flow Rate {m3/s} + 14006.4868132368, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {0004f550-dd04-454e-acd7-d520456b7a34}, !- Handle + Zone Outpatient Janitor A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {7d5008ab-96a1-46f8-a6cd-3f25a2680796}, !- Inlet Port + {7924789f-3ab6-485c-95f6-38681ecf5766}; !- Outlet Port + +OS:Connection, + {7d5008ab-96a1-46f8-a6cd-3f25a2680796}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 70, !- Outlet Port + {0004f550-dd04-454e-acd7-d520456b7a34}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {1af88089-68fb-4804-ac2f-d1955fa22ac3}, !- Handle + Zone Outpatient Janitor A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {d0722279-6f81-4ef5-9a40-b47ecabc68d8}, !- Inlet Port + {0d80c68b-91cb-4714-bcb7-846dfd13a71d}; !- Outlet Port + +OS:Connection, + {7924789f-3ab6-485c-95f6-38681ecf5766}, !- Handle + {0004f550-dd04-454e-acd7-d520456b7a34}, !- Source Object + 3, !- Outlet Port + {71e22477-9748-4d43-ad50-6242881501ed}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d0722279-6f81-4ef5-9a40-b47ecabc68d8}, !- Handle + {71e22477-9748-4d43-ad50-6242881501ed}, !- Source Object + 3, !- Outlet Port + {1af88089-68fb-4804-ac2f-d1955fa22ac3}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0d80c68b-91cb-4714-bcb7-846dfd13a71d}, !- Handle + {1af88089-68fb-4804-ac2f-d1955fa22ac3}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 70; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {ad8c47c5-6d6e-496e-b4a3-96a42e43dc3d}, !- Handle + Zone Outpatient Janitor A - Story ground Water-to-Air HP Clg Coil 47kBtu/hr 12.0EER, !- Name + {e925c7b7-59ba-4470-a848-1183246e5fa9}, !- Water Inlet Node Name + {921fac3c-994d-4339-9eb1-e3d3257da2cc}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 1.00855377626562, !- Rated Air Flow Rate {m3/s} + 0.00030986619087322, !- Rated Water Flow Rate {m3/s} + 14791.0373009158, !- Rated Total Cooling Capacity {W} + 11933.0932441185, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {30fab18a-e655-4fa5-b32c-6de42c0f60c3}, !- Handle + Zone Outpatient Janitor A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {93728f79-f121-43b1-a149-5f1491f5d5ea}, !- Inlet Port + {e925c7b7-59ba-4470-a848-1183246e5fa9}; !- Outlet Port + +OS:Connection, + {93728f79-f121-43b1-a149-5f1491f5d5ea}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 71, !- Outlet Port + {30fab18a-e655-4fa5-b32c-6de42c0f60c3}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {2f28fbca-9749-4805-ad37-5f35d112175d}, !- Handle + Zone Outpatient Janitor A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {921fac3c-994d-4339-9eb1-e3d3257da2cc}, !- Inlet Port + {dd1c8985-af74-4eba-ad53-fe56847846a5}; !- Outlet Port + +OS:Connection, + {e925c7b7-59ba-4470-a848-1183246e5fa9}, !- Handle + {30fab18a-e655-4fa5-b32c-6de42c0f60c3}, !- Source Object + 3, !- Outlet Port + {ad8c47c5-6d6e-496e-b4a3-96a42e43dc3d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {921fac3c-994d-4339-9eb1-e3d3257da2cc}, !- Handle + {ad8c47c5-6d6e-496e-b4a3-96a42e43dc3d}, !- Source Object + 3, !- Outlet Port + {2f28fbca-9749-4805-ad37-5f35d112175d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {dd1c8985-af74-4eba-ad53-fe56847846a5}, !- Handle + {2f28fbca-9749-4805-ad37-5f35d112175d}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 71; !- Inlet Port + +OS:Fan:OnOff, + {97c2fd7b-017d-4e4f-9175-f01c43a7b945}, !- Handle + Zone Outpatient Janitor A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 1.00855377626562, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {227bc1b8-0f18-4d02-bd42-fa8462247741}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {ff6ad57c-a02d-4172-af0e-1ccf21e87bdf}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {227bc1b8-0f18-4d02-bd42-fa8462247741}, !- Handle + Fan On Off Power Curve 33, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {ff6ad57c-a02d-4172-af0e-1ccf21e87bdf}, !- Handle + Fan On Off Efficiency Curve 33, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {f597979b-d238-4dab-bd27-462e8322d000}, !- Handle + Zone Outpatient Janitor A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {e4e89a6d-79b9-46f2-becf-64bccb25335d}, !- Air Inlet Node Name + {f8e103c2-f3e1-472c-ae33-fce6585f172d}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 1.00855377626562, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 1.00855377626562, !- Supply Air Flow Rate During Heating Operation {m3/s} + 1.00855377626562, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {97c2fd7b-017d-4e4f-9175-f01c43a7b945}, !- Supply Air Fan Name + {71e22477-9748-4d43-ad50-6242881501ed}, !- Heating Coil Name + {ad8c47c5-6d6e-496e-b4a3-96a42e43dc3d}, !- Cooling Coil Name + {20e5e9a7-0080-48b9-96ee-9462acf6b1c8}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {2cc23329-98e2-448c-a70c-d7049101af70}, !- Handle + Zone Outpatient Janitor A - Story ground WSHP Inlet Air Node, !- Name + {04db8e7d-182c-4ff3-9cd8-45d7f0337d81}, !- Inlet Port + {e4e89a6d-79b9-46f2-becf-64bccb25335d}; !- Outlet Port + +OS:Connection, + {04db8e7d-182c-4ff3-9cd8-45d7f0337d81}, !- Handle + {26a2abbd-9a83-43ee-8fbc-f21fd4e9e401}, !- Source Object + 2, !- Outlet Port + {2cc23329-98e2-448c-a70c-d7049101af70}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e4e89a6d-79b9-46f2-becf-64bccb25335d}, !- Handle + {2cc23329-98e2-448c-a70c-d7049101af70}, !- Source Object + 3, !- Outlet Port + {f597979b-d238-4dab-bd27-462e8322d000}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {77d31b0c-9337-456d-b4f6-a4a394b528c3}, !- Handle + Zone Outpatient Janitor A - Story ground WSHP Outlet Air Node, !- Name + {f8e103c2-f3e1-472c-ae33-fce6585f172d}, !- Inlet Port + {9dd24a58-2243-4133-a031-059045862710}; !- Outlet Port + +OS:Connection, + {9dd24a58-2243-4133-a031-059045862710}, !- Handle + {77d31b0c-9337-456d-b4f6-a4a394b528c3}, !- Source Object + 3, !- Outlet Port + {6242fee2-5d68-433f-83e1-05853da6bc48}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f8e103c2-f3e1-472c-ae33-fce6585f172d}, !- Handle + {f597979b-d238-4dab-bd27-462e8322d000}, !- Source Object + 4, !- Outlet Port + {77d31b0c-9337-456d-b4f6-a4a394b528c3}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {5d9657bd-1cca-4486-b90f-9af1ea5d1c12}, !- Handle + Zone Outpatient Janitor B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 26843.4736104707, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {a48fb6e8-db7e-4dee-97d9-cb77ec95bb57}, !- Handle + Zone Outpatient Janitor B - Story ground Water-to-Air HP Htg Coil 79 Clg kBtu/hr 4.2COPH, !- Name + {01de0a17-a199-4445-a2a2-32128c02fe47}, !- Water Inlet Node Name + {6f397581-1db4-47e4-8bcf-2fb83c06a209}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 1.43539132840887, !- Rated Air Flow Rate {m3/s} + 0.000452845616480012, !- Rated Water Flow Rate {m3/s} + 20469.4037054674, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {42dfb7e5-262b-4b2a-b0e4-792c0fe1763a}, !- Handle + Zone Outpatient Janitor B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {2f5233f8-0688-4357-a1e3-7c2789e91358}, !- Inlet Port + {01de0a17-a199-4445-a2a2-32128c02fe47}; !- Outlet Port + +OS:Connection, + {2f5233f8-0688-4357-a1e3-7c2789e91358}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 72, !- Outlet Port + {42dfb7e5-262b-4b2a-b0e4-792c0fe1763a}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {70487bfb-2044-4ff4-b31d-b84d65904c61}, !- Handle + Zone Outpatient Janitor B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {6f397581-1db4-47e4-8bcf-2fb83c06a209}, !- Inlet Port + {65e81982-5de6-4bc8-85b6-2491777c8698}; !- Outlet Port + +OS:Connection, + {01de0a17-a199-4445-a2a2-32128c02fe47}, !- Handle + {42dfb7e5-262b-4b2a-b0e4-792c0fe1763a}, !- Source Object + 3, !- Outlet Port + {a48fb6e8-db7e-4dee-97d9-cb77ec95bb57}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6f397581-1db4-47e4-8bcf-2fb83c06a209}, !- Handle + {a48fb6e8-db7e-4dee-97d9-cb77ec95bb57}, !- Source Object + 3, !- Outlet Port + {70487bfb-2044-4ff4-b31d-b84d65904c61}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {65e81982-5de6-4bc8-85b6-2491777c8698}, !- Handle + {70487bfb-2044-4ff4-b31d-b84d65904c61}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 72; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {dbb9f753-5928-4772-a808-53e5b45d82d3}, !- Handle + Zone Outpatient Janitor B - Story ground Water-to-Air HP Clg Coil 79kBtu/hr 12.0EER, !- Name + {f015cd95-38d9-4fd7-8355-e9bcfeebf7e0}, !- Water Inlet Node Name + {5b8097ca-efdd-4e22-85fd-c38dce2ae5ac}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 1.43539132840887, !- Rated Air Flow Rate {m3/s} + 0.000452845616480012, !- Rated Water Flow Rate {m3/s} + 21615.9639295806, !- Rated Total Cooling Capacity {W} + 17152.1821810231, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {6013daca-78e0-4a63-abe0-da55511a588d}, !- Handle + Zone Outpatient Janitor B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {a5e058a6-97f4-4288-8408-6b898f167186}, !- Inlet Port + {f015cd95-38d9-4fd7-8355-e9bcfeebf7e0}; !- Outlet Port + +OS:Connection, + {a5e058a6-97f4-4288-8408-6b898f167186}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 73, !- Outlet Port + {6013daca-78e0-4a63-abe0-da55511a588d}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {f48849e9-3aa9-4af6-a505-e91135803ed4}, !- Handle + Zone Outpatient Janitor B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {5b8097ca-efdd-4e22-85fd-c38dce2ae5ac}, !- Inlet Port + {c6402fdd-0e25-44f2-a827-48c24a91024f}; !- Outlet Port + +OS:Connection, + {f015cd95-38d9-4fd7-8355-e9bcfeebf7e0}, !- Handle + {6013daca-78e0-4a63-abe0-da55511a588d}, !- Source Object + 3, !- Outlet Port + {dbb9f753-5928-4772-a808-53e5b45d82d3}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {5b8097ca-efdd-4e22-85fd-c38dce2ae5ac}, !- Handle + {dbb9f753-5928-4772-a808-53e5b45d82d3}, !- Source Object + 3, !- Outlet Port + {f48849e9-3aa9-4af6-a505-e91135803ed4}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c6402fdd-0e25-44f2-a827-48c24a91024f}, !- Handle + {f48849e9-3aa9-4af6-a505-e91135803ed4}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 73; !- Inlet Port + +OS:Fan:OnOff, + {9ebd1cbb-87a7-4f29-878e-296be84aa2d6}, !- Handle + Zone Outpatient Janitor B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 1.43539132840887, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {1b896a4f-939c-439a-beb0-4c7f179d0f29}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {2938f58c-15f1-4065-848d-b18586475268}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {1b896a4f-939c-439a-beb0-4c7f179d0f29}, !- Handle + Fan On Off Power Curve 34, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {2938f58c-15f1-4065-848d-b18586475268}, !- Handle + Fan On Off Efficiency Curve 34, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {07b088ca-b162-4092-bbe4-e435394f34de}, !- Handle + Zone Outpatient Janitor B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {f5928ed2-b60b-4f22-b7c8-80fb6da4d8bc}, !- Air Inlet Node Name + {43dde6c7-a4f2-4986-917a-fda5559fe9b0}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 1.43539132840887, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 1.43539132840887, !- Supply Air Flow Rate During Heating Operation {m3/s} + 1.43539132840887, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {9ebd1cbb-87a7-4f29-878e-296be84aa2d6}, !- Supply Air Fan Name + {a48fb6e8-db7e-4dee-97d9-cb77ec95bb57}, !- Heating Coil Name + {dbb9f753-5928-4772-a808-53e5b45d82d3}, !- Cooling Coil Name + {5d9657bd-1cca-4486-b90f-9af1ea5d1c12}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {820f5f8d-da16-477b-9836-9310909378f9}, !- Handle + Zone Outpatient Janitor B - Story ground WSHP Inlet Air Node, !- Name + {7b4f2d99-9746-45b6-8db7-ea9612b00daa}, !- Inlet Port + {f5928ed2-b60b-4f22-b7c8-80fb6da4d8bc}; !- Outlet Port + +OS:Connection, + {7b4f2d99-9746-45b6-8db7-ea9612b00daa}, !- Handle + {6fd73158-61db-4808-bd9c-759a6d80a3f0}, !- Source Object + 2, !- Outlet Port + {820f5f8d-da16-477b-9836-9310909378f9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f5928ed2-b60b-4f22-b7c8-80fb6da4d8bc}, !- Handle + {820f5f8d-da16-477b-9836-9310909378f9}, !- Source Object + 3, !- Outlet Port + {07b088ca-b162-4092-bbe4-e435394f34de}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {e241874e-3d4d-4e79-ab08-a748078159a2}, !- Handle + Zone Outpatient Janitor B - Story ground WSHP Outlet Air Node, !- Name + {43dde6c7-a4f2-4986-917a-fda5559fe9b0}, !- Inlet Port + {10b3e482-89d3-4bec-a315-0fcd65bc7348}; !- Outlet Port + +OS:Connection, + {10b3e482-89d3-4bec-a315-0fcd65bc7348}, !- Handle + {e241874e-3d4d-4e79-ab08-a748078159a2}, !- Source Object + 3, !- Outlet Port + {4d847b15-9e52-4fdf-9cb0-5b36c4486115}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {43dde6c7-a4f2-4986-917a-fda5559fe9b0}, !- Handle + {07b088ca-b162-4092-bbe4-e435394f34de}, !- Source Object + 4, !- Outlet Port + {e241874e-3d4d-4e79-ab08-a748078159a2}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {a22e056c-ba1f-4cd2-8342-a25b1a3d0241}, !- Handle + Zone Outpatient Janitor C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 7581.02799363384, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {7039687c-a2f2-438d-b312-2df62315d707}, !- Handle + Zone Outpatient Janitor C - Story ground Water-to-Air HP Htg Coil 30 Clg kBtu/hr 4.2COPH, !- Name + {e73af2ae-6c0e-45af-8dec-b754534de579}, !- Water Inlet Node Name + {6f3f5dad-676a-45c3-8d4f-c48b7840b0e8}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.61802249903948, !- Rated Air Flow Rate {m3/s} + 0.000189667274101578, !- Rated Water Flow Rate {m3/s} + 8573.28825103491, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {c219e483-6013-45b4-9e67-1b5d55e7b5c7}, !- Handle + Zone Outpatient Janitor C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {9c30e4a9-4b2f-4597-9faa-0163068ff411}, !- Inlet Port + {e73af2ae-6c0e-45af-8dec-b754534de579}; !- Outlet Port + +OS:Connection, + {9c30e4a9-4b2f-4597-9faa-0163068ff411}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 74, !- Outlet Port + {c219e483-6013-45b4-9e67-1b5d55e7b5c7}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {bb254b3c-c594-4e86-88e5-f64de619189d}, !- Handle + Zone Outpatient Janitor C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {6f3f5dad-676a-45c3-8d4f-c48b7840b0e8}, !- Inlet Port + {6f33c3ac-7405-4ed6-91aa-b04e2efa4e16}; !- Outlet Port + +OS:Connection, + {e73af2ae-6c0e-45af-8dec-b754534de579}, !- Handle + {c219e483-6013-45b4-9e67-1b5d55e7b5c7}, !- Source Object + 3, !- Outlet Port + {7039687c-a2f2-438d-b312-2df62315d707}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6f3f5dad-676a-45c3-8d4f-c48b7840b0e8}, !- Handle + {7039687c-a2f2-438d-b312-2df62315d707}, !- Source Object + 3, !- Outlet Port + {bb254b3c-c594-4e86-88e5-f64de619189d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6f33c3ac-7405-4ed6-91aa-b04e2efa4e16}, !- Handle + {bb254b3c-c594-4e86-88e5-f64de619189d}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 74; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {711ff0e7-0166-4306-811e-ae7009353364}, !- Handle + Zone Outpatient Janitor C - Story ground Water-to-Air HP Clg Coil 30kBtu/hr 12.0EER, !- Name + {f45da401-5bea-4fe3-8032-9d41a63e19d1}, !- Water Inlet Node Name + {573b65c7-2eb5-429f-b174-47b27852df11}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.61802249903948, !- Rated Air Flow Rate {m3/s} + 0.000189667274101578, !- Rated Water Flow Rate {m3/s} + 9053.50699311132, !- Rated Total Cooling Capacity {W} + 7309.41019041256, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {528e7b4b-f0a8-40a7-a0dc-773eb63d6a48}, !- Handle + Zone Outpatient Janitor C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {08487e15-9b68-4acb-9732-d38fb47c8eda}, !- Inlet Port + {f45da401-5bea-4fe3-8032-9d41a63e19d1}; !- Outlet Port + +OS:Connection, + {08487e15-9b68-4acb-9732-d38fb47c8eda}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 75, !- Outlet Port + {528e7b4b-f0a8-40a7-a0dc-773eb63d6a48}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {d3fb7ab9-4889-4fb8-9acf-5daca5cca766}, !- Handle + Zone Outpatient Janitor C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {573b65c7-2eb5-429f-b174-47b27852df11}, !- Inlet Port + {1af8323a-5033-441b-8d11-9b1295c07bcf}; !- Outlet Port + +OS:Connection, + {f45da401-5bea-4fe3-8032-9d41a63e19d1}, !- Handle + {528e7b4b-f0a8-40a7-a0dc-773eb63d6a48}, !- Source Object + 3, !- Outlet Port + {711ff0e7-0166-4306-811e-ae7009353364}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {573b65c7-2eb5-429f-b174-47b27852df11}, !- Handle + {711ff0e7-0166-4306-811e-ae7009353364}, !- Source Object + 3, !- Outlet Port + {d3fb7ab9-4889-4fb8-9acf-5daca5cca766}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1af8323a-5033-441b-8d11-9b1295c07bcf}, !- Handle + {d3fb7ab9-4889-4fb8-9acf-5daca5cca766}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 75; !- Inlet Port + +OS:Fan:OnOff, + {b0fb6419-4cc1-4fe9-8c89-753d779b2bd0}, !- Handle + Zone Outpatient Janitor C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.61802249903948, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {644498e9-686e-4cb3-b642-f6fb91249f7c}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {14947142-fc07-4deb-b018-134b2ee8acb8}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {644498e9-686e-4cb3-b642-f6fb91249f7c}, !- Handle + Fan On Off Power Curve 35, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {14947142-fc07-4deb-b018-134b2ee8acb8}, !- Handle + Fan On Off Efficiency Curve 35, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {b1b0f052-29f0-4ee7-80d8-9c7681626bd9}, !- Handle + Zone Outpatient Janitor C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {2e9f96c4-8203-4bd7-8362-f7905f1841d2}, !- Air Inlet Node Name + {5116290a-3948-482d-9dc4-387883aa5050}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.61802249903948, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.61802249903948, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.61802249903948, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {b0fb6419-4cc1-4fe9-8c89-753d779b2bd0}, !- Supply Air Fan Name + {7039687c-a2f2-438d-b312-2df62315d707}, !- Heating Coil Name + {711ff0e7-0166-4306-811e-ae7009353364}, !- Cooling Coil Name + {a22e056c-ba1f-4cd2-8342-a25b1a3d0241}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {6c92576b-eb86-4f73-bdd8-15fb74515338}, !- Handle + Zone Outpatient Janitor C - Story ground WSHP Inlet Air Node, !- Name + {8ae66bc0-c848-4ef8-a2d0-a1dbb41d9bda}, !- Inlet Port + {2e9f96c4-8203-4bd7-8362-f7905f1841d2}; !- Outlet Port + +OS:Connection, + {8ae66bc0-c848-4ef8-a2d0-a1dbb41d9bda}, !- Handle + {8486af39-77ba-4c13-8cb6-a1a3d702143e}, !- Source Object + 2, !- Outlet Port + {6c92576b-eb86-4f73-bdd8-15fb74515338}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2e9f96c4-8203-4bd7-8362-f7905f1841d2}, !- Handle + {6c92576b-eb86-4f73-bdd8-15fb74515338}, !- Source Object + 3, !- Outlet Port + {b1b0f052-29f0-4ee7-80d8-9c7681626bd9}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {35dedcf3-f2fb-45de-80e3-c41f9e5f9a98}, !- Handle + Zone Outpatient Janitor C - Story ground WSHP Outlet Air Node, !- Name + {5116290a-3948-482d-9dc4-387883aa5050}, !- Inlet Port + {c6edd939-9cc9-4022-b2e2-adff4a32e215}; !- Outlet Port + +OS:Connection, + {c6edd939-9cc9-4022-b2e2-adff4a32e215}, !- Handle + {35dedcf3-f2fb-45de-80e3-c41f9e5f9a98}, !- Source Object + 3, !- Outlet Port + {a9203c58-4318-4f4f-9041-773060bfe7d5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {5116290a-3948-482d-9dc4-387883aa5050}, !- Handle + {b1b0f052-29f0-4ee7-80d8-9c7681626bd9}, !- Source Object + 4, !- Outlet Port + {35dedcf3-f2fb-45de-80e3-c41f9e5f9a98}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {98cbe607-3635-4ba6-8167-3b29e05dcb11}, !- Handle + Zone Outpatient Lobby A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 1045.03588206247, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {bd102099-b872-4fb8-b344-febfef086559}, !- Handle + Zone Outpatient Lobby A - Story ground Water-to-Air HP Htg Coil 6 Clg kBtu/hr 4.2COPH, !- Name + {c51596e9-65b4-4eef-9c53-1c00d5afaa1f}, !- Water Inlet Node Name + {a573e8bc-eb3c-4766-98fb-aec7bf75cad6}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0823436616151485, !- Rated Air Flow Rate {m3/s} + 3.67453101759632e-05, !- Rated Water Flow Rate {m3/s} + 1660.95146094367, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {679aacde-935c-4659-9912-45a7520caa81}, !- Handle + Zone Outpatient Lobby A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {b31d41be-48bd-4cec-9c4d-a7ec114c6398}, !- Inlet Port + {c51596e9-65b4-4eef-9c53-1c00d5afaa1f}; !- Outlet Port + +OS:Connection, + {b31d41be-48bd-4cec-9c4d-a7ec114c6398}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 76, !- Outlet Port + {679aacde-935c-4659-9912-45a7520caa81}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {2474d990-0c88-4580-bc93-297e0f036ca8}, !- Handle + Zone Outpatient Lobby A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {a573e8bc-eb3c-4766-98fb-aec7bf75cad6}, !- Inlet Port + {dea9329a-f0ad-4fae-bf1a-989d37fc1043}; !- Outlet Port + +OS:Connection, + {c51596e9-65b4-4eef-9c53-1c00d5afaa1f}, !- Handle + {679aacde-935c-4659-9912-45a7520caa81}, !- Source Object + 3, !- Outlet Port + {bd102099-b872-4fb8-b344-febfef086559}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a573e8bc-eb3c-4766-98fb-aec7bf75cad6}, !- Handle + {bd102099-b872-4fb8-b344-febfef086559}, !- Source Object + 3, !- Outlet Port + {2474d990-0c88-4580-bc93-297e0f036ca8}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {dea9329a-f0ad-4fae-bf1a-989d37fc1043}, !- Handle + {2474d990-0c88-4580-bc93-297e0f036ca8}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 76; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {c286de4d-692f-42de-b862-85681d412ddf}, !- Handle + Zone Outpatient Lobby A - Story ground Water-to-Air HP Clg Coil 6kBtu/hr 11.2EER, !- Name + {7099b776-ea30-45c1-9161-5fd0f6ccc4cc}, !- Water Inlet Node Name + {078d1090-735a-4ffb-8caf-de43c86e6ac1}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0823436616151485, !- Rated Air Flow Rate {m3/s} + 3.67453101759632e-05, !- Rated Water Flow Rate {m3/s} + 1753.98694486409, !- Rated Total Cooling Capacity {W} + 1171.72046024636, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {7fbeae02-c42f-4faa-9c00-48befbbc72bb}, !- Handle + Zone Outpatient Lobby A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {5081f31a-17ef-4836-a73a-ee973a6e5f13}, !- Inlet Port + {7099b776-ea30-45c1-9161-5fd0f6ccc4cc}; !- Outlet Port + +OS:Connection, + {5081f31a-17ef-4836-a73a-ee973a6e5f13}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 77, !- Outlet Port + {7fbeae02-c42f-4faa-9c00-48befbbc72bb}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {4c680b90-080b-4720-825b-1312ba6d4ae7}, !- Handle + Zone Outpatient Lobby A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {078d1090-735a-4ffb-8caf-de43c86e6ac1}, !- Inlet Port + {ae4ce054-af64-46fb-bb21-255fb2b9815f}; !- Outlet Port + +OS:Connection, + {7099b776-ea30-45c1-9161-5fd0f6ccc4cc}, !- Handle + {7fbeae02-c42f-4faa-9c00-48befbbc72bb}, !- Source Object + 3, !- Outlet Port + {c286de4d-692f-42de-b862-85681d412ddf}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {078d1090-735a-4ffb-8caf-de43c86e6ac1}, !- Handle + {c286de4d-692f-42de-b862-85681d412ddf}, !- Source Object + 3, !- Outlet Port + {4c680b90-080b-4720-825b-1312ba6d4ae7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ae4ce054-af64-46fb-bb21-255fb2b9815f}, !- Handle + {4c680b90-080b-4720-825b-1312ba6d4ae7}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 77; !- Inlet Port + +OS:Fan:OnOff, + {36429855-c3c4-475d-806c-612806632dda}, !- Handle + Zone Outpatient Lobby A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0823436616151485, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {d0b8bce6-cd56-4ad8-b9c2-4a5a005ca7a6}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {e321cc3e-9220-4c56-9921-b1683df93bc9}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {d0b8bce6-cd56-4ad8-b9c2-4a5a005ca7a6}, !- Handle + Fan On Off Power Curve 36, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {e321cc3e-9220-4c56-9921-b1683df93bc9}, !- Handle + Fan On Off Efficiency Curve 36, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {a4173c7d-eca7-44b7-8385-830bbb449064}, !- Handle + Zone Outpatient Lobby A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {69534b30-43a4-4ea0-b4c3-20b274d41ffb}, !- Air Inlet Node Name + {723a3088-a457-40c6-bf87-be14c2f0dabb}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0823436616151485, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0823436616151485, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0823436616151485, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {36429855-c3c4-475d-806c-612806632dda}, !- Supply Air Fan Name + {bd102099-b872-4fb8-b344-febfef086559}, !- Heating Coil Name + {c286de4d-692f-42de-b862-85681d412ddf}, !- Cooling Coil Name + {98cbe607-3635-4ba6-8167-3b29e05dcb11}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {259f78c0-c16b-4a19-acdf-9eccac20b17b}, !- Handle + Zone Outpatient Lobby A - Story ground WSHP Inlet Air Node, !- Name + {e5a610d1-518b-4ed3-9217-7c518a278311}, !- Inlet Port + {69534b30-43a4-4ea0-b4c3-20b274d41ffb}; !- Outlet Port + +OS:Connection, + {e5a610d1-518b-4ed3-9217-7c518a278311}, !- Handle + {0e0d0360-93f5-4eec-9cf7-7d0e9bb4dc49}, !- Source Object + 2, !- Outlet Port + {259f78c0-c16b-4a19-acdf-9eccac20b17b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {69534b30-43a4-4ea0-b4c3-20b274d41ffb}, !- Handle + {259f78c0-c16b-4a19-acdf-9eccac20b17b}, !- Source Object + 3, !- Outlet Port + {a4173c7d-eca7-44b7-8385-830bbb449064}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {8d79b81e-3479-455d-966d-d47742ec9b66}, !- Handle + Zone Outpatient Lobby A - Story ground WSHP Outlet Air Node, !- Name + {723a3088-a457-40c6-bf87-be14c2f0dabb}, !- Inlet Port + {8e8047d7-db00-4d72-9ecc-269975d04296}; !- Outlet Port + +OS:Connection, + {8e8047d7-db00-4d72-9ecc-269975d04296}, !- Handle + {8d79b81e-3479-455d-966d-d47742ec9b66}, !- Source Object + 3, !- Outlet Port + {24ab798d-4ba6-47ca-960f-4dbfe7ac0b2b}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {723a3088-a457-40c6-bf87-be14c2f0dabb}, !- Handle + {a4173c7d-eca7-44b7-8385-830bbb449064}, !- Source Object + 4, !- Outlet Port + {8d79b81e-3479-455d-966d-d47742ec9b66}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {f6a5280c-427c-4934-9a25-8c188395bfb1}, !- Handle + Zone Outpatient Lobby B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 7887.29449444118, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {380354bc-be58-4480-b50d-f7415d13bdd9}, !- Handle + Zone Outpatient Lobby B - Story ground Water-to-Air HP Htg Coil 49 Clg kBtu/hr 4.2COPH, !- Name + {5b5061b5-b742-4614-94b1-c5d689a2c73e}, !- Water Inlet Node Name + {dd18007b-f29f-4d58-98f2-56271193ac1a}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.65350432666458, !- Rated Air Flow Rate {m3/s} + 0.000293117315385396, !- Rated Water Flow Rate {m3/s} + 13249.4087241569, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {4b4d545a-42a3-40bc-b0f7-009bf0a0e0d6}, !- Handle + Zone Outpatient Lobby B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {d4316481-4153-4df1-94bd-2b81d4994099}, !- Inlet Port + {5b5061b5-b742-4614-94b1-c5d689a2c73e}; !- Outlet Port + +OS:Connection, + {d4316481-4153-4df1-94bd-2b81d4994099}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 78, !- Outlet Port + {4b4d545a-42a3-40bc-b0f7-009bf0a0e0d6}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {1c1eb0ae-cf18-481f-b538-a4769d08c25d}, !- Handle + Zone Outpatient Lobby B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {dd18007b-f29f-4d58-98f2-56271193ac1a}, !- Inlet Port + {9176b1ff-1161-4b49-be19-97beca7a8083}; !- Outlet Port + +OS:Connection, + {5b5061b5-b742-4614-94b1-c5d689a2c73e}, !- Handle + {4b4d545a-42a3-40bc-b0f7-009bf0a0e0d6}, !- Source Object + 3, !- Outlet Port + {380354bc-be58-4480-b50d-f7415d13bdd9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {dd18007b-f29f-4d58-98f2-56271193ac1a}, !- Handle + {380354bc-be58-4480-b50d-f7415d13bdd9}, !- Source Object + 3, !- Outlet Port + {1c1eb0ae-cf18-481f-b538-a4769d08c25d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9176b1ff-1161-4b49-be19-97beca7a8083}, !- Handle + {1c1eb0ae-cf18-481f-b538-a4769d08c25d}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 78; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {abcb915f-0b82-48da-98ee-d6f6679a85a1}, !- Handle + Zone Outpatient Lobby B - Story ground Water-to-Air HP Clg Coil 49kBtu/hr 12.0EER, !- Name + {40e5cbde-0074-4f2e-9af3-183a14957427}, !- Water Inlet Node Name + {21282354-9a63-4863-8f51-ec9a019e4f00}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.65350432666458, !- Rated Air Flow Rate {m3/s} + 0.000293117315385396, !- Rated Water Flow Rate {m3/s} + 13991.5527189075, !- Rated Total Cooling Capacity {W} + 9330.740788975, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {489c25fa-64b6-4a4e-8706-7709d468c9de}, !- Handle + Zone Outpatient Lobby B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {0543849d-8147-41c4-8e9c-4290ac96a697}, !- Inlet Port + {40e5cbde-0074-4f2e-9af3-183a14957427}; !- Outlet Port + +OS:Connection, + {0543849d-8147-41c4-8e9c-4290ac96a697}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 79, !- Outlet Port + {489c25fa-64b6-4a4e-8706-7709d468c9de}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {0c54bde8-2f69-4797-9a40-d25ca6a8f38a}, !- Handle + Zone Outpatient Lobby B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {21282354-9a63-4863-8f51-ec9a019e4f00}, !- Inlet Port + {43cc17a6-004b-409b-87b1-153b9a7b0b7f}; !- Outlet Port + +OS:Connection, + {40e5cbde-0074-4f2e-9af3-183a14957427}, !- Handle + {489c25fa-64b6-4a4e-8706-7709d468c9de}, !- Source Object + 3, !- Outlet Port + {abcb915f-0b82-48da-98ee-d6f6679a85a1}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {21282354-9a63-4863-8f51-ec9a019e4f00}, !- Handle + {abcb915f-0b82-48da-98ee-d6f6679a85a1}, !- Source Object + 3, !- Outlet Port + {0c54bde8-2f69-4797-9a40-d25ca6a8f38a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {43cc17a6-004b-409b-87b1-153b9a7b0b7f}, !- Handle + {0c54bde8-2f69-4797-9a40-d25ca6a8f38a}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 79; !- Inlet Port + +OS:Fan:OnOff, + {954fe4e6-f80b-421b-8113-48ac05723a25}, !- Handle + Zone Outpatient Lobby B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.65350432666458, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {6bb5cb4b-8a9a-4b6d-a74a-d29252905065}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {c633ff96-2b20-4d73-b1c0-19607a65cd42}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {6bb5cb4b-8a9a-4b6d-a74a-d29252905065}, !- Handle + Fan On Off Power Curve 37, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {c633ff96-2b20-4d73-b1c0-19607a65cd42}, !- Handle + Fan On Off Efficiency Curve 37, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {cc8f4361-a382-4578-b0db-fbc3eac54fe8}, !- Handle + Zone Outpatient Lobby B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {effce4ad-c84a-4c17-b5a2-630f88b08000}, !- Air Inlet Node Name + {f06d81a5-45b3-4be1-9ac8-87d250e1e1a9}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.65350432666458, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.65350432666458, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.65350432666458, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {954fe4e6-f80b-421b-8113-48ac05723a25}, !- Supply Air Fan Name + {380354bc-be58-4480-b50d-f7415d13bdd9}, !- Heating Coil Name + {abcb915f-0b82-48da-98ee-d6f6679a85a1}, !- Cooling Coil Name + {f6a5280c-427c-4934-9a25-8c188395bfb1}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {32cd00a7-4d5c-412c-b55d-17a494d59d56}, !- Handle + Zone Outpatient Lobby B - Story ground WSHP Inlet Air Node, !- Name + {bc56d3c7-580d-4038-8a91-f69ce8bddbae}, !- Inlet Port + {effce4ad-c84a-4c17-b5a2-630f88b08000}; !- Outlet Port + +OS:Connection, + {bc56d3c7-580d-4038-8a91-f69ce8bddbae}, !- Handle + {02dfd0e4-975b-4cc3-bf87-00da2f558ada}, !- Source Object + 2, !- Outlet Port + {32cd00a7-4d5c-412c-b55d-17a494d59d56}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {effce4ad-c84a-4c17-b5a2-630f88b08000}, !- Handle + {32cd00a7-4d5c-412c-b55d-17a494d59d56}, !- Source Object + 3, !- Outlet Port + {cc8f4361-a382-4578-b0db-fbc3eac54fe8}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {b56af26c-05e0-4f6e-b5d1-25985df47028}, !- Handle + Zone Outpatient Lobby B - Story ground WSHP Outlet Air Node, !- Name + {f06d81a5-45b3-4be1-9ac8-87d250e1e1a9}, !- Inlet Port + {932d5586-cec3-4328-96ba-5d806a03d995}; !- Outlet Port + +OS:Connection, + {932d5586-cec3-4328-96ba-5d806a03d995}, !- Handle + {b56af26c-05e0-4f6e-b5d1-25985df47028}, !- Source Object + 3, !- Outlet Port + {f52a2963-36bd-4ac8-a7c1-8fcca792a838}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {f06d81a5-45b3-4be1-9ac8-87d250e1e1a9}, !- Handle + {cc8f4361-a382-4578-b0db-fbc3eac54fe8}, !- Source Object + 4, !- Outlet Port + {b56af26c-05e0-4f6e-b5d1-25985df47028}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {2bacfd50-a851-40f1-9bf6-fd523077a84e}, !- Handle + Zone Outpatient Lobby C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 1045.03588206208, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {6c951273-65f5-4b38-90e3-bd0266101532}, !- Handle + Zone Outpatient Lobby C - Story ground Water-to-Air HP Htg Coil 6 Clg kBtu/hr 4.2COPH, !- Name + {cabaf2fd-a947-4942-b32f-3d9f1f315938}, !- Water Inlet Node Name + {280f57c9-f438-46c6-849a-aef944a6a52d}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0823436616151912, !- Rated Air Flow Rate {m3/s} + 3.67453101759776e-05, !- Rated Water Flow Rate {m3/s} + 1660.95146094432, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {269fde8b-e4ba-424d-89f2-1930bcad8c04}, !- Handle + Zone Outpatient Lobby C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {3bf80fa7-6366-47af-94f9-60c6a2ffb8ac}, !- Inlet Port + {cabaf2fd-a947-4942-b32f-3d9f1f315938}; !- Outlet Port + +OS:Connection, + {3bf80fa7-6366-47af-94f9-60c6a2ffb8ac}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 80, !- Outlet Port + {269fde8b-e4ba-424d-89f2-1930bcad8c04}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {b0366956-b8d8-4bf8-98d7-07b4d720678e}, !- Handle + Zone Outpatient Lobby C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {280f57c9-f438-46c6-849a-aef944a6a52d}, !- Inlet Port + {f1c6a625-0869-4e79-9c81-e46324dbea5d}; !- Outlet Port + +OS:Connection, + {cabaf2fd-a947-4942-b32f-3d9f1f315938}, !- Handle + {269fde8b-e4ba-424d-89f2-1930bcad8c04}, !- Source Object + 3, !- Outlet Port + {6c951273-65f5-4b38-90e3-bd0266101532}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {280f57c9-f438-46c6-849a-aef944a6a52d}, !- Handle + {6c951273-65f5-4b38-90e3-bd0266101532}, !- Source Object + 3, !- Outlet Port + {b0366956-b8d8-4bf8-98d7-07b4d720678e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f1c6a625-0869-4e79-9c81-e46324dbea5d}, !- Handle + {b0366956-b8d8-4bf8-98d7-07b4d720678e}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 80; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {fef4f85a-94c6-483a-abfa-2d0783cf012c}, !- Handle + Zone Outpatient Lobby C - Story ground Water-to-Air HP Clg Coil 6kBtu/hr 11.2EER, !- Name + {4c62cabd-670c-4993-93b5-ff270ece3443}, !- Water Inlet Node Name + {b847a940-53b6-49f9-8245-42565e3423b3}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0823436616151912, !- Rated Air Flow Rate {m3/s} + 3.67453101759776e-05, !- Rated Water Flow Rate {m3/s} + 1753.98694486478, !- Rated Total Cooling Capacity {W} + 1171.72046024697, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {6bf32ea2-686c-4097-9a96-ea45ede56cae}, !- Handle + Zone Outpatient Lobby C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {4e3b3802-b9ca-483c-b829-e4e52625acee}, !- Inlet Port + {4c62cabd-670c-4993-93b5-ff270ece3443}; !- Outlet Port + +OS:Connection, + {4e3b3802-b9ca-483c-b829-e4e52625acee}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 81, !- Outlet Port + {6bf32ea2-686c-4097-9a96-ea45ede56cae}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {0ffb9d20-6b29-466a-bab6-ed6d0e064758}, !- Handle + Zone Outpatient Lobby C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {b847a940-53b6-49f9-8245-42565e3423b3}, !- Inlet Port + {3406f47f-e63c-48c7-8575-a1d0a679fbeb}; !- Outlet Port + +OS:Connection, + {4c62cabd-670c-4993-93b5-ff270ece3443}, !- Handle + {6bf32ea2-686c-4097-9a96-ea45ede56cae}, !- Source Object + 3, !- Outlet Port + {fef4f85a-94c6-483a-abfa-2d0783cf012c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b847a940-53b6-49f9-8245-42565e3423b3}, !- Handle + {fef4f85a-94c6-483a-abfa-2d0783cf012c}, !- Source Object + 3, !- Outlet Port + {0ffb9d20-6b29-466a-bab6-ed6d0e064758}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3406f47f-e63c-48c7-8575-a1d0a679fbeb}, !- Handle + {0ffb9d20-6b29-466a-bab6-ed6d0e064758}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 81; !- Inlet Port + +OS:Fan:OnOff, + {e02b5f55-2d7e-4e5f-84fa-d6e161e76b8e}, !- Handle + Zone Outpatient Lobby C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0823436616151912, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {1fd0ff7e-d803-44c1-be6c-e609edaf9ef3}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {f4f31acc-7f1f-4780-81aa-b48d6e2e2047}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {1fd0ff7e-d803-44c1-be6c-e609edaf9ef3}, !- Handle + Fan On Off Power Curve 38, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {f4f31acc-7f1f-4780-81aa-b48d6e2e2047}, !- Handle + Fan On Off Efficiency Curve 38, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {3016a937-e497-46e0-b3d6-714a4fa45465}, !- Handle + Zone Outpatient Lobby C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {da8163bc-0442-4b48-947b-003364816405}, !- Air Inlet Node Name + {e1435345-f300-4859-8948-7c96453b062e}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0823436616151912, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0823436616151912, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0823436616151912, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {e02b5f55-2d7e-4e5f-84fa-d6e161e76b8e}, !- Supply Air Fan Name + {6c951273-65f5-4b38-90e3-bd0266101532}, !- Heating Coil Name + {fef4f85a-94c6-483a-abfa-2d0783cf012c}, !- Cooling Coil Name + {2bacfd50-a851-40f1-9bf6-fd523077a84e}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {8b328e90-02af-484a-9375-77129671d314}, !- Handle + Zone Outpatient Lobby C - Story ground WSHP Inlet Air Node, !- Name + {b47e5d9c-44c4-41a3-a360-e94dc1d3a6ff}, !- Inlet Port + {da8163bc-0442-4b48-947b-003364816405}; !- Outlet Port + +OS:Connection, + {b47e5d9c-44c4-41a3-a360-e94dc1d3a6ff}, !- Handle + {8a3eec05-ce0c-46cc-acd6-2a3545003d2e}, !- Source Object + 2, !- Outlet Port + {8b328e90-02af-484a-9375-77129671d314}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {da8163bc-0442-4b48-947b-003364816405}, !- Handle + {8b328e90-02af-484a-9375-77129671d314}, !- Source Object + 3, !- Outlet Port + {3016a937-e497-46e0-b3d6-714a4fa45465}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {b5d318ea-8aa5-468b-8f36-2dd7cc82a3e1}, !- Handle + Zone Outpatient Lobby C - Story ground WSHP Outlet Air Node, !- Name + {e1435345-f300-4859-8948-7c96453b062e}, !- Inlet Port + {e788f2d7-f3ce-407e-8125-60a9cb2611a3}; !- Outlet Port + +OS:Connection, + {e788f2d7-f3ce-407e-8125-60a9cb2611a3}, !- Handle + {b5d318ea-8aa5-468b-8f36-2dd7cc82a3e1}, !- Source Object + 3, !- Outlet Port + {7d51cc16-b194-497f-8910-058d8ba8d1fd}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {e1435345-f300-4859-8948-7c96453b062e}, !- Handle + {3016a937-e497-46e0-b3d6-714a4fa45465}, !- Source Object + 4, !- Outlet Port + {b5d318ea-8aa5-468b-8f36-2dd7cc82a3e1}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {4e95dba7-f921-46c3-a55c-a093cc49be1c}, !- Handle + Zone Outpatient LockerRoom A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 972.748433940678, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {b5f34f83-2da1-4306-b341-8d367d67527a}, !- Handle + Zone Outpatient LockerRoom A - Story ground Water-to-Air HP Htg Coil 7 Clg kBtu/hr 4.2COPH, !- Name + {9ca5be2e-e5cf-40b2-bbf2-d1f46f739843}, !- Water Inlet Node Name + {653ecc23-fb92-4f86-a8f5-fbe6c74c1dc1}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.12312177669536, !- Rated Air Flow Rate {m3/s} + 4.67379619419261e-05, !- Rated Water Flow Rate {m3/s} + 2112.63657313614, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {735708cc-ce98-4069-bf35-cf9b6a157073}, !- Handle + Zone Outpatient LockerRoom A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {d3c6482f-3f76-4797-9284-9192b0fe630f}, !- Inlet Port + {9ca5be2e-e5cf-40b2-bbf2-d1f46f739843}; !- Outlet Port + +OS:Connection, + {d3c6482f-3f76-4797-9284-9192b0fe630f}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 82, !- Outlet Port + {735708cc-ce98-4069-bf35-cf9b6a157073}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {b580e73a-e145-48c1-b812-51d7b7691797}, !- Handle + Zone Outpatient LockerRoom A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {653ecc23-fb92-4f86-a8f5-fbe6c74c1dc1}, !- Inlet Port + {620fc827-d92f-4c42-a965-daba573f28dc}; !- Outlet Port + +OS:Connection, + {9ca5be2e-e5cf-40b2-bbf2-d1f46f739843}, !- Handle + {735708cc-ce98-4069-bf35-cf9b6a157073}, !- Source Object + 3, !- Outlet Port + {b5f34f83-2da1-4306-b341-8d367d67527a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {653ecc23-fb92-4f86-a8f5-fbe6c74c1dc1}, !- Handle + {b5f34f83-2da1-4306-b341-8d367d67527a}, !- Source Object + 3, !- Outlet Port + {b580e73a-e145-48c1-b812-51d7b7691797}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {620fc827-d92f-4c42-a965-daba573f28dc}, !- Handle + {b580e73a-e145-48c1-b812-51d7b7691797}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 82; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {7985afc3-2080-4077-b2ca-b54df81c805b}, !- Handle + Zone Outpatient LockerRoom A - Story ground Water-to-Air HP Clg Coil 7kBtu/hr 11.2EER, !- Name + {e0401c62-0e4b-4b4c-8ab7-e5705aa48feb}, !- Water Inlet Node Name + {9fbce117-9e03-42ab-916a-3420262a917a}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.12312177669536, !- Rated Air Flow Rate {m3/s} + 4.67379619419261e-05, !- Rated Water Flow Rate {m3/s} + 2230.97246106031, !- Rated Total Cooling Capacity {W} + 1595.57985902508, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {02a33f35-9517-4e27-ae36-dad00f9fb1a7}, !- Handle + Zone Outpatient LockerRoom A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {eae0c73a-cbab-4cd3-bdd4-0c73ca820f8c}, !- Inlet Port + {e0401c62-0e4b-4b4c-8ab7-e5705aa48feb}; !- Outlet Port + +OS:Connection, + {eae0c73a-cbab-4cd3-bdd4-0c73ca820f8c}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 83, !- Outlet Port + {02a33f35-9517-4e27-ae36-dad00f9fb1a7}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {d369352e-0ef3-42af-80ec-28423de5d9f4}, !- Handle + Zone Outpatient LockerRoom A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {9fbce117-9e03-42ab-916a-3420262a917a}, !- Inlet Port + {255f2960-5a81-4396-8e8b-11ce64a2e5e4}; !- Outlet Port + +OS:Connection, + {e0401c62-0e4b-4b4c-8ab7-e5705aa48feb}, !- Handle + {02a33f35-9517-4e27-ae36-dad00f9fb1a7}, !- Source Object + 3, !- Outlet Port + {7985afc3-2080-4077-b2ca-b54df81c805b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9fbce117-9e03-42ab-916a-3420262a917a}, !- Handle + {7985afc3-2080-4077-b2ca-b54df81c805b}, !- Source Object + 3, !- Outlet Port + {d369352e-0ef3-42af-80ec-28423de5d9f4}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {255f2960-5a81-4396-8e8b-11ce64a2e5e4}, !- Handle + {d369352e-0ef3-42af-80ec-28423de5d9f4}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 83; !- Inlet Port + +OS:Fan:OnOff, + {7b533b1c-71d0-4dba-966e-5f7b7b1cb332}, !- Handle + Zone Outpatient LockerRoom A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.12312177669536, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {ae571541-de29-467b-9ddc-9f2210f123a6}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {75f171d0-282d-4f4b-85aa-ff838fc42c5d}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {ae571541-de29-467b-9ddc-9f2210f123a6}, !- Handle + Fan On Off Power Curve 39, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {75f171d0-282d-4f4b-85aa-ff838fc42c5d}, !- Handle + Fan On Off Efficiency Curve 39, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {2ab5197b-e987-4332-8279-7997628377b2}, !- Handle + Zone Outpatient LockerRoom A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {e9547875-5291-4e2c-9f24-11d5a1c28def}, !- Air Inlet Node Name + {d529122e-39db-4f97-93e1-4e516c35df5b}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.12312177669536, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.12312177669536, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.12312177669536, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {7b533b1c-71d0-4dba-966e-5f7b7b1cb332}, !- Supply Air Fan Name + {b5f34f83-2da1-4306-b341-8d367d67527a}, !- Heating Coil Name + {7985afc3-2080-4077-b2ca-b54df81c805b}, !- Cooling Coil Name + {4e95dba7-f921-46c3-a55c-a093cc49be1c}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {9dfd79b1-3cde-40f0-83ac-6f785d77289a}, !- Handle + Zone Outpatient LockerRoom A - Story ground WSHP Inlet Air Node, !- Name + {8bc95fb4-8801-4deb-82b5-6d8662a6ca53}, !- Inlet Port + {e9547875-5291-4e2c-9f24-11d5a1c28def}; !- Outlet Port + +OS:Connection, + {8bc95fb4-8801-4deb-82b5-6d8662a6ca53}, !- Handle + {f33f21ef-4e74-4903-8eda-0ee5647c489d}, !- Source Object + 2, !- Outlet Port + {9dfd79b1-3cde-40f0-83ac-6f785d77289a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e9547875-5291-4e2c-9f24-11d5a1c28def}, !- Handle + {9dfd79b1-3cde-40f0-83ac-6f785d77289a}, !- Source Object + 3, !- Outlet Port + {2ab5197b-e987-4332-8279-7997628377b2}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {9755b795-d204-41dc-82d2-56746a919b47}, !- Handle + Zone Outpatient LockerRoom A - Story ground WSHP Outlet Air Node, !- Name + {d529122e-39db-4f97-93e1-4e516c35df5b}, !- Inlet Port + {92c764c3-982a-42f0-9821-dda891d3876c}; !- Outlet Port + +OS:Connection, + {92c764c3-982a-42f0-9821-dda891d3876c}, !- Handle + {9755b795-d204-41dc-82d2-56746a919b47}, !- Source Object + 3, !- Outlet Port + {65568e6d-ea84-4a3b-a2d1-d1d8a373b253}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {d529122e-39db-4f97-93e1-4e516c35df5b}, !- Handle + {2ab5197b-e987-4332-8279-7997628377b2}, !- Source Object + 4, !- Outlet Port + {9755b795-d204-41dc-82d2-56746a919b47}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {92f9f507-33bd-423e-a40b-3b76bdfd1aea}, !- Handle + Zone Outpatient LockerRoom B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 7225.78667409257, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {5ccf2b65-ee08-47a0-bec1-59febba4e3ea}, !- Handle + Zone Outpatient LockerRoom B - Story ground Water-to-Air HP Htg Coil 59 Clg kBtu/hr 4.2COPH, !- Name + {7a0ac13d-e598-4055-abf3-397584754b45}, !- Water Inlet Node Name + {e63e20f7-8d4f-478d-8d9a-af85dfb5978f}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.97197608112361, !- Rated Air Flow Rate {m3/s} + 0.000370737261800554, !- Rated Water Flow Rate {m3/s} + 16757.9643134076, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {ee15a26b-2be5-402b-8525-ffc4b3ff799f}, !- Handle + Zone Outpatient LockerRoom B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {a2ecfc0b-5024-4ddc-b149-02c7d848b64d}, !- Inlet Port + {7a0ac13d-e598-4055-abf3-397584754b45}; !- Outlet Port + +OS:Connection, + {a2ecfc0b-5024-4ddc-b149-02c7d848b64d}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 84, !- Outlet Port + {ee15a26b-2be5-402b-8525-ffc4b3ff799f}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {4b46a412-d48b-4196-9de7-f33d199a1ddf}, !- Handle + Zone Outpatient LockerRoom B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {e63e20f7-8d4f-478d-8d9a-af85dfb5978f}, !- Inlet Port + {4895357f-8730-4f9a-a83f-dfc68e6e62e4}; !- Outlet Port + +OS:Connection, + {7a0ac13d-e598-4055-abf3-397584754b45}, !- Handle + {ee15a26b-2be5-402b-8525-ffc4b3ff799f}, !- Source Object + 3, !- Outlet Port + {5ccf2b65-ee08-47a0-bec1-59febba4e3ea}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e63e20f7-8d4f-478d-8d9a-af85dfb5978f}, !- Handle + {5ccf2b65-ee08-47a0-bec1-59febba4e3ea}, !- Source Object + 3, !- Outlet Port + {4b46a412-d48b-4196-9de7-f33d199a1ddf}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4895357f-8730-4f9a-a83f-dfc68e6e62e4}, !- Handle + {4b46a412-d48b-4196-9de7-f33d199a1ddf}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 84; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {97aff8b1-3f0c-4e05-b42b-71a7b6548c7d}, !- Handle + Zone Outpatient LockerRoom B - Story ground Water-to-Air HP Clg Coil 59kBtu/hr 12.0EER, !- Name + {4a8c3bdd-8cd5-4e59-98a3-c9928d985921}, !- Water Inlet Node Name + {f4fb3b02-3786-44a2-87aa-a9259c7d4a93}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.97197608112361, !- Rated Air Flow Rate {m3/s} + 0.000370737261800554, !- Rated Water Flow Rate {m3/s} + 17696.6343203766, !- Rated Total Cooling Capacity {W} + 12626.6574391008, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {7e9c336e-f284-4798-b5d7-17581340f4f2}, !- Handle + Zone Outpatient LockerRoom B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {9173c465-c8b2-45fc-9437-4c3d414f50cf}, !- Inlet Port + {4a8c3bdd-8cd5-4e59-98a3-c9928d985921}; !- Outlet Port + +OS:Connection, + {9173c465-c8b2-45fc-9437-4c3d414f50cf}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 85, !- Outlet Port + {7e9c336e-f284-4798-b5d7-17581340f4f2}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {72e1725a-7164-49aa-8aba-f9611703594d}, !- Handle + Zone Outpatient LockerRoom B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {f4fb3b02-3786-44a2-87aa-a9259c7d4a93}, !- Inlet Port + {3fb3bdcc-f83e-483f-923c-9542b203d73c}; !- Outlet Port + +OS:Connection, + {4a8c3bdd-8cd5-4e59-98a3-c9928d985921}, !- Handle + {7e9c336e-f284-4798-b5d7-17581340f4f2}, !- Source Object + 3, !- Outlet Port + {97aff8b1-3f0c-4e05-b42b-71a7b6548c7d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f4fb3b02-3786-44a2-87aa-a9259c7d4a93}, !- Handle + {97aff8b1-3f0c-4e05-b42b-71a7b6548c7d}, !- Source Object + 3, !- Outlet Port + {72e1725a-7164-49aa-8aba-f9611703594d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3fb3bdcc-f83e-483f-923c-9542b203d73c}, !- Handle + {72e1725a-7164-49aa-8aba-f9611703594d}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 85; !- Inlet Port + +OS:Fan:OnOff, + {ba487626-baf8-4e43-a892-1bd8bd7d8891}, !- Handle + Zone Outpatient LockerRoom B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.97197608112361, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {0097ccf6-02b3-4175-aa0a-dcc8cef6ac2b}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {66fce7a3-bf3c-4b3d-87b0-57f72fb9bdf5}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {0097ccf6-02b3-4175-aa0a-dcc8cef6ac2b}, !- Handle + Fan On Off Power Curve 40, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {66fce7a3-bf3c-4b3d-87b0-57f72fb9bdf5}, !- Handle + Fan On Off Efficiency Curve 40, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {dfc79d34-a55d-4c4b-9345-9177c366d810}, !- Handle + Zone Outpatient LockerRoom B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {408f931c-9498-4410-ac96-4f57a83442db}, !- Air Inlet Node Name + {3184e8d2-a1f0-4fc8-8711-c3809a5615b2}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.97197608112361, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.97197608112361, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.97197608112361, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {ba487626-baf8-4e43-a892-1bd8bd7d8891}, !- Supply Air Fan Name + {5ccf2b65-ee08-47a0-bec1-59febba4e3ea}, !- Heating Coil Name + {97aff8b1-3f0c-4e05-b42b-71a7b6548c7d}, !- Cooling Coil Name + {92f9f507-33bd-423e-a40b-3b76bdfd1aea}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {05716679-fd02-4a3d-9600-112fd8c0e65b}, !- Handle + Zone Outpatient LockerRoom B - Story ground WSHP Inlet Air Node, !- Name + {09aaf369-f730-4b8c-94e9-e8fee970684a}, !- Inlet Port + {408f931c-9498-4410-ac96-4f57a83442db}; !- Outlet Port + +OS:Connection, + {09aaf369-f730-4b8c-94e9-e8fee970684a}, !- Handle + {b662991b-b45d-4c0e-a8ef-4499bd6f5cbc}, !- Source Object + 2, !- Outlet Port + {05716679-fd02-4a3d-9600-112fd8c0e65b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {408f931c-9498-4410-ac96-4f57a83442db}, !- Handle + {05716679-fd02-4a3d-9600-112fd8c0e65b}, !- Source Object + 3, !- Outlet Port + {dfc79d34-a55d-4c4b-9345-9177c366d810}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {c585b1bd-32f2-4546-a54d-0f51c16ad5cf}, !- Handle + Zone Outpatient LockerRoom B - Story ground WSHP Outlet Air Node, !- Name + {3184e8d2-a1f0-4fc8-8711-c3809a5615b2}, !- Inlet Port + {e04bd5ed-6f15-4b5c-9499-14a3a954a54b}; !- Outlet Port + +OS:Connection, + {e04bd5ed-6f15-4b5c-9499-14a3a954a54b}, !- Handle + {c585b1bd-32f2-4546-a54d-0f51c16ad5cf}, !- Source Object + 3, !- Outlet Port + {576d2b51-93ec-4228-b20f-ec9d4391049a}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {3184e8d2-a1f0-4fc8-8711-c3809a5615b2}, !- Handle + {dfc79d34-a55d-4c4b-9345-9177c366d810}, !- Source Object + 4, !- Outlet Port + {c585b1bd-32f2-4546-a54d-0f51c16ad5cf}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {18ded1d5-bbe2-4eb1-a96e-00ca7f3ab1c4}, !- Handle + Zone Outpatient LockerRoom C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 972.748433940161, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {bda07d23-e8a1-4866-b400-17f13feed2a0}, !- Handle + Zone Outpatient LockerRoom C - Story ground Water-to-Air HP Htg Coil 7 Clg kBtu/hr 4.2COPH, !- Name + {a0e0accd-d51d-4b9f-93c7-2377f8353abb}, !- Water Inlet Node Name + {b1e0d2a0-368b-491a-8c04-af487c807fa1}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.123121776695351, !- Rated Air Flow Rate {m3/s} + 4.67379619419233e-05, !- Rated Water Flow Rate {m3/s} + 2112.63657313602, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {c0cbd531-58d7-4eed-add5-c5626b78e98e}, !- Handle + Zone Outpatient LockerRoom C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {edd1d1b3-e8cf-4a50-bc2d-dba53c1f8d23}, !- Inlet Port + {a0e0accd-d51d-4b9f-93c7-2377f8353abb}; !- Outlet Port + +OS:Connection, + {edd1d1b3-e8cf-4a50-bc2d-dba53c1f8d23}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 86, !- Outlet Port + {c0cbd531-58d7-4eed-add5-c5626b78e98e}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {20c19bfd-3d0f-4575-819d-83bda8d6b5b0}, !- Handle + Zone Outpatient LockerRoom C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {b1e0d2a0-368b-491a-8c04-af487c807fa1}, !- Inlet Port + {0a3289a1-8f0e-4dfe-ad05-025f2b4274b8}; !- Outlet Port + +OS:Connection, + {a0e0accd-d51d-4b9f-93c7-2377f8353abb}, !- Handle + {c0cbd531-58d7-4eed-add5-c5626b78e98e}, !- Source Object + 3, !- Outlet Port + {bda07d23-e8a1-4866-b400-17f13feed2a0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b1e0d2a0-368b-491a-8c04-af487c807fa1}, !- Handle + {bda07d23-e8a1-4866-b400-17f13feed2a0}, !- Source Object + 3, !- Outlet Port + {20c19bfd-3d0f-4575-819d-83bda8d6b5b0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0a3289a1-8f0e-4dfe-ad05-025f2b4274b8}, !- Handle + {20c19bfd-3d0f-4575-819d-83bda8d6b5b0}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 86; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {945eb6e9-a113-4944-81b3-8ab94216aa56}, !- Handle + Zone Outpatient LockerRoom C - Story ground Water-to-Air HP Clg Coil 7kBtu/hr 11.2EER, !- Name + {09109e8d-6e8c-402a-8ced-01d5c2692b79}, !- Water Inlet Node Name + {e69869a4-c3e0-43d7-9e05-77218626dd12}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.123121776695351, !- Rated Air Flow Rate {m3/s} + 4.67379619419233e-05, !- Rated Water Flow Rate {m3/s} + 2230.97246106018, !- Rated Total Cooling Capacity {W} + 1595.57985902496, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {ecf14860-46e4-4d4b-9c76-f8bf9e0e41d7}, !- Handle + Zone Outpatient LockerRoom C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {0ca031ac-7b1b-432d-89e4-75d353549a19}, !- Inlet Port + {09109e8d-6e8c-402a-8ced-01d5c2692b79}; !- Outlet Port + +OS:Connection, + {0ca031ac-7b1b-432d-89e4-75d353549a19}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 87, !- Outlet Port + {ecf14860-46e4-4d4b-9c76-f8bf9e0e41d7}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {bb99de99-93f2-4088-82a7-30a6d8ad0551}, !- Handle + Zone Outpatient LockerRoom C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {e69869a4-c3e0-43d7-9e05-77218626dd12}, !- Inlet Port + {fd027660-9324-44eb-a252-ca5a3ee6229d}; !- Outlet Port + +OS:Connection, + {09109e8d-6e8c-402a-8ced-01d5c2692b79}, !- Handle + {ecf14860-46e4-4d4b-9c76-f8bf9e0e41d7}, !- Source Object + 3, !- Outlet Port + {945eb6e9-a113-4944-81b3-8ab94216aa56}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e69869a4-c3e0-43d7-9e05-77218626dd12}, !- Handle + {945eb6e9-a113-4944-81b3-8ab94216aa56}, !- Source Object + 3, !- Outlet Port + {bb99de99-93f2-4088-82a7-30a6d8ad0551}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fd027660-9324-44eb-a252-ca5a3ee6229d}, !- Handle + {bb99de99-93f2-4088-82a7-30a6d8ad0551}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 87; !- Inlet Port + +OS:Fan:OnOff, + {52b20f4e-58e5-41f9-92f4-49a69c9a03e2}, !- Handle + Zone Outpatient LockerRoom C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.123121776695351, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {fd643293-8744-47dd-8750-28f6378617dd}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {4662b806-d1e1-45f5-b9e7-a331b08cb924}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {fd643293-8744-47dd-8750-28f6378617dd}, !- Handle + Fan On Off Power Curve 41, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {4662b806-d1e1-45f5-b9e7-a331b08cb924}, !- Handle + Fan On Off Efficiency Curve 41, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {9a1e9649-e4bf-40ef-8fe1-4b6fb2234684}, !- Handle + Zone Outpatient LockerRoom C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {886ddc71-bc96-4974-acd3-0f602f4f6915}, !- Air Inlet Node Name + {6f966289-55d8-4e19-b4ea-32c777219dd5}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.123121776695351, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.123121776695351, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.123121776695351, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {52b20f4e-58e5-41f9-92f4-49a69c9a03e2}, !- Supply Air Fan Name + {bda07d23-e8a1-4866-b400-17f13feed2a0}, !- Heating Coil Name + {945eb6e9-a113-4944-81b3-8ab94216aa56}, !- Cooling Coil Name + {18ded1d5-bbe2-4eb1-a96e-00ca7f3ab1c4}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {68116a97-8086-483f-9c3e-96e36108ecb5}, !- Handle + Zone Outpatient LockerRoom C - Story ground WSHP Inlet Air Node, !- Name + {37c7d5ea-82f7-4040-89ec-9ee7b69cfb18}, !- Inlet Port + {886ddc71-bc96-4974-acd3-0f602f4f6915}; !- Outlet Port + +OS:Connection, + {37c7d5ea-82f7-4040-89ec-9ee7b69cfb18}, !- Handle + {e30cdfd1-8fd8-47d2-9a0c-68070821fbfb}, !- Source Object + 2, !- Outlet Port + {68116a97-8086-483f-9c3e-96e36108ecb5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {886ddc71-bc96-4974-acd3-0f602f4f6915}, !- Handle + {68116a97-8086-483f-9c3e-96e36108ecb5}, !- Source Object + 3, !- Outlet Port + {9a1e9649-e4bf-40ef-8fe1-4b6fb2234684}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {f4942e00-02e9-431f-b92c-46f20c05b059}, !- Handle + Zone Outpatient LockerRoom C - Story ground WSHP Outlet Air Node, !- Name + {6f966289-55d8-4e19-b4ea-32c777219dd5}, !- Inlet Port + {f02ac398-bf8d-449b-b525-1f94ed4c3036}; !- Outlet Port + +OS:Connection, + {f02ac398-bf8d-449b-b525-1f94ed4c3036}, !- Handle + {f4942e00-02e9-431f-b92c-46f20c05b059}, !- Source Object + 3, !- Outlet Port + {6d0c473a-17d1-4cc3-ba14-cf971214fb23}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {6f966289-55d8-4e19-b4ea-32c777219dd5}, !- Handle + {9a1e9649-e4bf-40ef-8fe1-4b6fb2234684}, !- Source Object + 4, !- Outlet Port + {f4942e00-02e9-431f-b92c-46f20c05b059}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {86f88f6e-d2e9-4762-bc43-54336c5b34ba}, !- Handle + Zone Outpatient Lounge A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 3576.0965455538, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {b022e197-df48-42c2-bf76-ea37b81fc5cb}, !- Handle + Zone Outpatient Lounge A - Story ground Water-to-Air HP Htg Coil 27 Clg kBtu/hr 4.2COPH, !- Name + {1cf3b962-2d17-42e2-ba3e-6132e291f285}, !- Water Inlet Node Name + {2b3a0d93-b1c3-4f9c-b2ad-eef91acd6eeb}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.536122972057127, !- Rated Air Flow Rate {m3/s} + 0.000178829599688661, !- Rated Water Flow Rate {m3/s} + 8083.40665626365, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {e34a3f79-c66d-4a4c-8926-d3f592c595db}, !- Handle + Zone Outpatient Lounge A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {5a6d6588-e26b-489e-97f7-767c685bbe9d}, !- Inlet Port + {1cf3b962-2d17-42e2-ba3e-6132e291f285}; !- Outlet Port + +OS:Connection, + {5a6d6588-e26b-489e-97f7-767c685bbe9d}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 88, !- Outlet Port + {e34a3f79-c66d-4a4c-8926-d3f592c595db}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {ca5c6096-53be-4201-8bea-179ed252bc3d}, !- Handle + Zone Outpatient Lounge A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {2b3a0d93-b1c3-4f9c-b2ad-eef91acd6eeb}, !- Inlet Port + {c9cdbb95-2cc3-41b2-8efc-22a31a0acc60}; !- Outlet Port + +OS:Connection, + {1cf3b962-2d17-42e2-ba3e-6132e291f285}, !- Handle + {e34a3f79-c66d-4a4c-8926-d3f592c595db}, !- Source Object + 3, !- Outlet Port + {b022e197-df48-42c2-bf76-ea37b81fc5cb}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2b3a0d93-b1c3-4f9c-b2ad-eef91acd6eeb}, !- Handle + {b022e197-df48-42c2-bf76-ea37b81fc5cb}, !- Source Object + 3, !- Outlet Port + {ca5c6096-53be-4201-8bea-179ed252bc3d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c9cdbb95-2cc3-41b2-8efc-22a31a0acc60}, !- Handle + {ca5c6096-53be-4201-8bea-179ed252bc3d}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 88; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {6bffdeae-cf7f-45a7-b3f3-68bbdd3ffca4}, !- Handle + Zone Outpatient Lounge A - Story ground Water-to-Air HP Clg Coil 27kBtu/hr 12.0EER, !- Name + {810f79b9-5784-479a-b3b5-2efdce6a5711}, !- Water Inlet Node Name + {479e9440-021d-467d-ab63-ccd5bde77510}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.536122972057127, !- Rated Air Flow Rate {m3/s} + 0.000178829599688661, !- Rated Water Flow Rate {m3/s} + 8536.18548073562, !- Rated Total Cooling Capacity {W} + 6548.99699650997, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {ea4efa72-0d34-4817-ad60-52f24f652b3b}, !- Handle + Zone Outpatient Lounge A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {c248e77b-4033-4776-9bc8-64884d2ed319}, !- Inlet Port + {810f79b9-5784-479a-b3b5-2efdce6a5711}; !- Outlet Port + +OS:Connection, + {c248e77b-4033-4776-9bc8-64884d2ed319}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 89, !- Outlet Port + {ea4efa72-0d34-4817-ad60-52f24f652b3b}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {984ee769-a22c-433a-83aa-b6176bf58a32}, !- Handle + Zone Outpatient Lounge A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {479e9440-021d-467d-ab63-ccd5bde77510}, !- Inlet Port + {91de7f6f-e4ac-49db-89e6-27f682b2acda}; !- Outlet Port + +OS:Connection, + {810f79b9-5784-479a-b3b5-2efdce6a5711}, !- Handle + {ea4efa72-0d34-4817-ad60-52f24f652b3b}, !- Source Object + 3, !- Outlet Port + {6bffdeae-cf7f-45a7-b3f3-68bbdd3ffca4}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {479e9440-021d-467d-ab63-ccd5bde77510}, !- Handle + {6bffdeae-cf7f-45a7-b3f3-68bbdd3ffca4}, !- Source Object + 3, !- Outlet Port + {984ee769-a22c-433a-83aa-b6176bf58a32}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {91de7f6f-e4ac-49db-89e6-27f682b2acda}, !- Handle + {984ee769-a22c-433a-83aa-b6176bf58a32}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 89; !- Inlet Port + +OS:Fan:OnOff, + {64a51dcf-7e79-4df7-b5c0-f770b1063a71}, !- Handle + Zone Outpatient Lounge A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.536122972057127, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {270138db-7bbc-4b3e-877c-0117ad8b67ff}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {a7d893a5-8516-4e6c-9af4-e86b98c8bb9f}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {270138db-7bbc-4b3e-877c-0117ad8b67ff}, !- Handle + Fan On Off Power Curve 42, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {a7d893a5-8516-4e6c-9af4-e86b98c8bb9f}, !- Handle + Fan On Off Efficiency Curve 42, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {7777a5e8-c814-4daf-b0ba-ec4b7b8b72b4}, !- Handle + Zone Outpatient Lounge A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {ca68bb0c-1c66-476e-96fd-f528d1c42755}, !- Air Inlet Node Name + {58b15e7e-dbdc-435f-ae12-faf2ec96ab87}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.536122972057127, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.536122972057127, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.536122972057127, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {64a51dcf-7e79-4df7-b5c0-f770b1063a71}, !- Supply Air Fan Name + {b022e197-df48-42c2-bf76-ea37b81fc5cb}, !- Heating Coil Name + {6bffdeae-cf7f-45a7-b3f3-68bbdd3ffca4}, !- Cooling Coil Name + {86f88f6e-d2e9-4762-bc43-54336c5b34ba}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {5108ea0f-fcb6-4eab-83c5-4f1e077bc223}, !- Handle + Zone Outpatient Lounge A - Story ground WSHP Inlet Air Node, !- Name + {e6ff863a-0b0c-4286-ac3f-c67fe4854879}, !- Inlet Port + {ca68bb0c-1c66-476e-96fd-f528d1c42755}; !- Outlet Port + +OS:Connection, + {e6ff863a-0b0c-4286-ac3f-c67fe4854879}, !- Handle + {9b03f00f-21be-474e-99fb-3602b8962dcb}, !- Source Object + 2, !- Outlet Port + {5108ea0f-fcb6-4eab-83c5-4f1e077bc223}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ca68bb0c-1c66-476e-96fd-f528d1c42755}, !- Handle + {5108ea0f-fcb6-4eab-83c5-4f1e077bc223}, !- Source Object + 3, !- Outlet Port + {7777a5e8-c814-4daf-b0ba-ec4b7b8b72b4}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {72be8a1e-4f3d-4e10-bf08-a1913e1e17c5}, !- Handle + Zone Outpatient Lounge A - Story ground WSHP Outlet Air Node, !- Name + {58b15e7e-dbdc-435f-ae12-faf2ec96ab87}, !- Inlet Port + {64140af7-fe0b-4564-a0c5-5cfe7f6148ae}; !- Outlet Port + +OS:Connection, + {64140af7-fe0b-4564-a0c5-5cfe7f6148ae}, !- Handle + {72be8a1e-4f3d-4e10-bf08-a1913e1e17c5}, !- Source Object + 3, !- Outlet Port + {e667c3f1-e117-4434-9ed8-53015a4efe74}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {58b15e7e-dbdc-435f-ae12-faf2ec96ab87}, !- Handle + {7777a5e8-c814-4daf-b0ba-ec4b7b8b72b4}, !- Source Object + 4, !- Outlet Port + {72be8a1e-4f3d-4e10-bf08-a1913e1e17c5}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {e80fd5db-6e5c-4652-852b-4f4c699642f9}, !- Handle + Zone Outpatient Lounge B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 27198.9551181737, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {9500dc32-6312-4bc4-beaf-090d52e62768}, !- Handle + Zone Outpatient Lounge B - Story ground Water-to-Air HP Htg Coil 210 Clg kBtu/hr 4.2COPH, !- Name + {90edb60d-30d6-4810-9c8f-8d55f47da33a}, !- Water Inlet Node Name + {4ff2d575-7bac-42b5-883f-7ce05e6fcb34}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 4.12861472987585, !- Rated Air Flow Rate {m3/s} + 0.00138313537983636, !- Rated Water Flow Rate {m3/s} + 62520.1071598208, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {c2faf1cf-4b74-419c-8449-f05c1b31fbb7}, !- Handle + Zone Outpatient Lounge B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {fb16bd47-8f3d-4fc0-adb8-a1435ae60499}, !- Inlet Port + {90edb60d-30d6-4810-9c8f-8d55f47da33a}; !- Outlet Port + +OS:Connection, + {fb16bd47-8f3d-4fc0-adb8-a1435ae60499}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 90, !- Outlet Port + {c2faf1cf-4b74-419c-8449-f05c1b31fbb7}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {778de9d7-95fb-4630-a2c5-c8b2e74cc1ac}, !- Handle + Zone Outpatient Lounge B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {4ff2d575-7bac-42b5-883f-7ce05e6fcb34}, !- Inlet Port + {15ddc813-a60d-4296-86db-63fef43e4f35}; !- Outlet Port + +OS:Connection, + {90edb60d-30d6-4810-9c8f-8d55f47da33a}, !- Handle + {c2faf1cf-4b74-419c-8449-f05c1b31fbb7}, !- Source Object + 3, !- Outlet Port + {9500dc32-6312-4bc4-beaf-090d52e62768}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4ff2d575-7bac-42b5-883f-7ce05e6fcb34}, !- Handle + {9500dc32-6312-4bc4-beaf-090d52e62768}, !- Source Object + 3, !- Outlet Port + {778de9d7-95fb-4630-a2c5-c8b2e74cc1ac}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {15ddc813-a60d-4296-86db-63fef43e4f35}, !- Handle + {778de9d7-95fb-4630-a2c5-c8b2e74cc1ac}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 90; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {0d73feb5-340c-41b5-9bd9-754c8e3bd2ae}, !- Handle + Zone Outpatient Lounge B - Story ground Water-to-Air HP Clg Coil, !- Name + {fc33a1ba-d727-46a6-adf1-8ecc01c66931}, !- Water Inlet Node Name + {3895e31a-beb0-4930-805e-e47fb312e039}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 4.12861472987585, !- Rated Air Flow Rate {m3/s} + 0.00138313537983636, !- Rated Water Flow Rate {m3/s} + 66022.0688734197, !- Rated Total Cooling Capacity {W} + 50523.3514824559, !- Rated Sensible Cooling Capacity {W} + 3.4, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {2ead60e6-59af-4646-82e9-105011890f4b}, !- Handle + Zone Outpatient Lounge B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {80b54db0-c40c-4ed4-967d-cceb267fceb3}, !- Inlet Port + {fc33a1ba-d727-46a6-adf1-8ecc01c66931}; !- Outlet Port + +OS:Connection, + {80b54db0-c40c-4ed4-967d-cceb267fceb3}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 91, !- Outlet Port + {2ead60e6-59af-4646-82e9-105011890f4b}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {1d6a0cac-b0d2-4abd-b3e1-e959042ad270}, !- Handle + Zone Outpatient Lounge B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {3895e31a-beb0-4930-805e-e47fb312e039}, !- Inlet Port + {fd9c09e4-7189-4777-9d74-953b05754a42}; !- Outlet Port + +OS:Connection, + {fc33a1ba-d727-46a6-adf1-8ecc01c66931}, !- Handle + {2ead60e6-59af-4646-82e9-105011890f4b}, !- Source Object + 3, !- Outlet Port + {0d73feb5-340c-41b5-9bd9-754c8e3bd2ae}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3895e31a-beb0-4930-805e-e47fb312e039}, !- Handle + {0d73feb5-340c-41b5-9bd9-754c8e3bd2ae}, !- Source Object + 3, !- Outlet Port + {1d6a0cac-b0d2-4abd-b3e1-e959042ad270}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fd9c09e4-7189-4777-9d74-953b05754a42}, !- Handle + {1d6a0cac-b0d2-4abd-b3e1-e959042ad270}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 91; !- Inlet Port + +OS:Fan:OnOff, + {cad79b19-5989-4838-b0a7-e99b3a850b1e}, !- Handle + Zone Outpatient Lounge B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 4.12861472987585, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {a9ce04d3-e552-419f-8030-a42071b1b969}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {448d0bf6-6bec-4ef5-bc38-a855d8968e01}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {a9ce04d3-e552-419f-8030-a42071b1b969}, !- Handle + Fan On Off Power Curve 43, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {448d0bf6-6bec-4ef5-bc38-a855d8968e01}, !- Handle + Fan On Off Efficiency Curve 43, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {70775bbc-6ece-4ec5-8652-9c352e6fed1d}, !- Handle + Zone Outpatient Lounge B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {6f50f124-b4f5-4d68-940b-90de87d7bf63}, !- Air Inlet Node Name + {d915ec3f-e36a-4c3d-84e1-0cf44d8e55ac}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 4.12861472987585, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 4.12861472987585, !- Supply Air Flow Rate During Heating Operation {m3/s} + 4.12861472987585, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {cad79b19-5989-4838-b0a7-e99b3a850b1e}, !- Supply Air Fan Name + {9500dc32-6312-4bc4-beaf-090d52e62768}, !- Heating Coil Name + {0d73feb5-340c-41b5-9bd9-754c8e3bd2ae}, !- Cooling Coil Name + {e80fd5db-6e5c-4652-852b-4f4c699642f9}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {93120bb0-0c83-406f-b8d6-146581c539f8}, !- Handle + Zone Outpatient Lounge B - Story ground WSHP Inlet Air Node, !- Name + {316e5c89-d404-428d-84d7-ac7f80bd1d11}, !- Inlet Port + {6f50f124-b4f5-4d68-940b-90de87d7bf63}; !- Outlet Port + +OS:Connection, + {316e5c89-d404-428d-84d7-ac7f80bd1d11}, !- Handle + {79e4e0ea-18e2-40e6-b022-db997a4ef79c}, !- Source Object + 2, !- Outlet Port + {93120bb0-0c83-406f-b8d6-146581c539f8}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6f50f124-b4f5-4d68-940b-90de87d7bf63}, !- Handle + {93120bb0-0c83-406f-b8d6-146581c539f8}, !- Source Object + 3, !- Outlet Port + {70775bbc-6ece-4ec5-8652-9c352e6fed1d}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {d6952bc1-5593-45c4-81a5-0104a8e8d573}, !- Handle + Zone Outpatient Lounge B - Story ground WSHP Outlet Air Node, !- Name + {d915ec3f-e36a-4c3d-84e1-0cf44d8e55ac}, !- Inlet Port + {d809ab38-cd86-4ba0-b410-451ab4c8e79b}; !- Outlet Port + +OS:Connection, + {d809ab38-cd86-4ba0-b410-451ab4c8e79b}, !- Handle + {d6952bc1-5593-45c4-81a5-0104a8e8d573}, !- Source Object + 3, !- Outlet Port + {68296f38-1685-4424-a076-531352871c44}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {d915ec3f-e36a-4c3d-84e1-0cf44d8e55ac}, !- Handle + {70775bbc-6ece-4ec5-8652-9c352e6fed1d}, !- Source Object + 4, !- Outlet Port + {d6952bc1-5593-45c4-81a5-0104a8e8d573}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {e3e91598-38ff-4210-af77-dfb4b891857e}, !- Handle + Zone Outpatient Lounge C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 3576.09654555376, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {48707f64-a429-46a9-a591-c7d6365d502b}, !- Handle + Zone Outpatient Lounge C - Story ground Water-to-Air HP Htg Coil 27 Clg kBtu/hr 4.2COPH, !- Name + {f364e31c-9e11-4574-ba76-67c7f2b55ca6}, !- Water Inlet Node Name + {1f395864-c3a9-45e1-847c-34271b147176}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.536122972057114, !- Rated Air Flow Rate {m3/s} + 0.000178829599688658, !- Rated Water Flow Rate {m3/s} + 8083.40665626347, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {2cc387bd-862d-4a9d-85f2-dc4c8efb4a36}, !- Handle + Zone Outpatient Lounge C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {455a2aac-28b8-4fc8-8021-37254d8f8fe0}, !- Inlet Port + {f364e31c-9e11-4574-ba76-67c7f2b55ca6}; !- Outlet Port + +OS:Connection, + {455a2aac-28b8-4fc8-8021-37254d8f8fe0}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 92, !- Outlet Port + {2cc387bd-862d-4a9d-85f2-dc4c8efb4a36}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {8eb17aa9-a31e-4882-851f-ab1cc5e8be8b}, !- Handle + Zone Outpatient Lounge C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {1f395864-c3a9-45e1-847c-34271b147176}, !- Inlet Port + {bc298491-fd12-42a6-acc5-a20b64367d06}; !- Outlet Port + +OS:Connection, + {f364e31c-9e11-4574-ba76-67c7f2b55ca6}, !- Handle + {2cc387bd-862d-4a9d-85f2-dc4c8efb4a36}, !- Source Object + 3, !- Outlet Port + {48707f64-a429-46a9-a591-c7d6365d502b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1f395864-c3a9-45e1-847c-34271b147176}, !- Handle + {48707f64-a429-46a9-a591-c7d6365d502b}, !- Source Object + 3, !- Outlet Port + {8eb17aa9-a31e-4882-851f-ab1cc5e8be8b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bc298491-fd12-42a6-acc5-a20b64367d06}, !- Handle + {8eb17aa9-a31e-4882-851f-ab1cc5e8be8b}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 92; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {525c8355-0997-4a13-8075-4c8e85fd4d89}, !- Handle + Zone Outpatient Lounge C - Story ground Water-to-Air HP Clg Coil 27kBtu/hr 12.0EER, !- Name + {389ac91b-e619-4861-afdc-9bee4a1230bc}, !- Water Inlet Node Name + {f5dfe723-e01a-4d91-9435-9e893df8c464}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.536122972057114, !- Rated Air Flow Rate {m3/s} + 0.000178829599688658, !- Rated Water Flow Rate {m3/s} + 8536.18548073544, !- Rated Total Cooling Capacity {W} + 6548.99699650981, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {5c836894-e918-4a25-a38b-af596d0b3ca0}, !- Handle + Zone Outpatient Lounge C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {653f840e-e383-4b58-bb1f-491ba6b7b8e0}, !- Inlet Port + {389ac91b-e619-4861-afdc-9bee4a1230bc}; !- Outlet Port + +OS:Connection, + {653f840e-e383-4b58-bb1f-491ba6b7b8e0}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 93, !- Outlet Port + {5c836894-e918-4a25-a38b-af596d0b3ca0}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {892938bd-eb47-4fe1-817f-72400b956e4d}, !- Handle + Zone Outpatient Lounge C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {f5dfe723-e01a-4d91-9435-9e893df8c464}, !- Inlet Port + {7143df97-5762-4cb8-97e2-beadf39e1446}; !- Outlet Port + +OS:Connection, + {389ac91b-e619-4861-afdc-9bee4a1230bc}, !- Handle + {5c836894-e918-4a25-a38b-af596d0b3ca0}, !- Source Object + 3, !- Outlet Port + {525c8355-0997-4a13-8075-4c8e85fd4d89}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f5dfe723-e01a-4d91-9435-9e893df8c464}, !- Handle + {525c8355-0997-4a13-8075-4c8e85fd4d89}, !- Source Object + 3, !- Outlet Port + {892938bd-eb47-4fe1-817f-72400b956e4d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7143df97-5762-4cb8-97e2-beadf39e1446}, !- Handle + {892938bd-eb47-4fe1-817f-72400b956e4d}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 93; !- Inlet Port + +OS:Fan:OnOff, + {c66d17f4-2ad7-4c24-bb1b-0bf528ecb036}, !- Handle + Zone Outpatient Lounge C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.536122972057114, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {fd874019-f928-4a1d-915b-360930189e59}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {ba1008cf-abf9-401a-9fed-aecf2e6fece5}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {fd874019-f928-4a1d-915b-360930189e59}, !- Handle + Fan On Off Power Curve 44, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {ba1008cf-abf9-401a-9fed-aecf2e6fece5}, !- Handle + Fan On Off Efficiency Curve 44, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {1676a82e-d8e2-4791-9524-d93c31958956}, !- Handle + Zone Outpatient Lounge C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {fbe961e1-8509-441b-b91f-1c3837da0352}, !- Air Inlet Node Name + {785c0bd9-f19e-47f4-91f9-51948f8417eb}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.536122972057114, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.536122972057114, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.536122972057114, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {c66d17f4-2ad7-4c24-bb1b-0bf528ecb036}, !- Supply Air Fan Name + {48707f64-a429-46a9-a591-c7d6365d502b}, !- Heating Coil Name + {525c8355-0997-4a13-8075-4c8e85fd4d89}, !- Cooling Coil Name + {e3e91598-38ff-4210-af77-dfb4b891857e}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {71b8d78c-bda3-435a-895b-b0be76682a6d}, !- Handle + Zone Outpatient Lounge C - Story ground WSHP Inlet Air Node, !- Name + {3dc49d67-3f67-4cb5-96be-2e70f54efccb}, !- Inlet Port + {fbe961e1-8509-441b-b91f-1c3837da0352}; !- Outlet Port + +OS:Connection, + {3dc49d67-3f67-4cb5-96be-2e70f54efccb}, !- Handle + {97412dab-d2ee-4a19-8fa9-cf1e7d455707}, !- Source Object + 2, !- Outlet Port + {71b8d78c-bda3-435a-895b-b0be76682a6d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fbe961e1-8509-441b-b91f-1c3837da0352}, !- Handle + {71b8d78c-bda3-435a-895b-b0be76682a6d}, !- Source Object + 3, !- Outlet Port + {1676a82e-d8e2-4791-9524-d93c31958956}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {d362b3a6-6ad2-4534-978b-a9fab21b4a40}, !- Handle + Zone Outpatient Lounge C - Story ground WSHP Outlet Air Node, !- Name + {785c0bd9-f19e-47f4-91f9-51948f8417eb}, !- Inlet Port + {16eadbb1-b2d0-4786-a392-28afd8481568}; !- Outlet Port + +OS:Connection, + {16eadbb1-b2d0-4786-a392-28afd8481568}, !- Handle + {d362b3a6-6ad2-4534-978b-a9fab21b4a40}, !- Source Object + 3, !- Outlet Port + {b69da898-2f64-46d1-b60a-3fc751d64f14}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {785c0bd9-f19e-47f4-91f9-51948f8417eb}, !- Handle + {1676a82e-d8e2-4791-9524-d93c31958956}, !- Source Object + 4, !- Outlet Port + {d362b3a6-6ad2-4534-978b-a9fab21b4a40}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {3c4e8762-cd8f-40c0-8be8-e735ce14479c}, !- Handle + Zone Outpatient MedGas A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 224.322649683366, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {6b47e837-12c7-49da-b272-639b377fd4d5}, !- Handle + Zone Outpatient MedGas A - Story ground Water-to-Air HP Htg Coil 1 Clg kBtu/hr 4.2COPH, !- Name + {5381e398-b85d-40a1-b5df-6a466969d6f7}, !- Water Inlet Node Name + {62de9af0-d40d-4b6f-b98e-688e02fe3e56}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.00968966873012136, !- Rated Air Flow Rate {m3/s} + 3.56506921883318e-06, !- Rated Water Flow Rate {m3/s} + 161.147283803845, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {24800e50-da48-4524-ab80-410c2ad65050}, !- Handle + Zone Outpatient MedGas A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {f0414b53-3464-49b3-b46b-adf85b4d193f}, !- Inlet Port + {5381e398-b85d-40a1-b5df-6a466969d6f7}; !- Outlet Port + +OS:Connection, + {f0414b53-3464-49b3-b46b-adf85b4d193f}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 94, !- Outlet Port + {24800e50-da48-4524-ab80-410c2ad65050}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {a6a02e6d-fef3-40c7-bdf8-b959e7ded2f0}, !- Handle + Zone Outpatient MedGas A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {62de9af0-d40d-4b6f-b98e-688e02fe3e56}, !- Inlet Port + {35053131-a4ae-4295-ac6e-11a52e3e8ba1}; !- Outlet Port + +OS:Connection, + {5381e398-b85d-40a1-b5df-6a466969d6f7}, !- Handle + {24800e50-da48-4524-ab80-410c2ad65050}, !- Source Object + 3, !- Outlet Port + {6b47e837-12c7-49da-b272-639b377fd4d5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {62de9af0-d40d-4b6f-b98e-688e02fe3e56}, !- Handle + {6b47e837-12c7-49da-b272-639b377fd4d5}, !- Source Object + 3, !- Outlet Port + {a6a02e6d-fef3-40c7-bdf8-b959e7ded2f0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {35053131-a4ae-4295-ac6e-11a52e3e8ba1}, !- Handle + {a6a02e6d-fef3-40c7-bdf8-b959e7ded2f0}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 94; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {8f88f835-cbc0-49ee-9c97-c5eb42927f62}, !- Handle + Zone Outpatient MedGas A - Story ground Water-to-Air HP Clg Coil 1kBtu/hr 11.2EER, !- Name + {b8d1b0ae-17bf-4392-a97d-44df3bcc1939}, !- Water Inlet Node Name + {92f54975-37a2-4e2a-9700-32b7678b1c83}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.00968966873012136, !- Rated Air Flow Rate {m3/s} + 3.56506921883318e-06, !- Rated Water Flow Rate {m3/s} + 170.173685769039, !- Rated Total Cooling Capacity {W} + 124.151359129438, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {9eef53fe-add0-422a-af0c-6c8ee7e43849}, !- Handle + Zone Outpatient MedGas A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {e20311a6-bc27-4707-810f-52347024ed6a}, !- Inlet Port + {b8d1b0ae-17bf-4392-a97d-44df3bcc1939}; !- Outlet Port + +OS:Connection, + {e20311a6-bc27-4707-810f-52347024ed6a}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 95, !- Outlet Port + {9eef53fe-add0-422a-af0c-6c8ee7e43849}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {eaf833c8-3e73-4919-bd88-e0e2e7b64e27}, !- Handle + Zone Outpatient MedGas A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {92f54975-37a2-4e2a-9700-32b7678b1c83}, !- Inlet Port + {db983727-32c4-4a81-919a-dd6e9b3a3adc}; !- Outlet Port + +OS:Connection, + {b8d1b0ae-17bf-4392-a97d-44df3bcc1939}, !- Handle + {9eef53fe-add0-422a-af0c-6c8ee7e43849}, !- Source Object + 3, !- Outlet Port + {8f88f835-cbc0-49ee-9c97-c5eb42927f62}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {92f54975-37a2-4e2a-9700-32b7678b1c83}, !- Handle + {8f88f835-cbc0-49ee-9c97-c5eb42927f62}, !- Source Object + 3, !- Outlet Port + {eaf833c8-3e73-4919-bd88-e0e2e7b64e27}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {db983727-32c4-4a81-919a-dd6e9b3a3adc}, !- Handle + {eaf833c8-3e73-4919-bd88-e0e2e7b64e27}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 95; !- Inlet Port + +OS:Fan:OnOff, + {848be247-de5f-4df7-904b-064743f30c91}, !- Handle + Zone Outpatient MedGas A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.00968966873012136, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {4c88bcf0-30d9-4f25-a483-b0970b25a7cb}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {9c0b819a-0dc8-406c-bda5-393b4d03d93c}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {4c88bcf0-30d9-4f25-a483-b0970b25a7cb}, !- Handle + Fan On Off Power Curve 45, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {9c0b819a-0dc8-406c-bda5-393b4d03d93c}, !- Handle + Fan On Off Efficiency Curve 45, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {2563eb8c-cec3-4f41-b150-64b82ec2e8f7}, !- Handle + Zone Outpatient MedGas A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {027538bc-0784-4aea-bb38-f2e95744140d}, !- Air Inlet Node Name + {a4ce813c-1371-49a4-86dc-c62e04df081a}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.00968966873012136, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.00968966873012136, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.00968966873012136, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {848be247-de5f-4df7-904b-064743f30c91}, !- Supply Air Fan Name + {6b47e837-12c7-49da-b272-639b377fd4d5}, !- Heating Coil Name + {8f88f835-cbc0-49ee-9c97-c5eb42927f62}, !- Cooling Coil Name + {3c4e8762-cd8f-40c0-8be8-e735ce14479c}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {798f2005-cc27-442c-8870-03f20c85b64e}, !- Handle + Zone Outpatient MedGas A - Story ground WSHP Inlet Air Node, !- Name + {63e37293-6d4d-43ca-81c1-29ad418c2644}, !- Inlet Port + {027538bc-0784-4aea-bb38-f2e95744140d}; !- Outlet Port + +OS:Connection, + {63e37293-6d4d-43ca-81c1-29ad418c2644}, !- Handle + {5420eea7-0e8e-4c1f-b759-8c7193e286a8}, !- Source Object + 2, !- Outlet Port + {798f2005-cc27-442c-8870-03f20c85b64e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {027538bc-0784-4aea-bb38-f2e95744140d}, !- Handle + {798f2005-cc27-442c-8870-03f20c85b64e}, !- Source Object + 3, !- Outlet Port + {2563eb8c-cec3-4f41-b150-64b82ec2e8f7}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {e53301af-d7bb-462d-ba8b-8578ad41fd3f}, !- Handle + Zone Outpatient MedGas A - Story ground WSHP Outlet Air Node, !- Name + {a4ce813c-1371-49a4-86dc-c62e04df081a}, !- Inlet Port + {07d40655-bbf2-4e6b-a5c0-75b3a2b83e35}; !- Outlet Port + +OS:Connection, + {07d40655-bbf2-4e6b-a5c0-75b3a2b83e35}, !- Handle + {e53301af-d7bb-462d-ba8b-8578ad41fd3f}, !- Source Object + 3, !- Outlet Port + {8325e3d6-0b61-4bbf-92c8-e3f0c9a8a27c}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {a4ce813c-1371-49a4-86dc-c62e04df081a}, !- Handle + {2563eb8c-cec3-4f41-b150-64b82ec2e8f7}, !- Source Object + 4, !- Outlet Port + {e53301af-d7bb-462d-ba8b-8578ad41fd3f}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {94479674-d8ce-4168-8a41-0344883aa270}, !- Handle + Zone Outpatient MedGas B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 1795.28572837188, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {532b6ace-2857-4f71-8e16-155e85ddf619}, !- Handle + Zone Outpatient MedGas B - Story ground Water-to-Air HP Htg Coil 5 Clg kBtu/hr 4.2COPH, !- Name + {21ee504b-b27a-4bd2-b597-5f740b7435e5}, !- Water Inlet Node Name + {c113ae68-595b-4386-be4f-c1ce56e39e64}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0775472612005809, !- Rated Air Flow Rate {m3/s} + 2.85325791268519e-05, !- Rated Water Flow Rate {m3/s} + 1289.72183819627, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {7bbc5a2e-1280-45fa-8ccf-18eeef41bfb0}, !- Handle + Zone Outpatient MedGas B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {c7b1fb43-cb19-45dd-85b6-f8b7146679bb}, !- Inlet Port + {21ee504b-b27a-4bd2-b597-5f740b7435e5}; !- Outlet Port + +OS:Connection, + {c7b1fb43-cb19-45dd-85b6-f8b7146679bb}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 96, !- Outlet Port + {7bbc5a2e-1280-45fa-8ccf-18eeef41bfb0}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {5af5dac5-9d40-4a9f-84e7-efac7cb3ed4e}, !- Handle + Zone Outpatient MedGas B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {c113ae68-595b-4386-be4f-c1ce56e39e64}, !- Inlet Port + {40b61a3d-0d26-49fd-b104-c30a2a617291}; !- Outlet Port + +OS:Connection, + {21ee504b-b27a-4bd2-b597-5f740b7435e5}, !- Handle + {7bbc5a2e-1280-45fa-8ccf-18eeef41bfb0}, !- Source Object + 3, !- Outlet Port + {532b6ace-2857-4f71-8e16-155e85ddf619}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c113ae68-595b-4386-be4f-c1ce56e39e64}, !- Handle + {532b6ace-2857-4f71-8e16-155e85ddf619}, !- Source Object + 3, !- Outlet Port + {5af5dac5-9d40-4a9f-84e7-efac7cb3ed4e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {40b61a3d-0d26-49fd-b104-c30a2a617291}, !- Handle + {5af5dac5-9d40-4a9f-84e7-efac7cb3ed4e}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 96; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {c0867ee5-f9a5-482c-86fb-289c48ee8c53}, !- Handle + Zone Outpatient MedGas B - Story ground Water-to-Air HP Clg Coil 5kBtu/hr 11.2EER, !- Name + {7a4f153c-6ea5-4491-a5b8-71f3e7596da2}, !- Water Inlet Node Name + {35182536-a919-4e80-83c6-1d0e165af395}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0775472612005809, !- Rated Air Flow Rate {m3/s} + 2.85325791268519e-05, !- Rated Water Flow Rate {m3/s} + 1361.96350097862, !- Rated Total Cooling Capacity {W} + 999.996781913157, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {e724a442-9984-4afa-8915-780110ea5160}, !- Handle + Zone Outpatient MedGas B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {49dcff2d-23cc-4fc2-9930-ccc04208ca9e}, !- Inlet Port + {7a4f153c-6ea5-4491-a5b8-71f3e7596da2}; !- Outlet Port + +OS:Connection, + {49dcff2d-23cc-4fc2-9930-ccc04208ca9e}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 97, !- Outlet Port + {e724a442-9984-4afa-8915-780110ea5160}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {28e25a60-ac1f-4ad5-8a04-38f5a473404e}, !- Handle + Zone Outpatient MedGas B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {35182536-a919-4e80-83c6-1d0e165af395}, !- Inlet Port + {b648836c-7027-4d50-871c-4de6c682e336}; !- Outlet Port + +OS:Connection, + {7a4f153c-6ea5-4491-a5b8-71f3e7596da2}, !- Handle + {e724a442-9984-4afa-8915-780110ea5160}, !- Source Object + 3, !- Outlet Port + {c0867ee5-f9a5-482c-86fb-289c48ee8c53}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {35182536-a919-4e80-83c6-1d0e165af395}, !- Handle + {c0867ee5-f9a5-482c-86fb-289c48ee8c53}, !- Source Object + 3, !- Outlet Port + {28e25a60-ac1f-4ad5-8a04-38f5a473404e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b648836c-7027-4d50-871c-4de6c682e336}, !- Handle + {28e25a60-ac1f-4ad5-8a04-38f5a473404e}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 97; !- Inlet Port + +OS:Fan:OnOff, + {af397207-aa55-44bd-9fa5-ee2d673516ad}, !- Handle + Zone Outpatient MedGas B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0775472612005809, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {376cf195-d37e-4a99-8842-953659254121}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {278ad806-f76e-4537-8e4a-e92a52fb2f45}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {376cf195-d37e-4a99-8842-953659254121}, !- Handle + Fan On Off Power Curve 46, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {278ad806-f76e-4537-8e4a-e92a52fb2f45}, !- Handle + Fan On Off Efficiency Curve 46, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {67013009-5cca-4372-b820-956518afe039}, !- Handle + Zone Outpatient MedGas B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {35d75650-8208-4176-8baf-bb896c71a23c}, !- Air Inlet Node Name + {910bd24f-47f1-4617-95de-d17ecbdbdc0d}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0775472612005809, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0775472612005809, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0775472612005809, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {af397207-aa55-44bd-9fa5-ee2d673516ad}, !- Supply Air Fan Name + {532b6ace-2857-4f71-8e16-155e85ddf619}, !- Heating Coil Name + {c0867ee5-f9a5-482c-86fb-289c48ee8c53}, !- Cooling Coil Name + {94479674-d8ce-4168-8a41-0344883aa270}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {febb2287-bd32-4163-bd58-9b8e4b869ffd}, !- Handle + Zone Outpatient MedGas B - Story ground WSHP Inlet Air Node, !- Name + {eafdbdbe-4516-4519-ad13-013c24794ce2}, !- Inlet Port + {35d75650-8208-4176-8baf-bb896c71a23c}; !- Outlet Port + +OS:Connection, + {eafdbdbe-4516-4519-ad13-013c24794ce2}, !- Handle + {23b5d3b5-aa8a-47fa-af3d-f10eff953b98}, !- Source Object + 2, !- Outlet Port + {febb2287-bd32-4163-bd58-9b8e4b869ffd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {35d75650-8208-4176-8baf-bb896c71a23c}, !- Handle + {febb2287-bd32-4163-bd58-9b8e4b869ffd}, !- Source Object + 3, !- Outlet Port + {67013009-5cca-4372-b820-956518afe039}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {f909272c-2861-4ac4-b495-8162dee3181f}, !- Handle + Zone Outpatient MedGas B - Story ground WSHP Outlet Air Node, !- Name + {910bd24f-47f1-4617-95de-d17ecbdbdc0d}, !- Inlet Port + {43299087-8fcc-411a-a67e-efbf945df7de}; !- Outlet Port + +OS:Connection, + {43299087-8fcc-411a-a67e-efbf945df7de}, !- Handle + {f909272c-2861-4ac4-b495-8162dee3181f}, !- Source Object + 3, !- Outlet Port + {42d35d96-0473-4ced-bdea-f693a3a5fe02}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {910bd24f-47f1-4617-95de-d17ecbdbdc0d}, !- Handle + {67013009-5cca-4372-b820-956518afe039}, !- Source Object + 4, !- Outlet Port + {f909272c-2861-4ac4-b495-8162dee3181f}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {be2b464f-15ed-436d-960c-cd5768880bbb}, !- Handle + Zone Outpatient MedGas C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 224.322649683368, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {86b179e2-bf66-481f-9444-afb7ee4413b7}, !- Handle + Zone Outpatient MedGas C - Story ground Water-to-Air HP Htg Coil 1 Clg kBtu/hr 4.2COPH, !- Name + {100e8eb7-c6d0-48d3-83bd-2fa31017fa31}, !- Water Inlet Node Name + {1332e2a3-95c6-4d46-9050-054c3577a279}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.00968966873012144, !- Rated Air Flow Rate {m3/s} + 3.56506921883321e-06, !- Rated Water Flow Rate {m3/s} + 161.147283803847, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {d457b3c1-b512-48dd-ab01-ae7c41852c85}, !- Handle + Zone Outpatient MedGas C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {512bc3ea-fb27-4db5-8d48-1052335ab81e}, !- Inlet Port + {100e8eb7-c6d0-48d3-83bd-2fa31017fa31}; !- Outlet Port + +OS:Connection, + {512bc3ea-fb27-4db5-8d48-1052335ab81e}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 98, !- Outlet Port + {d457b3c1-b512-48dd-ab01-ae7c41852c85}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {45b7bb96-59cb-4321-b0c7-51c6c2726707}, !- Handle + Zone Outpatient MedGas C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {1332e2a3-95c6-4d46-9050-054c3577a279}, !- Inlet Port + {b800d292-ac59-40dc-9018-956cf31a7108}; !- Outlet Port + +OS:Connection, + {100e8eb7-c6d0-48d3-83bd-2fa31017fa31}, !- Handle + {d457b3c1-b512-48dd-ab01-ae7c41852c85}, !- Source Object + 3, !- Outlet Port + {86b179e2-bf66-481f-9444-afb7ee4413b7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1332e2a3-95c6-4d46-9050-054c3577a279}, !- Handle + {86b179e2-bf66-481f-9444-afb7ee4413b7}, !- Source Object + 3, !- Outlet Port + {45b7bb96-59cb-4321-b0c7-51c6c2726707}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b800d292-ac59-40dc-9018-956cf31a7108}, !- Handle + {45b7bb96-59cb-4321-b0c7-51c6c2726707}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 98; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {4a938f0c-8623-436b-9d9b-54b1e88f71d8}, !- Handle + Zone Outpatient MedGas C - Story ground Water-to-Air HP Clg Coil 1kBtu/hr 11.2EER, !- Name + {7078431f-55e8-4bbc-aba8-21d82528bb2e}, !- Water Inlet Node Name + {39605ebd-53b6-4eea-b7b2-82a157caf2f8}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.00968966873012144, !- Rated Air Flow Rate {m3/s} + 3.56506921883321e-06, !- Rated Water Flow Rate {m3/s} + 170.17368576904, !- Rated Total Cooling Capacity {W} + 124.151359129412, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {0a5dd132-41df-4bd8-8498-4af0be15f259}, !- Handle + Zone Outpatient MedGas C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {8c1861b1-c688-4c26-8c29-dd3679c9510d}, !- Inlet Port + {7078431f-55e8-4bbc-aba8-21d82528bb2e}; !- Outlet Port + +OS:Connection, + {8c1861b1-c688-4c26-8c29-dd3679c9510d}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 99, !- Outlet Port + {0a5dd132-41df-4bd8-8498-4af0be15f259}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {c4b9fa1f-271c-49d7-8ddb-6aadffbd5264}, !- Handle + Zone Outpatient MedGas C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {39605ebd-53b6-4eea-b7b2-82a157caf2f8}, !- Inlet Port + {3655b233-3890-477b-b855-76dde0bd6da7}; !- Outlet Port + +OS:Connection, + {7078431f-55e8-4bbc-aba8-21d82528bb2e}, !- Handle + {0a5dd132-41df-4bd8-8498-4af0be15f259}, !- Source Object + 3, !- Outlet Port + {4a938f0c-8623-436b-9d9b-54b1e88f71d8}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {39605ebd-53b6-4eea-b7b2-82a157caf2f8}, !- Handle + {4a938f0c-8623-436b-9d9b-54b1e88f71d8}, !- Source Object + 3, !- Outlet Port + {c4b9fa1f-271c-49d7-8ddb-6aadffbd5264}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3655b233-3890-477b-b855-76dde0bd6da7}, !- Handle + {c4b9fa1f-271c-49d7-8ddb-6aadffbd5264}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 99; !- Inlet Port + +OS:Fan:OnOff, + {008d9ea0-b836-46a9-96fb-ebef89516e36}, !- Handle + Zone Outpatient MedGas C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.00968966873012144, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {b8936a2b-2b23-4591-b640-29b9835b1bb6}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {62498119-b647-4a48-84c4-68096724fadf}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {b8936a2b-2b23-4591-b640-29b9835b1bb6}, !- Handle + Fan On Off Power Curve 47, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {62498119-b647-4a48-84c4-68096724fadf}, !- Handle + Fan On Off Efficiency Curve 47, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {130abc13-851e-48c4-bbb7-81661d53301a}, !- Handle + Zone Outpatient MedGas C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {392cf9b3-d168-4bf1-8967-525995298cbc}, !- Air Inlet Node Name + {bbfc366b-4003-42d0-bfd4-d1b63bc7fad1}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.00968966873012144, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.00968966873012144, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.00968966873012144, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {008d9ea0-b836-46a9-96fb-ebef89516e36}, !- Supply Air Fan Name + {86b179e2-bf66-481f-9444-afb7ee4413b7}, !- Heating Coil Name + {4a938f0c-8623-436b-9d9b-54b1e88f71d8}, !- Cooling Coil Name + {be2b464f-15ed-436d-960c-cd5768880bbb}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {e33de38f-b1d2-4a2a-90bb-bef95a9b2a23}, !- Handle + Zone Outpatient MedGas C - Story ground WSHP Inlet Air Node, !- Name + {ddaf326a-8bc5-4561-b4e3-13dcc2ba779c}, !- Inlet Port + {392cf9b3-d168-4bf1-8967-525995298cbc}; !- Outlet Port + +OS:Connection, + {ddaf326a-8bc5-4561-b4e3-13dcc2ba779c}, !- Handle + {c9175bc4-ec9f-4c17-ad9e-7b377c09c267}, !- Source Object + 2, !- Outlet Port + {e33de38f-b1d2-4a2a-90bb-bef95a9b2a23}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {392cf9b3-d168-4bf1-8967-525995298cbc}, !- Handle + {e33de38f-b1d2-4a2a-90bb-bef95a9b2a23}, !- Source Object + 3, !- Outlet Port + {130abc13-851e-48c4-bbb7-81661d53301a}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {276cce73-3ed8-4712-adea-cf69f443a2f5}, !- Handle + Zone Outpatient MedGas C - Story ground WSHP Outlet Air Node, !- Name + {bbfc366b-4003-42d0-bfd4-d1b63bc7fad1}, !- Inlet Port + {69651de9-e894-42b0-b130-09b23f7f3256}; !- Outlet Port + +OS:Connection, + {69651de9-e894-42b0-b130-09b23f7f3256}, !- Handle + {276cce73-3ed8-4712-adea-cf69f443a2f5}, !- Source Object + 3, !- Outlet Port + {a07dac7f-5e2e-4ad6-ad8f-81c6ca849f8e}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {bbfc366b-4003-42d0-bfd4-d1b63bc7fad1}, !- Handle + {130abc13-851e-48c4-bbb7-81661d53301a}, !- Source Object + 4, !- Outlet Port + {276cce73-3ed8-4712-adea-cf69f443a2f5}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {363de005-7763-485b-b027-b0224c8f7aaa}, !- Handle + Zone Outpatient MRI A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 671.701586187765, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {00e1a144-8bc6-458b-ba37-a4bff0a4290e}, !- Handle + Zone Outpatient MRI A - Story ground Water-to-Air HP Htg Coil 27 Clg kBtu/hr 4.2COPH, !- Name + {8939aeb0-649f-485d-a866-9a329efd033c}, !- Water Inlet Node Name + {20505fa5-fec9-4d5b-8bea-9726302f5f44}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.556408768113211, !- Rated Air Flow Rate {m3/s} + 0.000178278709076463, !- Rated Water Flow Rate {m3/s} + 8058.50544947645, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {1ec946de-20ac-4be6-9264-f2a5caea3e75}, !- Handle + Zone Outpatient MRI A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {c7af149e-5197-41a9-8169-f442bc47dacb}, !- Inlet Port + {8939aeb0-649f-485d-a866-9a329efd033c}; !- Outlet Port + +OS:Connection, + {c7af149e-5197-41a9-8169-f442bc47dacb}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 100, !- Outlet Port + {1ec946de-20ac-4be6-9264-f2a5caea3e75}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {a5678332-3630-4a90-a9d4-ea16e0a98205}, !- Handle + Zone Outpatient MRI A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {20505fa5-fec9-4d5b-8bea-9726302f5f44}, !- Inlet Port + {b5fdc52c-5000-402c-87d5-897d4b893bad}; !- Outlet Port + +OS:Connection, + {8939aeb0-649f-485d-a866-9a329efd033c}, !- Handle + {1ec946de-20ac-4be6-9264-f2a5caea3e75}, !- Source Object + 3, !- Outlet Port + {00e1a144-8bc6-458b-ba37-a4bff0a4290e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {20505fa5-fec9-4d5b-8bea-9726302f5f44}, !- Handle + {00e1a144-8bc6-458b-ba37-a4bff0a4290e}, !- Source Object + 3, !- Outlet Port + {a5678332-3630-4a90-a9d4-ea16e0a98205}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b5fdc52c-5000-402c-87d5-897d4b893bad}, !- Handle + {a5678332-3630-4a90-a9d4-ea16e0a98205}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 100; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {01e26952-a81b-425e-b089-171d0d050791}, !- Handle + Zone Outpatient MRI A - Story ground Water-to-Air HP Clg Coil 27kBtu/hr 12.0EER, !- Name + {7de2d1c1-97fa-46f5-8ef6-826bdc972247}, !- Water Inlet Node Name + {4da782be-18d8-4b47-a707-709b43bb9714}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.556408768113211, !- Rated Air Flow Rate {m3/s} + 0.000178278709076463, !- Rated Water Flow Rate {m3/s} + 8509.88947351137, !- Rated Total Cooling Capacity {W} + 6687.82063330286, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {7c741ad1-5842-4678-8f04-94f963556fac}, !- Handle + Zone Outpatient MRI A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {2a1e5b1a-323c-430c-89d8-58303b4df56a}, !- Inlet Port + {7de2d1c1-97fa-46f5-8ef6-826bdc972247}; !- Outlet Port + +OS:Connection, + {2a1e5b1a-323c-430c-89d8-58303b4df56a}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 101, !- Outlet Port + {7c741ad1-5842-4678-8f04-94f963556fac}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {d3659036-0cd8-4fc0-8f38-82ebcbbebf28}, !- Handle + Zone Outpatient MRI A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {4da782be-18d8-4b47-a707-709b43bb9714}, !- Inlet Port + {692a4127-a53b-40ce-b12e-b3c54ac13f01}; !- Outlet Port + +OS:Connection, + {7de2d1c1-97fa-46f5-8ef6-826bdc972247}, !- Handle + {7c741ad1-5842-4678-8f04-94f963556fac}, !- Source Object + 3, !- Outlet Port + {01e26952-a81b-425e-b089-171d0d050791}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4da782be-18d8-4b47-a707-709b43bb9714}, !- Handle + {01e26952-a81b-425e-b089-171d0d050791}, !- Source Object + 3, !- Outlet Port + {d3659036-0cd8-4fc0-8f38-82ebcbbebf28}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {692a4127-a53b-40ce-b12e-b3c54ac13f01}, !- Handle + {d3659036-0cd8-4fc0-8f38-82ebcbbebf28}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 101; !- Inlet Port + +OS:Fan:OnOff, + {badeb495-aaf2-4744-bb17-12e4ba50ce6d}, !- Handle + Zone Outpatient MRI A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.556408768113211, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {68925ef1-c915-419d-b06d-ab3c1efb8e16}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {485138ae-4a2e-4c4e-87c2-6de0123d48a7}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {68925ef1-c915-419d-b06d-ab3c1efb8e16}, !- Handle + Fan On Off Power Curve 48, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {485138ae-4a2e-4c4e-87c2-6de0123d48a7}, !- Handle + Fan On Off Efficiency Curve 48, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {14777e4b-d48f-41ee-b22b-73a567d46eed}, !- Handle + Zone Outpatient MRI A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {8d67e920-00fc-49a6-9d38-a208ab9913bd}, !- Air Inlet Node Name + {f504f716-1f8b-4d83-9c5a-05109c63ea29}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.556408768113211, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.556408768113211, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.556408768113211, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {badeb495-aaf2-4744-bb17-12e4ba50ce6d}, !- Supply Air Fan Name + {00e1a144-8bc6-458b-ba37-a4bff0a4290e}, !- Heating Coil Name + {01e26952-a81b-425e-b089-171d0d050791}, !- Cooling Coil Name + {363de005-7763-485b-b027-b0224c8f7aaa}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {a6f16451-fa08-44ea-9b2d-c332697da5b5}, !- Handle + Zone Outpatient MRI A - Story ground WSHP Inlet Air Node, !- Name + {315c0988-3fc7-4030-a359-c2f0aaec3e00}, !- Inlet Port + {8d67e920-00fc-49a6-9d38-a208ab9913bd}; !- Outlet Port + +OS:Connection, + {315c0988-3fc7-4030-a359-c2f0aaec3e00}, !- Handle + {c6316fbd-39ab-4cbe-956e-c9f2c0edcae3}, !- Source Object + 3, !- Outlet Port + {a6f16451-fa08-44ea-9b2d-c332697da5b5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8d67e920-00fc-49a6-9d38-a208ab9913bd}, !- Handle + {a6f16451-fa08-44ea-9b2d-c332697da5b5}, !- Source Object + 3, !- Outlet Port + {14777e4b-d48f-41ee-b22b-73a567d46eed}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {e7eb3012-73a4-4a3c-9001-2d7c4122d574}, !- Handle + Zone Outpatient MRI A - Story ground WSHP Outlet Air Node, !- Name + {f504f716-1f8b-4d83-9c5a-05109c63ea29}, !- Inlet Port + {9e994bda-31d5-4a25-a1c4-a8c8dae8a812}; !- Outlet Port + +OS:Connection, + {9e994bda-31d5-4a25-a1c4-a8c8dae8a812}, !- Handle + {e7eb3012-73a4-4a3c-9001-2d7c4122d574}, !- Source Object + 3, !- Outlet Port + {7559be6d-2a11-4226-8a3f-3864b2990020}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {f504f716-1f8b-4d83-9c5a-05109c63ea29}, !- Handle + {14777e4b-d48f-41ee-b22b-73a567d46eed}, !- Source Object + 4, !- Outlet Port + {e7eb3012-73a4-4a3c-9001-2d7c4122d574}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {e0229830-08cc-4099-8a8c-8df012589871}, !- Handle + Zone Outpatient MRI B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 5058.65684756141, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {d09a77dc-f3fe-4805-a4c9-2f59a8f07037}, !- Handle + Zone Outpatient MRI B - Story ground Water-to-Air HP Htg Coil 212 Clg kBtu/hr 4.2COPH, !- Name + {25d7a4ec-2f1c-415a-a111-466113641f4a}, !- Water Inlet Node Name + {47067653-76b9-4904-ab0a-0ce3ae028a76}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 4.41669608634946, !- Rated Air Flow Rate {m3/s} + 0.00141661605993998, !- Rated Water Flow Rate {m3/s} + 64033.491705092, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {f0ad672f-c0ab-4b4e-974e-77f45deb0260}, !- Handle + Zone Outpatient MRI B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {e2d99d71-52e4-416e-8c49-6dbf61758588}, !- Inlet Port + {25d7a4ec-2f1c-415a-a111-466113641f4a}; !- Outlet Port + +OS:Connection, + {e2d99d71-52e4-416e-8c49-6dbf61758588}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 102, !- Outlet Port + {f0ad672f-c0ab-4b4e-974e-77f45deb0260}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {f31e8711-2965-4c86-afb4-a300a86972d0}, !- Handle + Zone Outpatient MRI B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {47067653-76b9-4904-ab0a-0ce3ae028a76}, !- Inlet Port + {1df93e2f-90e1-423b-8630-4344ce42e5d3}; !- Outlet Port + +OS:Connection, + {25d7a4ec-2f1c-415a-a111-466113641f4a}, !- Handle + {f0ad672f-c0ab-4b4e-974e-77f45deb0260}, !- Source Object + 3, !- Outlet Port + {d09a77dc-f3fe-4805-a4c9-2f59a8f07037}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {47067653-76b9-4904-ab0a-0ce3ae028a76}, !- Handle + {d09a77dc-f3fe-4805-a4c9-2f59a8f07037}, !- Source Object + 3, !- Outlet Port + {f31e8711-2965-4c86-afb4-a300a86972d0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1df93e2f-90e1-423b-8630-4344ce42e5d3}, !- Handle + {f31e8711-2965-4c86-afb4-a300a86972d0}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 102; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {876d7b6d-db90-4099-b64f-6980f0c14a72}, !- Handle + Zone Outpatient MRI B - Story ground Water-to-Air HP Clg Coil, !- Name + {c7ae0c97-26d7-4030-943e-25dc67cf920d}, !- Water Inlet Node Name + {b93e5205-6fd3-4103-9e51-5e7822331cac}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 4.41669608634946, !- Rated Air Flow Rate {m3/s} + 0.00141661605993998, !- Rated Water Flow Rate {m3/s} + 67620.2231827917, !- Rated Total Cooling Capacity {W} + 53107.80888161, !- Rated Sensible Cooling Capacity {W} + 3.4, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {ba5d239e-65a0-4690-bd94-4f4b9074ecf3}, !- Handle + Zone Outpatient MRI B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {ece0cb34-7073-4c24-8141-e9e13c1d46be}, !- Inlet Port + {c7ae0c97-26d7-4030-943e-25dc67cf920d}; !- Outlet Port + +OS:Connection, + {ece0cb34-7073-4c24-8141-e9e13c1d46be}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 103, !- Outlet Port + {ba5d239e-65a0-4690-bd94-4f4b9074ecf3}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {e9e606c2-1230-441e-b51c-6b2d8813ed67}, !- Handle + Zone Outpatient MRI B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {b93e5205-6fd3-4103-9e51-5e7822331cac}, !- Inlet Port + {7c013a05-330b-42bb-abe9-db3f97eca884}; !- Outlet Port + +OS:Connection, + {c7ae0c97-26d7-4030-943e-25dc67cf920d}, !- Handle + {ba5d239e-65a0-4690-bd94-4f4b9074ecf3}, !- Source Object + 3, !- Outlet Port + {876d7b6d-db90-4099-b64f-6980f0c14a72}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b93e5205-6fd3-4103-9e51-5e7822331cac}, !- Handle + {876d7b6d-db90-4099-b64f-6980f0c14a72}, !- Source Object + 3, !- Outlet Port + {e9e606c2-1230-441e-b51c-6b2d8813ed67}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7c013a05-330b-42bb-abe9-db3f97eca884}, !- Handle + {e9e606c2-1230-441e-b51c-6b2d8813ed67}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 103; !- Inlet Port + +OS:Fan:OnOff, + {967fd381-7945-4b54-a07f-4d186e519a0f}, !- Handle + Zone Outpatient MRI B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 4.41669608634946, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {aada222a-5c2c-4d81-85a3-f7301721fc85}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {7a250349-c228-43a9-812b-3151e1ec1726}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {aada222a-5c2c-4d81-85a3-f7301721fc85}, !- Handle + Fan On Off Power Curve 49, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {7a250349-c228-43a9-812b-3151e1ec1726}, !- Handle + Fan On Off Efficiency Curve 49, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {49ecf89c-4716-4e67-9fc1-6956bd5ed0c1}, !- Handle + Zone Outpatient MRI B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {2b6af264-1ea7-4a3f-9e55-f80202957a33}, !- Air Inlet Node Name + {65afef46-aa8b-49ee-ab6b-757a23040e13}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 4.41669608634946, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 4.41669608634946, !- Supply Air Flow Rate During Heating Operation {m3/s} + 4.41669608634946, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {967fd381-7945-4b54-a07f-4d186e519a0f}, !- Supply Air Fan Name + {d09a77dc-f3fe-4805-a4c9-2f59a8f07037}, !- Heating Coil Name + {876d7b6d-db90-4099-b64f-6980f0c14a72}, !- Cooling Coil Name + {e0229830-08cc-4099-8a8c-8df012589871}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {4dd81c03-26a5-47dd-8168-d219bcc7f349}, !- Handle + Zone Outpatient MRI B - Story ground WSHP Inlet Air Node, !- Name + {5bfd37aa-c056-420b-86a0-08d650777533}, !- Inlet Port + {2b6af264-1ea7-4a3f-9e55-f80202957a33}; !- Outlet Port + +OS:Connection, + {5bfd37aa-c056-420b-86a0-08d650777533}, !- Handle + {e0691229-32c4-481d-b338-e391b7464137}, !- Source Object + 3, !- Outlet Port + {4dd81c03-26a5-47dd-8168-d219bcc7f349}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2b6af264-1ea7-4a3f-9e55-f80202957a33}, !- Handle + {4dd81c03-26a5-47dd-8168-d219bcc7f349}, !- Source Object + 3, !- Outlet Port + {49ecf89c-4716-4e67-9fc1-6956bd5ed0c1}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {10ae1ad8-12d7-460b-863f-67377df143de}, !- Handle + Zone Outpatient MRI B - Story ground WSHP Outlet Air Node, !- Name + {65afef46-aa8b-49ee-ab6b-757a23040e13}, !- Inlet Port + {9eed8eb9-b691-411f-af9a-523ced14f133}; !- Outlet Port + +OS:Connection, + {9eed8eb9-b691-411f-af9a-523ced14f133}, !- Handle + {10ae1ad8-12d7-460b-863f-67377df143de}, !- Source Object + 3, !- Outlet Port + {20dd16e6-3d4e-49ee-8dbd-fef3a49d4627}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {65afef46-aa8b-49ee-ab6b-757a23040e13}, !- Handle + {49ecf89c-4716-4e67-9fc1-6956bd5ed0c1}, !- Source Object + 4, !- Outlet Port + {10ae1ad8-12d7-460b-863f-67377df143de}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {1f5ce977-5e9d-4de4-ac5a-b8395e3bc066}, !- Handle + Zone Outpatient MRI C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 671.701586187973, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {27e539b0-225a-4213-a720-94f9baf6f5d6}, !- Handle + Zone Outpatient MRI C - Story ground Water-to-Air HP Htg Coil 27 Clg kBtu/hr 4.2COPH, !- Name + {096170b9-cc05-4ce1-b5d9-86e34d8bcb73}, !- Water Inlet Node Name + {1424c60e-3569-438d-a51a-98553fa45385}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.556408768113251, !- Rated Air Flow Rate {m3/s} + 0.000178278709076475, !- Rated Water Flow Rate {m3/s} + 8058.50544947701, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {1e2d7621-c220-42f6-9ab1-7e63f3440a31}, !- Handle + Zone Outpatient MRI C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {a4a4471f-f337-4964-845f-f23c096c9a5a}, !- Inlet Port + {096170b9-cc05-4ce1-b5d9-86e34d8bcb73}; !- Outlet Port + +OS:Connection, + {a4a4471f-f337-4964-845f-f23c096c9a5a}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 104, !- Outlet Port + {1e2d7621-c220-42f6-9ab1-7e63f3440a31}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {25c06628-578d-4da2-9923-71766f74882d}, !- Handle + Zone Outpatient MRI C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {1424c60e-3569-438d-a51a-98553fa45385}, !- Inlet Port + {f7903e2d-f713-4702-b47f-f018993cdb2a}; !- Outlet Port + +OS:Connection, + {096170b9-cc05-4ce1-b5d9-86e34d8bcb73}, !- Handle + {1e2d7621-c220-42f6-9ab1-7e63f3440a31}, !- Source Object + 3, !- Outlet Port + {27e539b0-225a-4213-a720-94f9baf6f5d6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1424c60e-3569-438d-a51a-98553fa45385}, !- Handle + {27e539b0-225a-4213-a720-94f9baf6f5d6}, !- Source Object + 3, !- Outlet Port + {25c06628-578d-4da2-9923-71766f74882d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f7903e2d-f713-4702-b47f-f018993cdb2a}, !- Handle + {25c06628-578d-4da2-9923-71766f74882d}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 104; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {f53927c2-236f-413a-8158-097cc3070770}, !- Handle + Zone Outpatient MRI C - Story ground Water-to-Air HP Clg Coil 27kBtu/hr 12.0EER, !- Name + {eac0ba79-4b7a-437c-afd9-409c410f36f9}, !- Water Inlet Node Name + {6ada3cab-4471-42a4-97f7-26a894976bf5}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.556408768113251, !- Rated Air Flow Rate {m3/s} + 0.000178278709076475, !- Rated Water Flow Rate {m3/s} + 8509.88947351197, !- Rated Total Cooling Capacity {W} + 6687.82063330335, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {d369ea4f-d3e8-4227-8aba-f9cea0b4f47b}, !- Handle + Zone Outpatient MRI C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {8f7c3875-17f7-4c83-976b-dc0458656571}, !- Inlet Port + {eac0ba79-4b7a-437c-afd9-409c410f36f9}; !- Outlet Port + +OS:Connection, + {8f7c3875-17f7-4c83-976b-dc0458656571}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 105, !- Outlet Port + {d369ea4f-d3e8-4227-8aba-f9cea0b4f47b}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {09c04538-320b-434e-81e3-22c40b0dce4b}, !- Handle + Zone Outpatient MRI C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {6ada3cab-4471-42a4-97f7-26a894976bf5}, !- Inlet Port + {2b8d1b08-fbf6-496a-b699-9716fc4ff161}; !- Outlet Port + +OS:Connection, + {eac0ba79-4b7a-437c-afd9-409c410f36f9}, !- Handle + {d369ea4f-d3e8-4227-8aba-f9cea0b4f47b}, !- Source Object + 3, !- Outlet Port + {f53927c2-236f-413a-8158-097cc3070770}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6ada3cab-4471-42a4-97f7-26a894976bf5}, !- Handle + {f53927c2-236f-413a-8158-097cc3070770}, !- Source Object + 3, !- Outlet Port + {09c04538-320b-434e-81e3-22c40b0dce4b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2b8d1b08-fbf6-496a-b699-9716fc4ff161}, !- Handle + {09c04538-320b-434e-81e3-22c40b0dce4b}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 105; !- Inlet Port + +OS:Fan:OnOff, + {62582506-df63-43b9-aa14-028ecc03043c}, !- Handle + Zone Outpatient MRI C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.556408768113251, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {d46c8438-5ef9-457f-a7b7-48bba56872d1}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {aa2d58cf-aa71-45ad-a6d4-a605a6198c47}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {d46c8438-5ef9-457f-a7b7-48bba56872d1}, !- Handle + Fan On Off Power Curve 50, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {aa2d58cf-aa71-45ad-a6d4-a605a6198c47}, !- Handle + Fan On Off Efficiency Curve 50, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {54126923-8b4c-4c2b-a081-e6d4aa50b960}, !- Handle + Zone Outpatient MRI C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {a79d18ff-6634-4613-a80c-d1fbac4fecb3}, !- Air Inlet Node Name + {4916da61-236b-4936-9033-b8fbbd66d24c}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.556408768113251, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.556408768113251, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.556408768113251, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {62582506-df63-43b9-aa14-028ecc03043c}, !- Supply Air Fan Name + {27e539b0-225a-4213-a720-94f9baf6f5d6}, !- Heating Coil Name + {f53927c2-236f-413a-8158-097cc3070770}, !- Cooling Coil Name + {1f5ce977-5e9d-4de4-ac5a-b8395e3bc066}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {6e5014c7-8f2b-4ed7-9a5c-4e3ab00c97ce}, !- Handle + Zone Outpatient MRI C - Story ground WSHP Inlet Air Node, !- Name + {097efba1-0c82-4e0d-b273-32c2237534a4}, !- Inlet Port + {a79d18ff-6634-4613-a80c-d1fbac4fecb3}; !- Outlet Port + +OS:Connection, + {097efba1-0c82-4e0d-b273-32c2237534a4}, !- Handle + {2d853992-5341-4cac-9851-6320ed4593ba}, !- Source Object + 3, !- Outlet Port + {6e5014c7-8f2b-4ed7-9a5c-4e3ab00c97ce}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a79d18ff-6634-4613-a80c-d1fbac4fecb3}, !- Handle + {6e5014c7-8f2b-4ed7-9a5c-4e3ab00c97ce}, !- Source Object + 3, !- Outlet Port + {54126923-8b4c-4c2b-a081-e6d4aa50b960}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {fe109036-29bb-48ad-982a-d9dcbf34842e}, !- Handle + Zone Outpatient MRI C - Story ground WSHP Outlet Air Node, !- Name + {4916da61-236b-4936-9033-b8fbbd66d24c}, !- Inlet Port + {527f14bd-87e0-4956-8d89-a660a9c0809a}; !- Outlet Port + +OS:Connection, + {527f14bd-87e0-4956-8d89-a660a9c0809a}, !- Handle + {fe109036-29bb-48ad-982a-d9dcbf34842e}, !- Source Object + 3, !- Outlet Port + {cd65c217-cc7b-4dea-b350-d1ede48976da}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {4916da61-236b-4936-9033-b8fbbd66d24c}, !- Handle + {54126923-8b4c-4c2b-a081-e6d4aa50b960}, !- Source Object + 4, !- Outlet Port + {fe109036-29bb-48ad-982a-d9dcbf34842e}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {de36be1f-0f17-4fec-ad6a-bd0ad653e815}, !- Handle + Zone Outpatient MRI_Control A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 341.147471915775, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {bcd390d8-61c5-4af3-8204-daebac825484}, !- Handle + Zone Outpatient MRI_Control A - Story ground Water-to-Air HP Htg Coil 2 Clg kBtu/hr 4.2COPH, !- Name + {da3ab79b-04bf-46a6-bd7a-4a388ed1c389}, !- Water Inlet Node Name + {d8568782-9797-49a3-958b-31849b719ff3}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0229440054404966, !- Rated Air Flow Rate {m3/s} + 9.48048860325933e-06, !- Rated Water Flow Rate {m3/s} + 428.534452985621, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {d8c4f485-308e-4cab-b542-c04dd0246710}, !- Handle + Zone Outpatient MRI_Control A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {586822b9-2dbb-4bc6-95b5-086a466a5934}, !- Inlet Port + {da3ab79b-04bf-46a6-bd7a-4a388ed1c389}; !- Outlet Port + +OS:Connection, + {586822b9-2dbb-4bc6-95b5-086a466a5934}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 106, !- Outlet Port + {d8c4f485-308e-4cab-b542-c04dd0246710}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {5c032325-b7f1-45ed-b10a-a0d32b3fd3db}, !- Handle + Zone Outpatient MRI_Control A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {d8568782-9797-49a3-958b-31849b719ff3}, !- Inlet Port + {42210beb-8397-4b9c-be0f-6562162baba5}; !- Outlet Port + +OS:Connection, + {da3ab79b-04bf-46a6-bd7a-4a388ed1c389}, !- Handle + {d8c4f485-308e-4cab-b542-c04dd0246710}, !- Source Object + 3, !- Outlet Port + {bcd390d8-61c5-4af3-8204-daebac825484}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d8568782-9797-49a3-958b-31849b719ff3}, !- Handle + {bcd390d8-61c5-4af3-8204-daebac825484}, !- Source Object + 3, !- Outlet Port + {5c032325-b7f1-45ed-b10a-a0d32b3fd3db}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {42210beb-8397-4b9c-be0f-6562162baba5}, !- Handle + {5c032325-b7f1-45ed-b10a-a0d32b3fd3db}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 106; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {290ae2cf-dba6-4bee-8e3f-66714363ef9c}, !- Handle + Zone Outpatient MRI_Control A - Story ground Water-to-Air HP Clg Coil 2kBtu/hr 11.2EER, !- Name + {8c29717b-f745-4c17-89c2-18a76bea0bc4}, !- Water Inlet Node Name + {85f7b9dc-4933-40fe-a163-22be52a80b1b}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0229440054404966, !- Rated Air Flow Rate {m3/s} + 9.48048860325933e-06, !- Rated Water Flow Rate {m3/s} + 452.538110616556, !- Rated Total Cooling Capacity {W} + 311.303198525491, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {2068c639-2bed-4d5b-bf1d-53071387a1fc}, !- Handle + Zone Outpatient MRI_Control A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {38cf0b9c-d05c-4371-a1f1-ff0aff2ddaa7}, !- Inlet Port + {8c29717b-f745-4c17-89c2-18a76bea0bc4}; !- Outlet Port + +OS:Connection, + {38cf0b9c-d05c-4371-a1f1-ff0aff2ddaa7}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 107, !- Outlet Port + {2068c639-2bed-4d5b-bf1d-53071387a1fc}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {d9753cdf-b02b-45d8-8744-9a68e304b8e5}, !- Handle + Zone Outpatient MRI_Control A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {85f7b9dc-4933-40fe-a163-22be52a80b1b}, !- Inlet Port + {4e7b6de7-4153-4b1e-accc-3cdf6c9ac749}; !- Outlet Port + +OS:Connection, + {8c29717b-f745-4c17-89c2-18a76bea0bc4}, !- Handle + {2068c639-2bed-4d5b-bf1d-53071387a1fc}, !- Source Object + 3, !- Outlet Port + {290ae2cf-dba6-4bee-8e3f-66714363ef9c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {85f7b9dc-4933-40fe-a163-22be52a80b1b}, !- Handle + {290ae2cf-dba6-4bee-8e3f-66714363ef9c}, !- Source Object + 3, !- Outlet Port + {d9753cdf-b02b-45d8-8744-9a68e304b8e5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4e7b6de7-4153-4b1e-accc-3cdf6c9ac749}, !- Handle + {d9753cdf-b02b-45d8-8744-9a68e304b8e5}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 107; !- Inlet Port + +OS:Fan:OnOff, + {d8afe02b-5e65-4dbd-bc57-4289686f9083}, !- Handle + Zone Outpatient MRI_Control A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0229440054404966, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {9a6f016b-3be1-4875-8a22-1787f99c38ba}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {df2a651d-91d8-4a64-9f3c-a7673cc90c6f}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {9a6f016b-3be1-4875-8a22-1787f99c38ba}, !- Handle + Fan On Off Power Curve 51, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {df2a651d-91d8-4a64-9f3c-a7673cc90c6f}, !- Handle + Fan On Off Efficiency Curve 51, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {548ad40b-7502-457b-81f6-59aca8a1833c}, !- Handle + Zone Outpatient MRI_Control A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {3418662d-f563-48fc-a860-be8d5b903e6c}, !- Air Inlet Node Name + {f96a0c7f-91b5-4ca7-9d06-89c52203b75a}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0229440054404966, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0229440054404966, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0229440054404966, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {d8afe02b-5e65-4dbd-bc57-4289686f9083}, !- Supply Air Fan Name + {bcd390d8-61c5-4af3-8204-daebac825484}, !- Heating Coil Name + {290ae2cf-dba6-4bee-8e3f-66714363ef9c}, !- Cooling Coil Name + {de36be1f-0f17-4fec-ad6a-bd0ad653e815}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {339e4fe3-7d45-43bd-b013-4ba515785c04}, !- Handle + Zone Outpatient MRI_Control A - Story ground WSHP Inlet Air Node, !- Name + {5f3c87bf-ca9f-41b5-a0f1-52a2a38c7a66}, !- Inlet Port + {3418662d-f563-48fc-a860-be8d5b903e6c}; !- Outlet Port + +OS:Connection, + {5f3c87bf-ca9f-41b5-a0f1-52a2a38c7a66}, !- Handle + {935302f2-c5c4-4f36-a53d-37c26186b9bf}, !- Source Object + 3, !- Outlet Port + {339e4fe3-7d45-43bd-b013-4ba515785c04}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3418662d-f563-48fc-a860-be8d5b903e6c}, !- Handle + {339e4fe3-7d45-43bd-b013-4ba515785c04}, !- Source Object + 3, !- Outlet Port + {548ad40b-7502-457b-81f6-59aca8a1833c}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {2898c221-1fc4-42ce-8c74-9b854b6865a2}, !- Handle + Zone Outpatient MRI_Control A - Story ground WSHP Outlet Air Node, !- Name + {f96a0c7f-91b5-4ca7-9d06-89c52203b75a}, !- Inlet Port + {677489d3-b32c-4423-937f-c154f4c4018d}; !- Outlet Port + +OS:Connection, + {677489d3-b32c-4423-937f-c154f4c4018d}, !- Handle + {2898c221-1fc4-42ce-8c74-9b854b6865a2}, !- Source Object + 3, !- Outlet Port + {6429b054-a8ad-405a-abb5-9bbab0537242}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {f96a0c7f-91b5-4ca7-9d06-89c52203b75a}, !- Handle + {548ad40b-7502-457b-81f6-59aca8a1833c}, !- Source Object + 4, !- Outlet Port + {2898c221-1fc4-42ce-8c74-9b854b6865a2}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {1c58bd45-f3ac-4f07-a996-0d43b65e5dd5}, !- Handle + Zone Outpatient MRI_Control B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 2625.3978090721, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {2b7222e4-40cb-4d8b-a7ac-c42f3f28498a}, !- Handle + Zone Outpatient MRI_Control B - Story ground Water-to-Air HP Htg Coil 14 Clg kBtu/hr 4.2COPH, !- Name + {aafc2352-2bb1-4a35-983e-24b1e6fd2c47}, !- Water Inlet Node Name + {27c47a41-d040-48e3-803d-1d25303bc281}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.186266850854324, !- Rated Air Flow Rate {m3/s} + 7.69893749987281e-05, !- Rated Water Flow Rate {m3/s} + 3480.05267254286, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {3f712887-67bf-4a7a-8369-3bca1cd13355}, !- Handle + Zone Outpatient MRI_Control B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {2d5820ab-4e2e-4460-b053-a66b86084189}, !- Inlet Port + {aafc2352-2bb1-4a35-983e-24b1e6fd2c47}; !- Outlet Port + +OS:Connection, + {2d5820ab-4e2e-4460-b053-a66b86084189}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 108, !- Outlet Port + {3f712887-67bf-4a7a-8369-3bca1cd13355}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {e6a9326d-e298-4502-8787-8705ea89aa94}, !- Handle + Zone Outpatient MRI_Control B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {27c47a41-d040-48e3-803d-1d25303bc281}, !- Inlet Port + {d4919fb5-8b8a-4d4a-80d3-aef95a2547c5}; !- Outlet Port + +OS:Connection, + {aafc2352-2bb1-4a35-983e-24b1e6fd2c47}, !- Handle + {3f712887-67bf-4a7a-8369-3bca1cd13355}, !- Source Object + 3, !- Outlet Port + {2b7222e4-40cb-4d8b-a7ac-c42f3f28498a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {27c47a41-d040-48e3-803d-1d25303bc281}, !- Handle + {2b7222e4-40cb-4d8b-a7ac-c42f3f28498a}, !- Source Object + 3, !- Outlet Port + {e6a9326d-e298-4502-8787-8705ea89aa94}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d4919fb5-8b8a-4d4a-80d3-aef95a2547c5}, !- Handle + {e6a9326d-e298-4502-8787-8705ea89aa94}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 108; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {685a35f0-125b-4692-8f8b-2cef98dd6a35}, !- Handle + Zone Outpatient MRI_Control B - Story ground Water-to-Air HP Clg Coil 14kBtu/hr 11.2EER, !- Name + {d3f4f3e2-6c7b-41bd-920d-7c468766ef19}, !- Water Inlet Node Name + {1e1122c0-2d34-4ed5-992e-aa34259627c3}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.186266850854324, !- Rated Air Flow Rate {m3/s} + 7.69893749987281e-05, !- Rated Water Flow Rate {m3/s} + 3674.98214042427, !- Rated Total Cooling Capacity {W} + 2527.70581966501, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {56f15487-c9c8-472c-bcb7-217b926b7b96}, !- Handle + Zone Outpatient MRI_Control B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {e48ada03-bbd2-4643-84a1-06ca274093da}, !- Inlet Port + {d3f4f3e2-6c7b-41bd-920d-7c468766ef19}; !- Outlet Port + +OS:Connection, + {e48ada03-bbd2-4643-84a1-06ca274093da}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 109, !- Outlet Port + {56f15487-c9c8-472c-bcb7-217b926b7b96}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {a17ce8bf-179e-4b69-b5a8-564bb61a00a9}, !- Handle + Zone Outpatient MRI_Control B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {1e1122c0-2d34-4ed5-992e-aa34259627c3}, !- Inlet Port + {c0ad77c6-f51d-4494-aff3-abc20e15c51f}; !- Outlet Port + +OS:Connection, + {d3f4f3e2-6c7b-41bd-920d-7c468766ef19}, !- Handle + {56f15487-c9c8-472c-bcb7-217b926b7b96}, !- Source Object + 3, !- Outlet Port + {685a35f0-125b-4692-8f8b-2cef98dd6a35}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1e1122c0-2d34-4ed5-992e-aa34259627c3}, !- Handle + {685a35f0-125b-4692-8f8b-2cef98dd6a35}, !- Source Object + 3, !- Outlet Port + {a17ce8bf-179e-4b69-b5a8-564bb61a00a9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c0ad77c6-f51d-4494-aff3-abc20e15c51f}, !- Handle + {a17ce8bf-179e-4b69-b5a8-564bb61a00a9}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 109; !- Inlet Port + +OS:Fan:OnOff, + {b13297d3-c2d9-403d-aa3a-165784dc4821}, !- Handle + Zone Outpatient MRI_Control B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.186266850854324, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {1e52ec76-0583-4825-a74e-6fe122a120f9}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {adf5ec33-f9c9-432c-b972-bb10d5e36899}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {1e52ec76-0583-4825-a74e-6fe122a120f9}, !- Handle + Fan On Off Power Curve 52, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {adf5ec33-f9c9-432c-b972-bb10d5e36899}, !- Handle + Fan On Off Efficiency Curve 52, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {7b283eb8-c2c2-4e54-9256-4a5c4e66ecf5}, !- Handle + Zone Outpatient MRI_Control B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {91ae45b9-13f2-4e2e-9491-8681a820c526}, !- Air Inlet Node Name + {deee00f5-bc4e-47b0-a3df-34346f824d31}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.186266850854324, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.186266850854324, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.186266850854324, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {b13297d3-c2d9-403d-aa3a-165784dc4821}, !- Supply Air Fan Name + {2b7222e4-40cb-4d8b-a7ac-c42f3f28498a}, !- Heating Coil Name + {685a35f0-125b-4692-8f8b-2cef98dd6a35}, !- Cooling Coil Name + {1c58bd45-f3ac-4f07-a996-0d43b65e5dd5}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {daaf4aea-a121-4d09-b9cc-f82868422247}, !- Handle + Zone Outpatient MRI_Control B - Story ground WSHP Inlet Air Node, !- Name + {d1cd7b81-73f6-4744-955b-1fddc9be8144}, !- Inlet Port + {91ae45b9-13f2-4e2e-9491-8681a820c526}; !- Outlet Port + +OS:Connection, + {d1cd7b81-73f6-4744-955b-1fddc9be8144}, !- Handle + {47dc7579-25a2-43d6-a3a8-49d80425b97a}, !- Source Object + 3, !- Outlet Port + {daaf4aea-a121-4d09-b9cc-f82868422247}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {91ae45b9-13f2-4e2e-9491-8681a820c526}, !- Handle + {daaf4aea-a121-4d09-b9cc-f82868422247}, !- Source Object + 3, !- Outlet Port + {7b283eb8-c2c2-4e54-9256-4a5c4e66ecf5}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {92ff93b0-49ff-4a1d-a007-dbe926acdce1}, !- Handle + Zone Outpatient MRI_Control B - Story ground WSHP Outlet Air Node, !- Name + {deee00f5-bc4e-47b0-a3df-34346f824d31}, !- Inlet Port + {a849d47e-aea3-4c34-8f82-90f34dffd365}; !- Outlet Port + +OS:Connection, + {a849d47e-aea3-4c34-8f82-90f34dffd365}, !- Handle + {92ff93b0-49ff-4a1d-a007-dbe926acdce1}, !- Source Object + 3, !- Outlet Port + {bbe08e4c-f5e8-41f0-b9d8-8ef247c2dd45}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {deee00f5-bc4e-47b0-a3df-34346f824d31}, !- Handle + {7b283eb8-c2c2-4e54-9256-4a5c4e66ecf5}, !- Source Object + 4, !- Outlet Port + {92ff93b0-49ff-4a1d-a007-dbe926acdce1}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {3c9715a0-31f0-4fa5-a72d-decfb3d34f0b}, !- Handle + Zone Outpatient MRI_Control C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 341.14747191566, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {e938b291-29f9-4325-9535-95910fb85728}, !- Handle + Zone Outpatient MRI_Control C - Story ground Water-to-Air HP Htg Coil 2 Clg kBtu/hr 4.2COPH, !- Name + {c0ae792b-cd50-496f-818f-5c92307ff5d4}, !- Water Inlet Node Name + {494c799d-9887-409c-bebb-4eeb8af400b4}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0229440057709956, !- Rated Air Flow Rate {m3/s} + 9.48048870917828e-06, !- Rated Water Flow Rate {m3/s} + 428.53445777334, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {a4391402-47ad-40e0-8ff1-f46c86038ba0}, !- Handle + Zone Outpatient MRI_Control C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {d4719bca-ffc1-4a53-9342-7460fe61ba39}, !- Inlet Port + {c0ae792b-cd50-496f-818f-5c92307ff5d4}; !- Outlet Port + +OS:Connection, + {d4719bca-ffc1-4a53-9342-7460fe61ba39}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 110, !- Outlet Port + {a4391402-47ad-40e0-8ff1-f46c86038ba0}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {408ffe6d-69b9-46c6-bbc6-0d8b72165e43}, !- Handle + Zone Outpatient MRI_Control C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {494c799d-9887-409c-bebb-4eeb8af400b4}, !- Inlet Port + {878f21eb-284f-47fc-862e-5245a88d8613}; !- Outlet Port + +OS:Connection, + {c0ae792b-cd50-496f-818f-5c92307ff5d4}, !- Handle + {a4391402-47ad-40e0-8ff1-f46c86038ba0}, !- Source Object + 3, !- Outlet Port + {e938b291-29f9-4325-9535-95910fb85728}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {494c799d-9887-409c-bebb-4eeb8af400b4}, !- Handle + {e938b291-29f9-4325-9535-95910fb85728}, !- Source Object + 3, !- Outlet Port + {408ffe6d-69b9-46c6-bbc6-0d8b72165e43}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {878f21eb-284f-47fc-862e-5245a88d8613}, !- Handle + {408ffe6d-69b9-46c6-bbc6-0d8b72165e43}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 110; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {62f15cfa-0c93-4b0b-837c-f5fc7561a767}, !- Handle + Zone Outpatient MRI_Control C - Story ground Water-to-Air HP Clg Coil 2kBtu/hr 11.2EER, !- Name + {727f756e-40da-4a4b-914c-5682f38741f2}, !- Water Inlet Node Name + {3a83077f-9770-4bce-9e98-eb2b291511f2}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0229440057709956, !- Rated Air Flow Rate {m3/s} + 9.48048870917828e-06, !- Rated Water Flow Rate {m3/s} + 452.538115672451, !- Rated Total Cooling Capacity {W} + 311.30320300839, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {9c2b27b4-e052-4143-bdf5-91a809c32c50}, !- Handle + Zone Outpatient MRI_Control C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {c548c106-2777-4133-b731-d5c4278f6999}, !- Inlet Port + {727f756e-40da-4a4b-914c-5682f38741f2}; !- Outlet Port + +OS:Connection, + {c548c106-2777-4133-b731-d5c4278f6999}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 111, !- Outlet Port + {9c2b27b4-e052-4143-bdf5-91a809c32c50}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {b3ce1fec-c59a-4af4-8c07-fabe880862fe}, !- Handle + Zone Outpatient MRI_Control C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {3a83077f-9770-4bce-9e98-eb2b291511f2}, !- Inlet Port + {344a1228-53e5-44a1-be58-d28d7882da0a}; !- Outlet Port + +OS:Connection, + {727f756e-40da-4a4b-914c-5682f38741f2}, !- Handle + {9c2b27b4-e052-4143-bdf5-91a809c32c50}, !- Source Object + 3, !- Outlet Port + {62f15cfa-0c93-4b0b-837c-f5fc7561a767}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3a83077f-9770-4bce-9e98-eb2b291511f2}, !- Handle + {62f15cfa-0c93-4b0b-837c-f5fc7561a767}, !- Source Object + 3, !- Outlet Port + {b3ce1fec-c59a-4af4-8c07-fabe880862fe}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {344a1228-53e5-44a1-be58-d28d7882da0a}, !- Handle + {b3ce1fec-c59a-4af4-8c07-fabe880862fe}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 111; !- Inlet Port + +OS:Fan:OnOff, + {0a3ed69c-629a-4a9e-b1f4-3e57200696dd}, !- Handle + Zone Outpatient MRI_Control C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0229440057709956, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {0328ea4c-aba9-4d90-9f7d-bec9b3699712}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {37ead764-0393-4237-a46f-e2a14e57c1f6}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {0328ea4c-aba9-4d90-9f7d-bec9b3699712}, !- Handle + Fan On Off Power Curve 53, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {37ead764-0393-4237-a46f-e2a14e57c1f6}, !- Handle + Fan On Off Efficiency Curve 53, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {88b1c46f-7e8b-46b2-89b6-0512e694c882}, !- Handle + Zone Outpatient MRI_Control C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {47f6dc02-a6fe-4d5f-a081-1bc00c1ae9f9}, !- Air Inlet Node Name + {2a2e840b-6281-4bd6-aa6a-80868e01e11e}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0229440057709956, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0229440057709956, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0229440057709956, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {0a3ed69c-629a-4a9e-b1f4-3e57200696dd}, !- Supply Air Fan Name + {e938b291-29f9-4325-9535-95910fb85728}, !- Heating Coil Name + {62f15cfa-0c93-4b0b-837c-f5fc7561a767}, !- Cooling Coil Name + {3c9715a0-31f0-4fa5-a72d-decfb3d34f0b}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {3fa04222-fd03-402a-9be9-ab1487d8d736}, !- Handle + Zone Outpatient MRI_Control C - Story ground WSHP Inlet Air Node, !- Name + {12e0390c-43a4-4f7f-b286-4d6e58963e5d}, !- Inlet Port + {47f6dc02-a6fe-4d5f-a081-1bc00c1ae9f9}; !- Outlet Port + +OS:Connection, + {12e0390c-43a4-4f7f-b286-4d6e58963e5d}, !- Handle + {291a673b-be77-441a-b520-46a53175d4b3}, !- Source Object + 3, !- Outlet Port + {3fa04222-fd03-402a-9be9-ab1487d8d736}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {47f6dc02-a6fe-4d5f-a081-1bc00c1ae9f9}, !- Handle + {3fa04222-fd03-402a-9be9-ab1487d8d736}, !- Source Object + 3, !- Outlet Port + {88b1c46f-7e8b-46b2-89b6-0512e694c882}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {41db71ff-e761-4b49-a682-3167ba5200d8}, !- Handle + Zone Outpatient MRI_Control C - Story ground WSHP Outlet Air Node, !- Name + {2a2e840b-6281-4bd6-aa6a-80868e01e11e}, !- Inlet Port + {b243bd3b-3e85-4f61-8e07-d44c71d7d2ff}; !- Outlet Port + +OS:Connection, + {b243bd3b-3e85-4f61-8e07-d44c71d7d2ff}, !- Handle + {41db71ff-e761-4b49-a682-3167ba5200d8}, !- Source Object + 3, !- Outlet Port + {a94fd621-9d94-40ad-ba71-3e647e19ae5c}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {2a2e840b-6281-4bd6-aa6a-80868e01e11e}, !- Handle + {88b1c46f-7e8b-46b2-89b6-0512e694c882}, !- Source Object + 4, !- Outlet Port + {41db71ff-e761-4b49-a682-3167ba5200d8}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {1879aeab-540f-4e38-8808-6423d07eb39e}, !- Handle + Zone Outpatient NurseStation A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 1152.06924503939, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {06be1a00-7293-49cf-bf92-1cfd58d94a3d}, !- Handle + Zone Outpatient NurseStation A - Story ground Water-to-Air HP Htg Coil 8 Clg kBtu/hr 4.2COPH, !- Name + {8e613e02-ba16-418f-9cb6-932f6eaae7bc}, !- Water Inlet Node Name + {a949ff31-fe23-4ce5-b167-68515f02ac88}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.113838657265843, !- Rated Air Flow Rate {m3/s} + 4.77534911996999e-05, !- Rated Water Flow Rate {m3/s} + 2158.54024890465, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {4fb9773c-db43-43e5-be0a-937038e33c8b}, !- Handle + Zone Outpatient NurseStation A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {993297d4-888e-4b41-a194-0fca47cf13b9}, !- Inlet Port + {8e613e02-ba16-418f-9cb6-932f6eaae7bc}; !- Outlet Port + +OS:Connection, + {993297d4-888e-4b41-a194-0fca47cf13b9}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 112, !- Outlet Port + {4fb9773c-db43-43e5-be0a-937038e33c8b}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {af530527-7b17-42f9-b133-5298df88a088}, !- Handle + Zone Outpatient NurseStation A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {a949ff31-fe23-4ce5-b167-68515f02ac88}, !- Inlet Port + {826b92d7-3ddf-44d3-aa0d-cc9b16e4616b}; !- Outlet Port + +OS:Connection, + {8e613e02-ba16-418f-9cb6-932f6eaae7bc}, !- Handle + {4fb9773c-db43-43e5-be0a-937038e33c8b}, !- Source Object + 3, !- Outlet Port + {06be1a00-7293-49cf-bf92-1cfd58d94a3d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a949ff31-fe23-4ce5-b167-68515f02ac88}, !- Handle + {06be1a00-7293-49cf-bf92-1cfd58d94a3d}, !- Source Object + 3, !- Outlet Port + {af530527-7b17-42f9-b133-5298df88a088}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {826b92d7-3ddf-44d3-aa0d-cc9b16e4616b}, !- Handle + {af530527-7b17-42f9-b133-5298df88a088}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 112; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {b287828f-7e28-4469-9f95-bfbcff0efff8}, !- Handle + Zone Outpatient NurseStation A - Story ground Water-to-Air HP Clg Coil 8kBtu/hr 11.2EER, !- Name + {787a3d36-642e-4a4b-8616-bb0eeca57839}, !- Water Inlet Node Name + {7abad359-ada0-4693-be86-b538cc520bc3}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.113838657265843, !- Rated Air Flow Rate {m3/s} + 4.77534911996999e-05, !- Rated Water Flow Rate {m3/s} + 2279.44735627097, !- Rated Total Cooling Capacity {W} + 1558.26421425619, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {13ccc83a-8e04-44f1-8391-8cb6a38cd859}, !- Handle + Zone Outpatient NurseStation A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {a6ab363f-03b0-4f37-9560-b848d73e6ef1}, !- Inlet Port + {787a3d36-642e-4a4b-8616-bb0eeca57839}; !- Outlet Port + +OS:Connection, + {a6ab363f-03b0-4f37-9560-b848d73e6ef1}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 113, !- Outlet Port + {13ccc83a-8e04-44f1-8391-8cb6a38cd859}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {8c0ee782-905b-4ec2-9312-1700801668f7}, !- Handle + Zone Outpatient NurseStation A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {7abad359-ada0-4693-be86-b538cc520bc3}, !- Inlet Port + {fc0f5970-b937-4551-8ec4-9a453d3027ee}; !- Outlet Port + +OS:Connection, + {787a3d36-642e-4a4b-8616-bb0eeca57839}, !- Handle + {13ccc83a-8e04-44f1-8391-8cb6a38cd859}, !- Source Object + 3, !- Outlet Port + {b287828f-7e28-4469-9f95-bfbcff0efff8}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7abad359-ada0-4693-be86-b538cc520bc3}, !- Handle + {b287828f-7e28-4469-9f95-bfbcff0efff8}, !- Source Object + 3, !- Outlet Port + {8c0ee782-905b-4ec2-9312-1700801668f7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fc0f5970-b937-4551-8ec4-9a453d3027ee}, !- Handle + {8c0ee782-905b-4ec2-9312-1700801668f7}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 113; !- Inlet Port + +OS:Fan:OnOff, + {a47a6caa-df63-4771-a2c4-8bed9db5fc0d}, !- Handle + Zone Outpatient NurseStation A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.113838657265843, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {5ea969bb-dd26-41e1-916e-123bcc5899fd}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {befa79e5-fdc6-473b-a2da-7488b57bd4b7}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {5ea969bb-dd26-41e1-916e-123bcc5899fd}, !- Handle + Fan On Off Power Curve 54, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {befa79e5-fdc6-473b-a2da-7488b57bd4b7}, !- Handle + Fan On Off Efficiency Curve 54, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {342d4d88-b00f-4861-87f9-13a7736782cd}, !- Handle + Zone Outpatient NurseStation A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {3a6815d2-62c6-401f-aff2-1bc4398d592e}, !- Air Inlet Node Name + {32c9cd4b-e0dd-4259-9d2d-e65104bb45e9}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.113838657265843, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.113838657265843, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.113838657265843, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {a47a6caa-df63-4771-a2c4-8bed9db5fc0d}, !- Supply Air Fan Name + {06be1a00-7293-49cf-bf92-1cfd58d94a3d}, !- Heating Coil Name + {b287828f-7e28-4469-9f95-bfbcff0efff8}, !- Cooling Coil Name + {1879aeab-540f-4e38-8808-6423d07eb39e}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {84c528f1-ba34-43e8-af0c-11925e1c02b0}, !- Handle + Zone Outpatient NurseStation A - Story ground WSHP Inlet Air Node, !- Name + {deee39d8-0aba-4e0d-b439-e0ddfeddcec4}, !- Inlet Port + {3a6815d2-62c6-401f-aff2-1bc4398d592e}; !- Outlet Port + +OS:Connection, + {deee39d8-0aba-4e0d-b439-e0ddfeddcec4}, !- Handle + {ffaec863-a539-409a-8408-eeb1ebca06e7}, !- Source Object + 2, !- Outlet Port + {84c528f1-ba34-43e8-af0c-11925e1c02b0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3a6815d2-62c6-401f-aff2-1bc4398d592e}, !- Handle + {84c528f1-ba34-43e8-af0c-11925e1c02b0}, !- Source Object + 3, !- Outlet Port + {342d4d88-b00f-4861-87f9-13a7736782cd}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {bda492ee-011c-4568-9eb2-d899d7c30a18}, !- Handle + Zone Outpatient NurseStation A - Story ground WSHP Outlet Air Node, !- Name + {32c9cd4b-e0dd-4259-9d2d-e65104bb45e9}, !- Inlet Port + {73754a26-a668-47d3-900c-88cfd9cba560}; !- Outlet Port + +OS:Connection, + {73754a26-a668-47d3-900c-88cfd9cba560}, !- Handle + {bda492ee-011c-4568-9eb2-d899d7c30a18}, !- Source Object + 3, !- Outlet Port + {f757f7cb-b151-434a-81df-7fff919b5450}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {32c9cd4b-e0dd-4259-9d2d-e65104bb45e9}, !- Handle + {342d4d88-b00f-4861-87f9-13a7736782cd}, !- Source Object + 4, !- Outlet Port + {bda492ee-011c-4568-9eb2-d899d7c30a18}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {3c0b34ec-a83c-4147-87b3-f349b67e1e93}, !- Handle + Zone Outpatient NurseStation B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 8635.81255071938, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {0a50b5d1-80d2-4f31-a08f-3bc267dc7019}, !- Handle + Zone Outpatient NurseStation B - Story ground Water-to-Air HP Htg Coil 65 Clg kBtu/hr 4.2COPH, !- Name + {8be9fed1-4340-477b-a5f4-3cef51185b36}, !- Water Inlet Node Name + {cdbb82ca-526c-4d5f-ad76-f05beb638134}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.899815155111204, !- Rated Air Flow Rate {m3/s} + 0.000379548593409799, !- Rated Water Flow Rate {m3/s} + 17156.2517149603, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {9bc8073f-d4b3-4603-910f-e18a233f45a7}, !- Handle + Zone Outpatient NurseStation B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {bf98f96c-531c-437a-aa8b-bef620e83eb2}, !- Inlet Port + {8be9fed1-4340-477b-a5f4-3cef51185b36}; !- Outlet Port + +OS:Connection, + {bf98f96c-531c-437a-aa8b-bef620e83eb2}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 114, !- Outlet Port + {9bc8073f-d4b3-4603-910f-e18a233f45a7}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {999fe263-b1f1-4850-a107-8002316986ce}, !- Handle + Zone Outpatient NurseStation B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {cdbb82ca-526c-4d5f-ad76-f05beb638134}, !- Inlet Port + {483d2402-8a96-47e8-b7a3-2630e25206c5}; !- Outlet Port + +OS:Connection, + {8be9fed1-4340-477b-a5f4-3cef51185b36}, !- Handle + {9bc8073f-d4b3-4603-910f-e18a233f45a7}, !- Source Object + 3, !- Outlet Port + {0a50b5d1-80d2-4f31-a08f-3bc267dc7019}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {cdbb82ca-526c-4d5f-ad76-f05beb638134}, !- Handle + {0a50b5d1-80d2-4f31-a08f-3bc267dc7019}, !- Source Object + 3, !- Outlet Port + {999fe263-b1f1-4850-a107-8002316986ce}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {483d2402-8a96-47e8-b7a3-2630e25206c5}, !- Handle + {999fe263-b1f1-4850-a107-8002316986ce}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 114; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {2418a1c7-4f78-444a-b8af-b73b22f5e06a}, !- Handle + Zone Outpatient NurseStation B - Story ground Water-to-Air HP Clg Coil 65kBtu/hr 12.0EER, !- Name + {262e9ce3-9eb7-4cee-8642-7392005d3100}, !- Water Inlet Node Name + {fd24a324-b481-449a-893c-bbe8abca7b46}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.899815155111204, !- Rated Air Flow Rate {m3/s} + 0.000379548593409799, !- Rated Water Flow Rate {m3/s} + 18117.2311403646, !- Rated Total Cooling Capacity {W} + 12357.6182343745, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {dd7ce6ba-47e3-4641-87e0-bce520716581}, !- Handle + Zone Outpatient NurseStation B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {6375dc05-3c2d-4a0f-a761-3c2e8c7504dc}, !- Inlet Port + {262e9ce3-9eb7-4cee-8642-7392005d3100}; !- Outlet Port + +OS:Connection, + {6375dc05-3c2d-4a0f-a761-3c2e8c7504dc}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 115, !- Outlet Port + {dd7ce6ba-47e3-4641-87e0-bce520716581}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {849f3f6e-5b6b-4feb-87d6-4720a0c1796a}, !- Handle + Zone Outpatient NurseStation B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {fd24a324-b481-449a-893c-bbe8abca7b46}, !- Inlet Port + {9df6dbc0-9fc8-4ed4-bfe4-ca6ceb466d10}; !- Outlet Port + +OS:Connection, + {262e9ce3-9eb7-4cee-8642-7392005d3100}, !- Handle + {dd7ce6ba-47e3-4641-87e0-bce520716581}, !- Source Object + 3, !- Outlet Port + {2418a1c7-4f78-444a-b8af-b73b22f5e06a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fd24a324-b481-449a-893c-bbe8abca7b46}, !- Handle + {2418a1c7-4f78-444a-b8af-b73b22f5e06a}, !- Source Object + 3, !- Outlet Port + {849f3f6e-5b6b-4feb-87d6-4720a0c1796a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9df6dbc0-9fc8-4ed4-bfe4-ca6ceb466d10}, !- Handle + {849f3f6e-5b6b-4feb-87d6-4720a0c1796a}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 115; !- Inlet Port + +OS:Fan:OnOff, + {85bba1cb-b881-42d3-9aa5-308b00271264}, !- Handle + Zone Outpatient NurseStation B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.899815155111204, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {6787b4e1-f6ee-4b31-b652-c072d8513c3b}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {bb0754ee-e8d0-4dfa-9642-b033c373b0b7}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {6787b4e1-f6ee-4b31-b652-c072d8513c3b}, !- Handle + Fan On Off Power Curve 55, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {bb0754ee-e8d0-4dfa-9642-b033c373b0b7}, !- Handle + Fan On Off Efficiency Curve 55, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {320404b5-cb58-404b-b397-9e17fc635604}, !- Handle + Zone Outpatient NurseStation B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {c0da9b87-a455-480a-af0f-22aadc926c25}, !- Air Inlet Node Name + {e3640f65-b070-4414-a520-7974e66d64e3}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.899815155111204, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.899815155111204, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.899815155111204, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {85bba1cb-b881-42d3-9aa5-308b00271264}, !- Supply Air Fan Name + {0a50b5d1-80d2-4f31-a08f-3bc267dc7019}, !- Heating Coil Name + {2418a1c7-4f78-444a-b8af-b73b22f5e06a}, !- Cooling Coil Name + {3c0b34ec-a83c-4147-87b3-f349b67e1e93}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {b81132b6-560c-4a3e-bca8-98f5720b749d}, !- Handle + Zone Outpatient NurseStation B - Story ground WSHP Inlet Air Node, !- Name + {48614288-0a9c-4426-a47d-b66ed4f9c9c9}, !- Inlet Port + {c0da9b87-a455-480a-af0f-22aadc926c25}; !- Outlet Port + +OS:Connection, + {48614288-0a9c-4426-a47d-b66ed4f9c9c9}, !- Handle + {5c635f8b-883e-444c-8ab1-fd5b6ec0bc3f}, !- Source Object + 2, !- Outlet Port + {b81132b6-560c-4a3e-bca8-98f5720b749d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c0da9b87-a455-480a-af0f-22aadc926c25}, !- Handle + {b81132b6-560c-4a3e-bca8-98f5720b749d}, !- Source Object + 3, !- Outlet Port + {320404b5-cb58-404b-b397-9e17fc635604}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {d3338074-7e62-4790-8731-81421568fb19}, !- Handle + Zone Outpatient NurseStation B - Story ground WSHP Outlet Air Node, !- Name + {e3640f65-b070-4414-a520-7974e66d64e3}, !- Inlet Port + {48f0751d-8eb2-49dd-b6d1-809c26f53f3f}; !- Outlet Port + +OS:Connection, + {48f0751d-8eb2-49dd-b6d1-809c26f53f3f}, !- Handle + {d3338074-7e62-4790-8731-81421568fb19}, !- Source Object + 3, !- Outlet Port + {f06d42b8-4050-4cf2-8ac4-759a8a4e0f3c}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {e3640f65-b070-4414-a520-7974e66d64e3}, !- Handle + {320404b5-cb58-404b-b397-9e17fc635604}, !- Source Object + 4, !- Outlet Port + {d3338074-7e62-4790-8731-81421568fb19}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {68e8af4a-bc47-4283-b226-e13f59547fcb}, !- Handle + Zone Outpatient NurseStation C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 1152.06924503905, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {5db3beb8-7108-4299-b4b2-09f8842742d8}, !- Handle + Zone Outpatient NurseStation C - Story ground Water-to-Air HP Htg Coil 8 Clg kBtu/hr 4.2COPH, !- Name + {ee4ddd39-aac0-4b4d-8beb-a7e51481fa0d}, !- Water Inlet Node Name + {563966ff-72ed-4ef1-828d-ade4ffe00923}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.113838657265882, !- Rated Air Flow Rate {m3/s} + 4.77534911997124e-05, !- Rated Water Flow Rate {m3/s} + 2158.54024890521, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {56a547b9-05fe-4453-8ea9-cef90d09c7b4}, !- Handle + Zone Outpatient NurseStation C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {8f240b96-a32a-45dd-a776-00731ba19a27}, !- Inlet Port + {ee4ddd39-aac0-4b4d-8beb-a7e51481fa0d}; !- Outlet Port + +OS:Connection, + {8f240b96-a32a-45dd-a776-00731ba19a27}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 116, !- Outlet Port + {56a547b9-05fe-4453-8ea9-cef90d09c7b4}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {6a28dd4a-3dc6-4c5c-8868-0d053f6bf31e}, !- Handle + Zone Outpatient NurseStation C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {563966ff-72ed-4ef1-828d-ade4ffe00923}, !- Inlet Port + {f7c93e86-cd61-4060-8798-36a94cad43ef}; !- Outlet Port + +OS:Connection, + {ee4ddd39-aac0-4b4d-8beb-a7e51481fa0d}, !- Handle + {56a547b9-05fe-4453-8ea9-cef90d09c7b4}, !- Source Object + 3, !- Outlet Port + {5db3beb8-7108-4299-b4b2-09f8842742d8}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {563966ff-72ed-4ef1-828d-ade4ffe00923}, !- Handle + {5db3beb8-7108-4299-b4b2-09f8842742d8}, !- Source Object + 3, !- Outlet Port + {6a28dd4a-3dc6-4c5c-8868-0d053f6bf31e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f7c93e86-cd61-4060-8798-36a94cad43ef}, !- Handle + {6a28dd4a-3dc6-4c5c-8868-0d053f6bf31e}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 116; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {811002a9-c1dc-4bb9-87f1-2040b29d9fd7}, !- Handle + Zone Outpatient NurseStation C - Story ground Water-to-Air HP Clg Coil 8kBtu/hr 11.2EER, !- Name + {6308ea09-d7d5-4ae9-826a-1dfd671bfbb2}, !- Water Inlet Node Name + {8e17ab0b-5fcc-4486-92ef-7a774f12d5dc}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.113838657265882, !- Rated Air Flow Rate {m3/s} + 4.77534911997124e-05, !- Rated Water Flow Rate {m3/s} + 2279.44735627156, !- Rated Total Cooling Capacity {W} + 1558.26421425673, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {9b6a5f7f-3fb6-4bcf-a249-2b8293d4cfac}, !- Handle + Zone Outpatient NurseStation C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {88958098-1fb5-4f4a-b40a-7ec953a226cb}, !- Inlet Port + {6308ea09-d7d5-4ae9-826a-1dfd671bfbb2}; !- Outlet Port + +OS:Connection, + {88958098-1fb5-4f4a-b40a-7ec953a226cb}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 117, !- Outlet Port + {9b6a5f7f-3fb6-4bcf-a249-2b8293d4cfac}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {30a906e1-b33d-4864-ad6c-94827537cd80}, !- Handle + Zone Outpatient NurseStation C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {8e17ab0b-5fcc-4486-92ef-7a774f12d5dc}, !- Inlet Port + {9eed5302-b2a9-4542-822c-94721983a5e8}; !- Outlet Port + +OS:Connection, + {6308ea09-d7d5-4ae9-826a-1dfd671bfbb2}, !- Handle + {9b6a5f7f-3fb6-4bcf-a249-2b8293d4cfac}, !- Source Object + 3, !- Outlet Port + {811002a9-c1dc-4bb9-87f1-2040b29d9fd7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8e17ab0b-5fcc-4486-92ef-7a774f12d5dc}, !- Handle + {811002a9-c1dc-4bb9-87f1-2040b29d9fd7}, !- Source Object + 3, !- Outlet Port + {30a906e1-b33d-4864-ad6c-94827537cd80}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9eed5302-b2a9-4542-822c-94721983a5e8}, !- Handle + {30a906e1-b33d-4864-ad6c-94827537cd80}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 117; !- Inlet Port + +OS:Fan:OnOff, + {132cd121-2f26-4751-aaec-877003f6dfb2}, !- Handle + Zone Outpatient NurseStation C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.113838657265882, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {55f1467b-248e-43e4-b88a-819c836c508f}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {bb775c42-7291-4a12-b968-100fd6a6d08d}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {55f1467b-248e-43e4-b88a-819c836c508f}, !- Handle + Fan On Off Power Curve 56, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {bb775c42-7291-4a12-b968-100fd6a6d08d}, !- Handle + Fan On Off Efficiency Curve 56, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {5c61002f-d46c-4029-a99d-698ab662b150}, !- Handle + Zone Outpatient NurseStation C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {650bad7d-fbe9-4cb1-8fb3-fa34cd3126e6}, !- Air Inlet Node Name + {94f65adb-61ed-43fe-82a7-5dc85229efee}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.113838657265882, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.113838657265882, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.113838657265882, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {132cd121-2f26-4751-aaec-877003f6dfb2}, !- Supply Air Fan Name + {5db3beb8-7108-4299-b4b2-09f8842742d8}, !- Heating Coil Name + {811002a9-c1dc-4bb9-87f1-2040b29d9fd7}, !- Cooling Coil Name + {68e8af4a-bc47-4283-b226-e13f59547fcb}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {f53cb7d3-1540-4f83-8bc4-ba5a9ea18ddc}, !- Handle + Zone Outpatient NurseStation C - Story ground WSHP Inlet Air Node, !- Name + {f3734de4-e7f0-4789-8e0d-e310b0b08392}, !- Inlet Port + {650bad7d-fbe9-4cb1-8fb3-fa34cd3126e6}; !- Outlet Port + +OS:Connection, + {f3734de4-e7f0-4789-8e0d-e310b0b08392}, !- Handle + {4f9c6ae1-2371-4685-9dfd-2647c49daf77}, !- Source Object + 2, !- Outlet Port + {f53cb7d3-1540-4f83-8bc4-ba5a9ea18ddc}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {650bad7d-fbe9-4cb1-8fb3-fa34cd3126e6}, !- Handle + {f53cb7d3-1540-4f83-8bc4-ba5a9ea18ddc}, !- Source Object + 3, !- Outlet Port + {5c61002f-d46c-4029-a99d-698ab662b150}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {257f5b10-a979-46a2-9026-30fe9965bb24}, !- Handle + Zone Outpatient NurseStation C - Story ground WSHP Outlet Air Node, !- Name + {94f65adb-61ed-43fe-82a7-5dc85229efee}, !- Inlet Port + {9b026e00-47da-4d8e-b7e2-cef99a136402}; !- Outlet Port + +OS:Connection, + {9b026e00-47da-4d8e-b7e2-cef99a136402}, !- Handle + {257f5b10-a979-46a2-9026-30fe9965bb24}, !- Source Object + 3, !- Outlet Port + {ac1415c3-3b1f-4c31-be87-1ed1367278fb}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {94f65adb-61ed-43fe-82a7-5dc85229efee}, !- Handle + {5c61002f-d46c-4029-a99d-698ab662b150}, !- Source Object + 4, !- Outlet Port + {257f5b10-a979-46a2-9026-30fe9965bb24}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {1ae9382a-6e59-4f5f-ae4f-cf3fa14a9b3b}, !- Handle + Zone Outpatient Office A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 17144.0600419755, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {cb8781e5-4f4e-4905-9b9e-e50a762bfdf6}, !- Handle + Zone Outpatient Office A - Story ground Water-to-Air HP Htg Coil 123 Clg kBtu/hr 4.2COPH, !- Name + {38c157c1-db92-4a50-b4fe-e335fcff69f7}, !- Water Inlet Node Name + {c81aa49a-850f-4c64-a6ac-6822e11e5f4d}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 2.48875187557178, !- Rated Air Flow Rate {m3/s} + 0.000791561742908189, !- Rated Water Flow Rate {m3/s} + 35779.9574153685, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {be81d2be-fba4-4efd-a25d-ffb9199fa0ad}, !- Handle + Zone Outpatient Office A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {717921fa-40c6-4b67-8959-aba05ed2539d}, !- Inlet Port + {38c157c1-db92-4a50-b4fe-e335fcff69f7}; !- Outlet Port + +OS:Connection, + {717921fa-40c6-4b67-8959-aba05ed2539d}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 118, !- Outlet Port + {be81d2be-fba4-4efd-a25d-ffb9199fa0ad}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {7a2fc7a7-a04b-4cb9-a453-6c6b11107636}, !- Handle + Zone Outpatient Office A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {c81aa49a-850f-4c64-a6ac-6822e11e5f4d}, !- Inlet Port + {90bfcbe9-839e-4cb7-99e6-eacb7a01c605}; !- Outlet Port + +OS:Connection, + {38c157c1-db92-4a50-b4fe-e335fcff69f7}, !- Handle + {be81d2be-fba4-4efd-a25d-ffb9199fa0ad}, !- Source Object + 3, !- Outlet Port + {cb8781e5-4f4e-4905-9b9e-e50a762bfdf6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c81aa49a-850f-4c64-a6ac-6822e11e5f4d}, !- Handle + {cb8781e5-4f4e-4905-9b9e-e50a762bfdf6}, !- Source Object + 3, !- Outlet Port + {7a2fc7a7-a04b-4cb9-a453-6c6b11107636}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {90bfcbe9-839e-4cb7-99e6-eacb7a01c605}, !- Handle + {7a2fc7a7-a04b-4cb9-a453-6c6b11107636}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 118; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {d791370c-04f0-4086-922f-5cb8991b7c39}, !- Handle + Zone Outpatient Office A - Story ground Water-to-Air HP Clg Coil 123kBtu/hr 12.0EER, !- Name + {ebc089a0-450f-437f-a4e4-d53d79e7abc3}, !- Water Inlet Node Name + {5ec3d121-1cee-44cd-b66f-fdb71b04319c}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 2.48875187557178, !- Rated Air Flow Rate {m3/s} + 0.000791561742908189, !- Rated Water Flow Rate {m3/s} + 37784.1133049692, !- Rated Total Cooling Capacity {W} + 29830.5468124515, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {b3d6cc89-f52f-43bd-adc4-1f77db563e94}, !- Handle + Zone Outpatient Office A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {65b0277a-daf9-4f95-ad01-f71831776cc1}, !- Inlet Port + {ebc089a0-450f-437f-a4e4-d53d79e7abc3}; !- Outlet Port + +OS:Connection, + {65b0277a-daf9-4f95-ad01-f71831776cc1}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 119, !- Outlet Port + {b3d6cc89-f52f-43bd-adc4-1f77db563e94}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {66e03c05-92b3-4df4-bf1d-7575f0ed5e73}, !- Handle + Zone Outpatient Office A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {5ec3d121-1cee-44cd-b66f-fdb71b04319c}, !- Inlet Port + {6a61d6be-a8b8-40d2-91d3-946b7423cbab}; !- Outlet Port + +OS:Connection, + {ebc089a0-450f-437f-a4e4-d53d79e7abc3}, !- Handle + {b3d6cc89-f52f-43bd-adc4-1f77db563e94}, !- Source Object + 3, !- Outlet Port + {d791370c-04f0-4086-922f-5cb8991b7c39}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {5ec3d121-1cee-44cd-b66f-fdb71b04319c}, !- Handle + {d791370c-04f0-4086-922f-5cb8991b7c39}, !- Source Object + 3, !- Outlet Port + {66e03c05-92b3-4df4-bf1d-7575f0ed5e73}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6a61d6be-a8b8-40d2-91d3-946b7423cbab}, !- Handle + {66e03c05-92b3-4df4-bf1d-7575f0ed5e73}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 119; !- Inlet Port + +OS:Fan:OnOff, + {cb98fad3-b0dc-4223-9b28-a084ce812c7c}, !- Handle + Zone Outpatient Office A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 2.48875187557178, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {6fc5bc39-a5c2-4073-ad58-102475f86dd4}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {04777ee4-c13b-4963-8a7c-86f5a8bb7100}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {6fc5bc39-a5c2-4073-ad58-102475f86dd4}, !- Handle + Fan On Off Power Curve 57, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {04777ee4-c13b-4963-8a7c-86f5a8bb7100}, !- Handle + Fan On Off Efficiency Curve 57, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {3862a609-4e74-4e98-9061-25768b7f8102}, !- Handle + Zone Outpatient Office A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {16f97eb6-d22b-4c1f-92a2-45f469813f48}, !- Air Inlet Node Name + {c5e60633-1efc-4ee5-9d42-24464ca62b32}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 2.48875187557178, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 2.48875187557178, !- Supply Air Flow Rate During Heating Operation {m3/s} + 2.48875187557178, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {cb98fad3-b0dc-4223-9b28-a084ce812c7c}, !- Supply Air Fan Name + {cb8781e5-4f4e-4905-9b9e-e50a762bfdf6}, !- Heating Coil Name + {d791370c-04f0-4086-922f-5cb8991b7c39}, !- Cooling Coil Name + {1ae9382a-6e59-4f5f-ae4f-cf3fa14a9b3b}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {bda764f1-4246-45b3-99c8-b860026d39c0}, !- Handle + Zone Outpatient Office A - Story ground WSHP Inlet Air Node, !- Name + {a7a0ce68-e1ac-4b7d-a314-e1b9daa83d4f}, !- Inlet Port + {16f97eb6-d22b-4c1f-92a2-45f469813f48}; !- Outlet Port + +OS:Connection, + {a7a0ce68-e1ac-4b7d-a314-e1b9daa83d4f}, !- Handle + {c0001b55-2c3f-4513-af13-d20b28744404}, !- Source Object + 2, !- Outlet Port + {bda764f1-4246-45b3-99c8-b860026d39c0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {16f97eb6-d22b-4c1f-92a2-45f469813f48}, !- Handle + {bda764f1-4246-45b3-99c8-b860026d39c0}, !- Source Object + 3, !- Outlet Port + {3862a609-4e74-4e98-9061-25768b7f8102}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {227ae2e1-801d-42e5-a110-f87f299774da}, !- Handle + Zone Outpatient Office A - Story ground WSHP Outlet Air Node, !- Name + {c5e60633-1efc-4ee5-9d42-24464ca62b32}, !- Inlet Port + {5b025d41-8d9b-48c7-9c5a-6af5e1221d77}; !- Outlet Port + +OS:Connection, + {5b025d41-8d9b-48c7-9c5a-6af5e1221d77}, !- Handle + {227ae2e1-801d-42e5-a110-f87f299774da}, !- Source Object + 3, !- Outlet Port + {76bdbd14-f997-4e4b-b838-26e2754e84df}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {c5e60633-1efc-4ee5-9d42-24464ca62b32}, !- Handle + {3862a609-4e74-4e98-9061-25768b7f8102}, !- Source Object + 4, !- Outlet Port + {227ae2e1-801d-42e5-a110-f87f299774da}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {1dc0d568-5690-4399-951a-f4e6b2bb93d4}, !- Handle + Zone Outpatient Office A end_b - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 5014.10004760863, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {eb76807d-4b67-407e-bfff-53c099675d07}, !- Handle + Zone Outpatient Office A end_b - Story ground Water-to-Air HP Htg Coil 30 Clg kBtu/hr 4.2COPH, !- Name + {b789741d-7b71-4309-9c09-429aedda8982}, !- Water Inlet Node Name + {11824fac-8eba-4329-b3e6-b8c15e54dcda}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.618498542673913, !- Rated Air Flow Rate {m3/s} + 0.000193123140926672, !- Rated Water Flow Rate {m3/s} + 8729.49939810318, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {7c30fa36-e63c-4f33-8867-2f63e421ac87}, !- Handle + Zone Outpatient Office A end_b - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {e9bd7607-c159-447c-a54d-23c40e446c7b}, !- Inlet Port + {b789741d-7b71-4309-9c09-429aedda8982}; !- Outlet Port + +OS:Connection, + {e9bd7607-c159-447c-a54d-23c40e446c7b}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 120, !- Outlet Port + {7c30fa36-e63c-4f33-8867-2f63e421ac87}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {7c05d02d-8118-4e85-8b6c-af966826fa6c}, !- Handle + Zone Outpatient Office A end_b - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {11824fac-8eba-4329-b3e6-b8c15e54dcda}, !- Inlet Port + {cc98b6bb-afda-465a-9733-8189612d103d}; !- Outlet Port + +OS:Connection, + {b789741d-7b71-4309-9c09-429aedda8982}, !- Handle + {7c30fa36-e63c-4f33-8867-2f63e421ac87}, !- Source Object + 3, !- Outlet Port + {eb76807d-4b67-407e-bfff-53c099675d07}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {11824fac-8eba-4329-b3e6-b8c15e54dcda}, !- Handle + {eb76807d-4b67-407e-bfff-53c099675d07}, !- Source Object + 3, !- Outlet Port + {7c05d02d-8118-4e85-8b6c-af966826fa6c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {cc98b6bb-afda-465a-9733-8189612d103d}, !- Handle + {7c05d02d-8118-4e85-8b6c-af966826fa6c}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 120; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {9d13706b-54a2-4d0b-9f10-2a65d35ec7da}, !- Handle + Zone Outpatient Office A end_b - Story ground Water-to-Air HP Clg Coil 30kBtu/hr 12.0EER, !- Name + {61b619f9-c414-4726-850e-a6649b5140cc}, !- Water Inlet Node Name + {cc8c1969-5b6f-4615-b418-a5cb78ad98f0}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.618498542673913, !- Rated Air Flow Rate {m3/s} + 0.000193123140926672, !- Rated Water Flow Rate {m3/s} + 9218.46805250575, !- Rated Total Cooling Capacity {W} + 7361.78768317075, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {91070965-095f-4750-b98a-091ac3535a1d}, !- Handle + Zone Outpatient Office A end_b - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {60e72b31-b727-4cdc-844c-cd8d918474d3}, !- Inlet Port + {61b619f9-c414-4726-850e-a6649b5140cc}; !- Outlet Port + +OS:Connection, + {60e72b31-b727-4cdc-844c-cd8d918474d3}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 121, !- Outlet Port + {91070965-095f-4750-b98a-091ac3535a1d}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {c1636459-e3b5-4a13-9018-4689c1504025}, !- Handle + Zone Outpatient Office A end_b - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {cc8c1969-5b6f-4615-b418-a5cb78ad98f0}, !- Inlet Port + {74c865c8-084d-49ab-83ed-f233afce4ffc}; !- Outlet Port + +OS:Connection, + {61b619f9-c414-4726-850e-a6649b5140cc}, !- Handle + {91070965-095f-4750-b98a-091ac3535a1d}, !- Source Object + 3, !- Outlet Port + {9d13706b-54a2-4d0b-9f10-2a65d35ec7da}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {cc8c1969-5b6f-4615-b418-a5cb78ad98f0}, !- Handle + {9d13706b-54a2-4d0b-9f10-2a65d35ec7da}, !- Source Object + 3, !- Outlet Port + {c1636459-e3b5-4a13-9018-4689c1504025}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {74c865c8-084d-49ab-83ed-f233afce4ffc}, !- Handle + {c1636459-e3b5-4a13-9018-4689c1504025}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 121; !- Inlet Port + +OS:Fan:OnOff, + {d7638ad5-bf9f-4b48-ad44-b51c5793e40c}, !- Handle + Zone Outpatient Office A end_b - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.618498542673913, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {2f5b9f12-214f-4c0d-947d-14e37e24a473}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {42559b89-a4c9-4bff-a9c4-1760313e915d}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {2f5b9f12-214f-4c0d-947d-14e37e24a473}, !- Handle + Fan On Off Power Curve 58, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {42559b89-a4c9-4bff-a9c4-1760313e915d}, !- Handle + Fan On Off Efficiency Curve 58, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {3a46f3d8-daa4-456a-9498-24087e51a117}, !- Handle + Zone Outpatient Office A end_b - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {e211f4f6-dc18-4425-bc6c-5af34a3a0c11}, !- Air Inlet Node Name + {47f58425-ad9e-48da-85ff-50c245e5010d}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.618498542673913, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.618498542673913, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.618498542673913, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {d7638ad5-bf9f-4b48-ad44-b51c5793e40c}, !- Supply Air Fan Name + {eb76807d-4b67-407e-bfff-53c099675d07}, !- Heating Coil Name + {9d13706b-54a2-4d0b-9f10-2a65d35ec7da}, !- Cooling Coil Name + {1dc0d568-5690-4399-951a-f4e6b2bb93d4}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {9290517a-1090-4eaa-8814-f2c2f800e780}, !- Handle + Zone Outpatient Office A end_b - Story ground WSHP Inlet Air Node, !- Name + {cdc5c814-b7e6-4859-965c-399df6ff0fd6}, !- Inlet Port + {e211f4f6-dc18-4425-bc6c-5af34a3a0c11}; !- Outlet Port + +OS:Connection, + {cdc5c814-b7e6-4859-965c-399df6ff0fd6}, !- Handle + {e189199b-0f63-42ac-aa57-12a486cebf85}, !- Source Object + 2, !- Outlet Port + {9290517a-1090-4eaa-8814-f2c2f800e780}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e211f4f6-dc18-4425-bc6c-5af34a3a0c11}, !- Handle + {9290517a-1090-4eaa-8814-f2c2f800e780}, !- Source Object + 3, !- Outlet Port + {3a46f3d8-daa4-456a-9498-24087e51a117}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {e1b484fd-4693-417f-85c0-30baa78ca680}, !- Handle + Zone Outpatient Office A end_b - Story ground WSHP Outlet Air Node, !- Name + {47f58425-ad9e-48da-85ff-50c245e5010d}, !- Inlet Port + {d1fda61f-ea6f-453d-a07c-5cc645d4cd1a}; !- Outlet Port + +OS:Connection, + {d1fda61f-ea6f-453d-a07c-5cc645d4cd1a}, !- Handle + {e1b484fd-4693-417f-85c0-30baa78ca680}, !- Source Object + 3, !- Outlet Port + {353d1314-348a-4017-8364-5394665d5de2}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {47f58425-ad9e-48da-85ff-50c245e5010d}, !- Handle + {3a46f3d8-daa4-456a-9498-24087e51a117}, !- Source Object + 4, !- Outlet Port + {e1b484fd-4693-417f-85c0-30baa78ca680}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {72750a14-902b-41bb-bb6c-7b93f11f4f44}, !- Handle + Zone Outpatient Office B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 60385.2262801326, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {7e29bdd1-b06c-4a2a-b095-b47ab1e808ab}, !- Handle + Zone Outpatient Office B - Story ground Water-to-Air HP Htg Coil 345 Clg kBtu/hr 4.2COPH, !- Name + {35f6df20-6d65-45b8-97ff-93a762a7cf6b}, !- Water Inlet Node Name + {c9729799-8177-4d62-98bc-43227ed24fb6}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 5.48715918919973, !- Rated Air Flow Rate {m3/s} + 0.00197493893869119, !- Rated Water Flow Rate {m3/s} + 89270.6497723197, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {bdf1ad42-b82a-451d-8583-2d4c67313609}, !- Handle + Zone Outpatient Office B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {37c461b7-c198-4d24-a73d-7b3c20ee46af}, !- Inlet Port + {35f6df20-6d65-45b8-97ff-93a762a7cf6b}; !- Outlet Port + +OS:Connection, + {37c461b7-c198-4d24-a73d-7b3c20ee46af}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 122, !- Outlet Port + {bdf1ad42-b82a-451d-8583-2d4c67313609}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {dfd2511f-377b-40ff-89c0-1893e5f2ba87}, !- Handle + Zone Outpatient Office B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {c9729799-8177-4d62-98bc-43227ed24fb6}, !- Inlet Port + {624a013b-cee2-41dc-bd5c-afbdb0365c2b}; !- Outlet Port + +OS:Connection, + {35f6df20-6d65-45b8-97ff-93a762a7cf6b}, !- Handle + {bdf1ad42-b82a-451d-8583-2d4c67313609}, !- Source Object + 3, !- Outlet Port + {7e29bdd1-b06c-4a2a-b095-b47ab1e808ab}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c9729799-8177-4d62-98bc-43227ed24fb6}, !- Handle + {7e29bdd1-b06c-4a2a-b095-b47ab1e808ab}, !- Source Object + 3, !- Outlet Port + {dfd2511f-377b-40ff-89c0-1893e5f2ba87}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {624a013b-cee2-41dc-bd5c-afbdb0365c2b}, !- Handle + {dfd2511f-377b-40ff-89c0-1893e5f2ba87}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 122; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {876bf5a8-88ee-4deb-b33e-dde51997da4e}, !- Handle + Zone Outpatient Office B - Story ground Water-to-Air HP Clg Coil, !- Name + {5c07af92-0a17-401c-8680-b8a93a7c8b20}, !- Water Inlet Node Name + {b333d2ed-329a-48c9-b242-a45bf4e0d056}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 5.48715918919973, !- Rated Air Flow Rate {m3/s} + 0.00197493893869119, !- Rated Water Flow Rate {m3/s} + 94270.9994494499, !- Rated Total Cooling Capacity {W} + 69302.058032545, !- Rated Sensible Cooling Capacity {W} + 3.4, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {f3b9b668-5212-4bc5-8b37-dd7e3a865bfc}, !- Handle + Zone Outpatient Office B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {e327e094-faa5-4acf-80ab-b58d975429e6}, !- Inlet Port + {5c07af92-0a17-401c-8680-b8a93a7c8b20}; !- Outlet Port + +OS:Connection, + {e327e094-faa5-4acf-80ab-b58d975429e6}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 123, !- Outlet Port + {f3b9b668-5212-4bc5-8b37-dd7e3a865bfc}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {fdb26322-290e-46c2-9ee5-cf338f2feece}, !- Handle + Zone Outpatient Office B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {b333d2ed-329a-48c9-b242-a45bf4e0d056}, !- Inlet Port + {24a39798-e136-4709-aecc-b62268ad1884}; !- Outlet Port + +OS:Connection, + {5c07af92-0a17-401c-8680-b8a93a7c8b20}, !- Handle + {f3b9b668-5212-4bc5-8b37-dd7e3a865bfc}, !- Source Object + 3, !- Outlet Port + {876bf5a8-88ee-4deb-b33e-dde51997da4e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b333d2ed-329a-48c9-b242-a45bf4e0d056}, !- Handle + {876bf5a8-88ee-4deb-b33e-dde51997da4e}, !- Source Object + 3, !- Outlet Port + {fdb26322-290e-46c2-9ee5-cf338f2feece}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {24a39798-e136-4709-aecc-b62268ad1884}, !- Handle + {fdb26322-290e-46c2-9ee5-cf338f2feece}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 123; !- Inlet Port + +OS:Fan:OnOff, + {9fc9c5e5-fc8d-4a1f-9e98-a7f76ca16279}, !- Handle + Zone Outpatient Office B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 5.48715918919973, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {d917e44b-842e-4ec7-a8ae-257db6810de2}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {b4c2c168-7867-442c-b17e-a86ad93d911c}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {d917e44b-842e-4ec7-a8ae-257db6810de2}, !- Handle + Fan On Off Power Curve 59, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {b4c2c168-7867-442c-b17e-a86ad93d911c}, !- Handle + Fan On Off Efficiency Curve 59, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {5c763ad7-3e3b-4d3f-8799-34d573876ac6}, !- Handle + Zone Outpatient Office B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {c5c97304-d1b3-4b86-9d97-a49f55360e84}, !- Air Inlet Node Name + {cb58d87d-aff3-4137-9a98-47f2fc58ff2e}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 5.48715918919973, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 5.48715918919973, !- Supply Air Flow Rate During Heating Operation {m3/s} + 5.48715918919973, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {9fc9c5e5-fc8d-4a1f-9e98-a7f76ca16279}, !- Supply Air Fan Name + {7e29bdd1-b06c-4a2a-b095-b47ab1e808ab}, !- Heating Coil Name + {876bf5a8-88ee-4deb-b33e-dde51997da4e}, !- Cooling Coil Name + {72750a14-902b-41bb-bb6c-7b93f11f4f44}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {0e716c75-607c-4b1c-9d21-55dabafaccfd}, !- Handle + Zone Outpatient Office B - Story ground WSHP Inlet Air Node, !- Name + {83c8242c-7eac-4c6b-b038-e76a55649982}, !- Inlet Port + {c5c97304-d1b3-4b86-9d97-a49f55360e84}; !- Outlet Port + +OS:Connection, + {83c8242c-7eac-4c6b-b038-e76a55649982}, !- Handle + {d77f68d4-03b6-4d4e-8047-3679c346a265}, !- Source Object + 2, !- Outlet Port + {0e716c75-607c-4b1c-9d21-55dabafaccfd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c5c97304-d1b3-4b86-9d97-a49f55360e84}, !- Handle + {0e716c75-607c-4b1c-9d21-55dabafaccfd}, !- Source Object + 3, !- Outlet Port + {5c763ad7-3e3b-4d3f-8799-34d573876ac6}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {dc2af76f-c759-45eb-a60a-80248324a011}, !- Handle + Zone Outpatient Office B - Story ground WSHP Outlet Air Node, !- Name + {cb58d87d-aff3-4137-9a98-47f2fc58ff2e}, !- Inlet Port + {b44b7006-5faa-4afa-a623-38960afe9006}; !- Outlet Port + +OS:Connection, + {b44b7006-5faa-4afa-a623-38960afe9006}, !- Handle + {dc2af76f-c759-45eb-a60a-80248324a011}, !- Source Object + 3, !- Outlet Port + {208d0c52-7ad9-4d73-92f1-002756d087ab}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {cb58d87d-aff3-4137-9a98-47f2fc58ff2e}, !- Handle + {5c763ad7-3e3b-4d3f-8799-34d573876ac6}, !- Source Object + 4, !- Outlet Port + {dc2af76f-c759-45eb-a60a-80248324a011}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {f98802ff-1465-4964-8695-e398fa9c9e47}, !- Handle + Zone Outpatient Office B end_b - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 32004.4689217538, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {7280120c-c01b-480f-95dd-95591a65e7d0}, !- Handle + Zone Outpatient Office B end_b - Story ground Water-to-Air HP Htg Coil 213 Clg kBtu/hr 4.2COPH, !- Name + {13256f79-e8c7-48db-be87-d4bbff14740a}, !- Water Inlet Node Name + {129cf406-afac-4e8e-9fee-2c98711cbc83}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 4.29897997517951, !- Rated Air Flow Rate {m3/s} + 0.00136962382203677, !- Rated Water Flow Rate {m3/s} + 61909.3614194967, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {31725391-cdc0-4820-bf14-78df75097967}, !- Handle + Zone Outpatient Office B end_b - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {dac57b54-7d8b-42e7-8cb0-b8fa8bcf01e5}, !- Inlet Port + {13256f79-e8c7-48db-be87-d4bbff14740a}; !- Outlet Port + +OS:Connection, + {dac57b54-7d8b-42e7-8cb0-b8fa8bcf01e5}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 124, !- Outlet Port + {31725391-cdc0-4820-bf14-78df75097967}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {76e91875-e89f-4f00-b2d7-44dd44adbecb}, !- Handle + Zone Outpatient Office B end_b - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {129cf406-afac-4e8e-9fee-2c98711cbc83}, !- Inlet Port + {e8f71c19-44f6-4103-a37d-c6c44fe9526a}; !- Outlet Port + +OS:Connection, + {13256f79-e8c7-48db-be87-d4bbff14740a}, !- Handle + {31725391-cdc0-4820-bf14-78df75097967}, !- Source Object + 3, !- Outlet Port + {7280120c-c01b-480f-95dd-95591a65e7d0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {129cf406-afac-4e8e-9fee-2c98711cbc83}, !- Handle + {7280120c-c01b-480f-95dd-95591a65e7d0}, !- Source Object + 3, !- Outlet Port + {76e91875-e89f-4f00-b2d7-44dd44adbecb}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e8f71c19-44f6-4103-a37d-c6c44fe9526a}, !- Handle + {76e91875-e89f-4f00-b2d7-44dd44adbecb}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 124; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {3f19882b-5e0b-4feb-a283-0880ed7b5a33}, !- Handle + Zone Outpatient Office B end_b - Story ground Water-to-Air HP Clg Coil, !- Name + {c6572e66-6f18-431a-8b5d-0e66cdcafcba}, !- Water Inlet Node Name + {7ad69910-449f-4f58-b567-13a7e2f97f49}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 4.29897997517951, !- Rated Air Flow Rate {m3/s} + 0.00136962382203677, !- Rated Water Flow Rate {m3/s} + 65377.1132077368, !- Rated Total Cooling Capacity {W} + 51561.8403609132, !- Rated Sensible Cooling Capacity {W} + 3.4, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {08dfcad6-52d6-4f1b-b657-e9685f268e8c}, !- Handle + Zone Outpatient Office B end_b - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {0458c943-ffe6-471a-bd7b-719e22ab20f2}, !- Inlet Port + {c6572e66-6f18-431a-8b5d-0e66cdcafcba}; !- Outlet Port + +OS:Connection, + {0458c943-ffe6-471a-bd7b-719e22ab20f2}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 125, !- Outlet Port + {08dfcad6-52d6-4f1b-b657-e9685f268e8c}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {2c8e9b2a-ba7e-49d0-bee6-f5de15cbfee5}, !- Handle + Zone Outpatient Office B end_b - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {7ad69910-449f-4f58-b567-13a7e2f97f49}, !- Inlet Port + {b264e404-31ad-46b2-8bd8-02e6d8adc7e8}; !- Outlet Port + +OS:Connection, + {c6572e66-6f18-431a-8b5d-0e66cdcafcba}, !- Handle + {08dfcad6-52d6-4f1b-b657-e9685f268e8c}, !- Source Object + 3, !- Outlet Port + {3f19882b-5e0b-4feb-a283-0880ed7b5a33}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7ad69910-449f-4f58-b567-13a7e2f97f49}, !- Handle + {3f19882b-5e0b-4feb-a283-0880ed7b5a33}, !- Source Object + 3, !- Outlet Port + {2c8e9b2a-ba7e-49d0-bee6-f5de15cbfee5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b264e404-31ad-46b2-8bd8-02e6d8adc7e8}, !- Handle + {2c8e9b2a-ba7e-49d0-bee6-f5de15cbfee5}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 125; !- Inlet Port + +OS:Fan:OnOff, + {cd1cc201-a9bf-4988-a28c-9f7f5540961b}, !- Handle + Zone Outpatient Office B end_b - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 4.29897997517951, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {5b9ce0d1-5069-4329-b740-e6eb9d82a55d}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {a5b8a008-f582-4823-b18b-7d38a096e735}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {5b9ce0d1-5069-4329-b740-e6eb9d82a55d}, !- Handle + Fan On Off Power Curve 60, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {a5b8a008-f582-4823-b18b-7d38a096e735}, !- Handle + Fan On Off Efficiency Curve 60, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {964d5000-55b4-465d-b5ac-568e754c09f4}, !- Handle + Zone Outpatient Office B end_b - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {749347b6-13a9-4cc9-a462-b14c0223e726}, !- Air Inlet Node Name + {5e0ca34f-4436-4dc3-b988-984705e82f3e}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 4.29897997517951, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 4.29897997517951, !- Supply Air Flow Rate During Heating Operation {m3/s} + 4.29897997517951, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {cd1cc201-a9bf-4988-a28c-9f7f5540961b}, !- Supply Air Fan Name + {7280120c-c01b-480f-95dd-95591a65e7d0}, !- Heating Coil Name + {3f19882b-5e0b-4feb-a283-0880ed7b5a33}, !- Cooling Coil Name + {f98802ff-1465-4964-8695-e398fa9c9e47}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {f0f24585-d986-45ac-86fa-fa38ebc3dce9}, !- Handle + Zone Outpatient Office B end_b - Story ground WSHP Inlet Air Node, !- Name + {2a67dc06-b333-4156-8d57-fb71545a73b6}, !- Inlet Port + {749347b6-13a9-4cc9-a462-b14c0223e726}; !- Outlet Port + +OS:Connection, + {2a67dc06-b333-4156-8d57-fb71545a73b6}, !- Handle + {73359809-2452-45f0-ad74-1daef634dd9c}, !- Source Object + 2, !- Outlet Port + {f0f24585-d986-45ac-86fa-fa38ebc3dce9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {749347b6-13a9-4cc9-a462-b14c0223e726}, !- Handle + {f0f24585-d986-45ac-86fa-fa38ebc3dce9}, !- Source Object + 3, !- Outlet Port + {964d5000-55b4-465d-b5ac-568e754c09f4}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {742de4e1-847f-4fb7-97ba-60279ab10070}, !- Handle + Zone Outpatient Office B end_b - Story ground WSHP Outlet Air Node, !- Name + {5e0ca34f-4436-4dc3-b988-984705e82f3e}, !- Inlet Port + {ca68a3f8-f514-417d-ac4d-f312e81882f6}; !- Outlet Port + +OS:Connection, + {ca68a3f8-f514-417d-ac4d-f312e81882f6}, !- Handle + {742de4e1-847f-4fb7-97ba-60279ab10070}, !- Source Object + 3, !- Outlet Port + {230d9f26-6344-469b-800b-474370638aeb}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {5e0ca34f-4436-4dc3-b988-984705e82f3e}, !- Handle + {964d5000-55b4-465d-b5ac-568e754c09f4}, !- Source Object + 4, !- Outlet Port + {742de4e1-847f-4fb7-97ba-60279ab10070}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {53e354f5-5d27-4ce5-94d6-914ff1e1607c}, !- Handle + Zone Outpatient Office C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 17188.9508601695, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {f96b2a3f-5e31-47f9-8bbd-2d187a658612}, !- Handle + Zone Outpatient Office C - Story ground Water-to-Air HP Htg Coil 82 Clg kBtu/hr 4.2COPH, !- Name + {b8dc5051-50d8-4f28-b9d3-6c2c2d5843fb}, !- Water Inlet Node Name + {ca433c97-2623-4f92-9338-4246fbb65ba5}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 1.59415530337646, !- Rated Air Flow Rate {m3/s} + 0.000517071598557416, !- Rated Water Flow Rate {m3/s} + 23372.5289818949, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {d3f68be0-7696-40b6-ba89-3a955a8741e2}, !- Handle + Zone Outpatient Office C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {d25ede48-eb7c-4506-baef-476b84a06f52}, !- Inlet Port + {b8dc5051-50d8-4f28-b9d3-6c2c2d5843fb}; !- Outlet Port + +OS:Connection, + {d25ede48-eb7c-4506-baef-476b84a06f52}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 126, !- Outlet Port + {d3f68be0-7696-40b6-ba89-3a955a8741e2}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {b4d8ee98-7740-41bf-acf3-d85114c7b0f5}, !- Handle + Zone Outpatient Office C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {ca433c97-2623-4f92-9338-4246fbb65ba5}, !- Inlet Port + {a8b488dd-6141-4b5d-a483-8ed15741eb8b}; !- Outlet Port + +OS:Connection, + {b8dc5051-50d8-4f28-b9d3-6c2c2d5843fb}, !- Handle + {d3f68be0-7696-40b6-ba89-3a955a8741e2}, !- Source Object + 3, !- Outlet Port + {f96b2a3f-5e31-47f9-8bbd-2d187a658612}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ca433c97-2623-4f92-9338-4246fbb65ba5}, !- Handle + {f96b2a3f-5e31-47f9-8bbd-2d187a658612}, !- Source Object + 3, !- Outlet Port + {b4d8ee98-7740-41bf-acf3-d85114c7b0f5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a8b488dd-6141-4b5d-a483-8ed15741eb8b}, !- Handle + {b4d8ee98-7740-41bf-acf3-d85114c7b0f5}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 126; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {5008d8a8-e5f2-4ad6-b5fc-dca2c1fe0c88}, !- Handle + Zone Outpatient Office C - Story ground Water-to-Air HP Clg Coil 82kBtu/hr 12.0EER, !- Name + {1a9be021-582b-4eec-8734-c707fcabce4e}, !- Water Inlet Node Name + {ba18a56f-9d5f-4e5e-93c9-81d6f2c9ecce}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 1.59415530337646, !- Rated Air Flow Rate {m3/s} + 0.000517071598557416, !- Rated Water Flow Rate {m3/s} + 24681.7030278597, !- Rated Total Cooling Capacity {W} + 19254.8039289675, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {20c3a1c5-59ff-4797-8c79-42d4ed2d6010}, !- Handle + Zone Outpatient Office C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {aa90e410-ce13-4bdc-bc6c-a4ca33bb57ac}, !- Inlet Port + {1a9be021-582b-4eec-8734-c707fcabce4e}; !- Outlet Port + +OS:Connection, + {aa90e410-ce13-4bdc-bc6c-a4ca33bb57ac}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 127, !- Outlet Port + {20c3a1c5-59ff-4797-8c79-42d4ed2d6010}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {79da1933-7ee5-494a-b8bf-0b8979ab4aa2}, !- Handle + Zone Outpatient Office C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {ba18a56f-9d5f-4e5e-93c9-81d6f2c9ecce}, !- Inlet Port + {dcb2a61c-c2c8-4dcb-96bf-a1754df6c2f6}; !- Outlet Port + +OS:Connection, + {1a9be021-582b-4eec-8734-c707fcabce4e}, !- Handle + {20c3a1c5-59ff-4797-8c79-42d4ed2d6010}, !- Source Object + 3, !- Outlet Port + {5008d8a8-e5f2-4ad6-b5fc-dca2c1fe0c88}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ba18a56f-9d5f-4e5e-93c9-81d6f2c9ecce}, !- Handle + {5008d8a8-e5f2-4ad6-b5fc-dca2c1fe0c88}, !- Source Object + 3, !- Outlet Port + {79da1933-7ee5-494a-b8bf-0b8979ab4aa2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {dcb2a61c-c2c8-4dcb-96bf-a1754df6c2f6}, !- Handle + {79da1933-7ee5-494a-b8bf-0b8979ab4aa2}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 127; !- Inlet Port + +OS:Fan:OnOff, + {c9b27781-b855-4ab0-8958-c115ac56fd35}, !- Handle + Zone Outpatient Office C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 1.59415530337646, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {ba6cd85f-3e04-427e-9a37-62a4220921c4}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {f1c3ecc3-1a0d-4f08-a84b-3dcc01985ad9}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {ba6cd85f-3e04-427e-9a37-62a4220921c4}, !- Handle + Fan On Off Power Curve 61, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {f1c3ecc3-1a0d-4f08-a84b-3dcc01985ad9}, !- Handle + Fan On Off Efficiency Curve 61, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {b58ed1fa-a364-4072-b19d-f818177674b6}, !- Handle + Zone Outpatient Office C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {20ebcf7d-004e-438b-bf66-fb67d8f0c819}, !- Air Inlet Node Name + {145bb6c9-d260-4acd-8c27-09c417d65888}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 1.59415530337646, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 1.59415530337646, !- Supply Air Flow Rate During Heating Operation {m3/s} + 1.59415530337646, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {c9b27781-b855-4ab0-8958-c115ac56fd35}, !- Supply Air Fan Name + {f96b2a3f-5e31-47f9-8bbd-2d187a658612}, !- Heating Coil Name + {5008d8a8-e5f2-4ad6-b5fc-dca2c1fe0c88}, !- Cooling Coil Name + {53e354f5-5d27-4ce5-94d6-914ff1e1607c}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {d70d3169-3df4-40c0-a0c7-d9f032937c41}, !- Handle + Zone Outpatient Office C - Story ground WSHP Inlet Air Node, !- Name + {9e80aa65-5038-479d-84a8-69ace6666d17}, !- Inlet Port + {20ebcf7d-004e-438b-bf66-fb67d8f0c819}; !- Outlet Port + +OS:Connection, + {9e80aa65-5038-479d-84a8-69ace6666d17}, !- Handle + {189fa751-100d-42c2-a03c-fa54dea9bd37}, !- Source Object + 2, !- Outlet Port + {d70d3169-3df4-40c0-a0c7-d9f032937c41}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {20ebcf7d-004e-438b-bf66-fb67d8f0c819}, !- Handle + {d70d3169-3df4-40c0-a0c7-d9f032937c41}, !- Source Object + 3, !- Outlet Port + {b58ed1fa-a364-4072-b19d-f818177674b6}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {7c54c137-ad3c-4370-81be-131d121eca81}, !- Handle + Zone Outpatient Office C - Story ground WSHP Outlet Air Node, !- Name + {145bb6c9-d260-4acd-8c27-09c417d65888}, !- Inlet Port + {f7180b4c-1d8b-40bc-88e8-f6d42153adad}; !- Outlet Port + +OS:Connection, + {f7180b4c-1d8b-40bc-88e8-f6d42153adad}, !- Handle + {7c54c137-ad3c-4370-81be-131d121eca81}, !- Source Object + 3, !- Outlet Port + {a7d906cb-af3a-46b7-8747-2b5a94f9749d}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {145bb6c9-d260-4acd-8c27-09c417d65888}, !- Handle + {b58ed1fa-a364-4072-b19d-f818177674b6}, !- Source Object + 4, !- Outlet Port + {7c54c137-ad3c-4370-81be-131d121eca81}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {65434c55-e5fe-4a5e-99d3-50e70d48d3c6}, !- Handle + Zone Outpatient Office C end_b - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 5021.74097805087, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {41bf0724-5a3c-4db4-a802-9ec7c6d8987c}, !- Handle + Zone Outpatient Office C end_b - Story ground Water-to-Air HP Htg Coil 27 Clg kBtu/hr 4.2COPH, !- Name + {3b6c7769-39fe-4590-83fc-7dafd13037c4}, !- Water Inlet Node Name + {3ecb46a3-a87c-4695-909d-0e7c036e54fe}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.544047226348784, !- Rated Air Flow Rate {m3/s} + 0.000172350101439717, !- Rated Water Flow Rate {m3/s} + 7790.5221485202, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {ef2522f3-fd70-4069-a65e-1bd33fccb2ad}, !- Handle + Zone Outpatient Office C end_b - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {f7a72c5b-1863-44dd-93b1-d3f0c7496b5f}, !- Inlet Port + {3b6c7769-39fe-4590-83fc-7dafd13037c4}; !- Outlet Port + +OS:Connection, + {f7a72c5b-1863-44dd-93b1-d3f0c7496b5f}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 128, !- Outlet Port + {ef2522f3-fd70-4069-a65e-1bd33fccb2ad}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {84e700c3-f15a-41c5-ad60-960c864d1ee8}, !- Handle + Zone Outpatient Office C end_b - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {3ecb46a3-a87c-4695-909d-0e7c036e54fe}, !- Inlet Port + {403bdaa3-a9f9-4a01-8f12-51cb1e77b932}; !- Outlet Port + +OS:Connection, + {3b6c7769-39fe-4590-83fc-7dafd13037c4}, !- Handle + {ef2522f3-fd70-4069-a65e-1bd33fccb2ad}, !- Source Object + 3, !- Outlet Port + {41bf0724-5a3c-4db4-a802-9ec7c6d8987c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3ecb46a3-a87c-4695-909d-0e7c036e54fe}, !- Handle + {41bf0724-5a3c-4db4-a802-9ec7c6d8987c}, !- Source Object + 3, !- Outlet Port + {84e700c3-f15a-41c5-ad60-960c864d1ee8}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {403bdaa3-a9f9-4a01-8f12-51cb1e77b932}, !- Handle + {84e700c3-f15a-41c5-ad60-960c864d1ee8}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 128; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {7858b275-a0a4-409b-9af5-c8a01c50c1db}, !- Handle + Zone Outpatient Office C end_b - Story ground Water-to-Air HP Clg Coil 27kBtu/hr 12.0EER, !- Name + {95888253-cf19-49bc-bd39-0ed887e038ce}, !- Water Inlet Node Name + {0969e2df-d2b7-4fc2-b78b-75f7a242d684}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.544047226348784, !- Rated Air Flow Rate {m3/s} + 0.000172350101439717, !- Rated Water Flow Rate {m3/s} + 8226.89552554146, !- Rated Total Cooling Capacity {W} + 6511.09103468095, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {7efbb486-ed8b-4971-8abe-81043ad203a1}, !- Handle + Zone Outpatient Office C end_b - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {bbc18611-3a9e-4e47-bed0-82809c21a453}, !- Inlet Port + {95888253-cf19-49bc-bd39-0ed887e038ce}; !- Outlet Port + +OS:Connection, + {bbc18611-3a9e-4e47-bed0-82809c21a453}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 129, !- Outlet Port + {7efbb486-ed8b-4971-8abe-81043ad203a1}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {31b9eea4-84ca-4e0a-8f6e-fdf07a5433ae}, !- Handle + Zone Outpatient Office C end_b - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {0969e2df-d2b7-4fc2-b78b-75f7a242d684}, !- Inlet Port + {f37ce78d-e987-4413-8c5d-8b3d02595db4}; !- Outlet Port + +OS:Connection, + {95888253-cf19-49bc-bd39-0ed887e038ce}, !- Handle + {7efbb486-ed8b-4971-8abe-81043ad203a1}, !- Source Object + 3, !- Outlet Port + {7858b275-a0a4-409b-9af5-c8a01c50c1db}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0969e2df-d2b7-4fc2-b78b-75f7a242d684}, !- Handle + {7858b275-a0a4-409b-9af5-c8a01c50c1db}, !- Source Object + 3, !- Outlet Port + {31b9eea4-84ca-4e0a-8f6e-fdf07a5433ae}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f37ce78d-e987-4413-8c5d-8b3d02595db4}, !- Handle + {31b9eea4-84ca-4e0a-8f6e-fdf07a5433ae}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 129; !- Inlet Port + +OS:Fan:OnOff, + {ef6221e5-af57-4db8-8bee-4a71504c3d75}, !- Handle + Zone Outpatient Office C end_b - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.544047226348784, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {46c0cacd-213a-4e4d-8168-de4833d31302}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {de536bc3-9242-4d2c-b052-9d841266c518}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {46c0cacd-213a-4e4d-8168-de4833d31302}, !- Handle + Fan On Off Power Curve 62, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {de536bc3-9242-4d2c-b052-9d841266c518}, !- Handle + Fan On Off Efficiency Curve 62, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {c1a8ddfc-5f58-48f2-8234-cfdce6c41f5c}, !- Handle + Zone Outpatient Office C end_b - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {80905755-22bd-4d64-aa45-0e2044cfd09d}, !- Air Inlet Node Name + {e1d6fe08-1577-4170-995a-94be0fff2376}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.544047226348784, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.544047226348784, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.544047226348784, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {ef6221e5-af57-4db8-8bee-4a71504c3d75}, !- Supply Air Fan Name + {41bf0724-5a3c-4db4-a802-9ec7c6d8987c}, !- Heating Coil Name + {7858b275-a0a4-409b-9af5-c8a01c50c1db}, !- Cooling Coil Name + {65434c55-e5fe-4a5e-99d3-50e70d48d3c6}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {ab4e46fd-6281-431b-b5b5-d49819815d5c}, !- Handle + Zone Outpatient Office C end_b - Story ground WSHP Inlet Air Node, !- Name + {1fea87b9-231b-4690-b798-3f341bbe0c94}, !- Inlet Port + {80905755-22bd-4d64-aa45-0e2044cfd09d}; !- Outlet Port + +OS:Connection, + {1fea87b9-231b-4690-b798-3f341bbe0c94}, !- Handle + {a75d4eea-55f9-46dc-8c1b-0ac0cf2e0f84}, !- Source Object + 2, !- Outlet Port + {ab4e46fd-6281-431b-b5b5-d49819815d5c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {80905755-22bd-4d64-aa45-0e2044cfd09d}, !- Handle + {ab4e46fd-6281-431b-b5b5-d49819815d5c}, !- Source Object + 3, !- Outlet Port + {c1a8ddfc-5f58-48f2-8234-cfdce6c41f5c}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {b6606587-6133-4116-8655-1b60dc93182b}, !- Handle + Zone Outpatient Office C end_b - Story ground WSHP Outlet Air Node, !- Name + {e1d6fe08-1577-4170-995a-94be0fff2376}, !- Inlet Port + {f4d23c90-7c31-4ac4-b203-77eab7afaaea}; !- Outlet Port + +OS:Connection, + {f4d23c90-7c31-4ac4-b203-77eab7afaaea}, !- Handle + {b6606587-6133-4116-8655-1b60dc93182b}, !- Source Object + 3, !- Outlet Port + {4425461f-dffd-4cc3-9c17-64d4916d0878}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {e1d6fe08-1577-4170-995a-94be0fff2376}, !- Handle + {c1a8ddfc-5f58-48f2-8234-cfdce6c41f5c}, !- Source Object + 4, !- Outlet Port + {b6606587-6133-4116-8655-1b60dc93182b}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {311723a8-98c0-4b4b-b1af-63204ed152cf}, !- Handle + Zone Outpatient OR A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 297.03500105753, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {9153b05a-2117-47fd-88e2-473327dc096b}, !- Handle + Zone Outpatient OR A - Story ground Water-to-Air HP Htg Coil 8 Clg kBtu/hr 4.2COPH, !- Name + {4d27cbdc-0b00-4ad5-a810-ff2463ba3343}, !- Water Inlet Node Name + {2f002724-792b-482e-84d1-20a1b3024388}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.253996264874015, !- Rated Air Flow Rate {m3/s} + 5.27846449688642e-05, !- Rated Water Flow Rate {m3/s} + 2385.9570855869, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {31f240fb-77ec-4b11-9195-a47c31ee8c5d}, !- Handle + Zone Outpatient OR A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {5692b641-5a8c-41f9-8100-bcdfd200d8a3}, !- Inlet Port + {4d27cbdc-0b00-4ad5-a810-ff2463ba3343}; !- Outlet Port + +OS:Connection, + {5692b641-5a8c-41f9-8100-bcdfd200d8a3}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 130, !- Outlet Port + {31f240fb-77ec-4b11-9195-a47c31ee8c5d}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {93f3f1bc-b3f0-4b55-ab13-31110696d5ee}, !- Handle + Zone Outpatient OR A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {2f002724-792b-482e-84d1-20a1b3024388}, !- Inlet Port + {7e894538-3ca1-4f26-9e4e-35909f21f13d}; !- Outlet Port + +OS:Connection, + {4d27cbdc-0b00-4ad5-a810-ff2463ba3343}, !- Handle + {31f240fb-77ec-4b11-9195-a47c31ee8c5d}, !- Source Object + 3, !- Outlet Port + {9153b05a-2117-47fd-88e2-473327dc096b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2f002724-792b-482e-84d1-20a1b3024388}, !- Handle + {9153b05a-2117-47fd-88e2-473327dc096b}, !- Source Object + 3, !- Outlet Port + {93f3f1bc-b3f0-4b55-ab13-31110696d5ee}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7e894538-3ca1-4f26-9e4e-35909f21f13d}, !- Handle + {93f3f1bc-b3f0-4b55-ab13-31110696d5ee}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 130; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {e3bc803f-df6d-455f-bcbf-3a2ae1f43ad7}, !- Handle + Zone Outpatient OR A - Story ground Water-to-Air HP Clg Coil 8kBtu/hr 11.2EER, !- Name + {1c57f266-1661-45fa-b73c-5e6ba212dbc3}, !- Water Inlet Node Name + {65c0d6ca-704c-40b8-8642-035381bf051d}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.253996264874015, !- Rated Air Flow Rate {m3/s} + 5.27846449688642e-05, !- Rated Water Flow Rate {m3/s} + 2519.60257571147, !- Rated Total Cooling Capacity {W} + 2269.3483154445, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {751bfbb7-c885-499f-a728-2e02ae9b7790}, !- Handle + Zone Outpatient OR A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {eb9d2b75-4c9e-4ebb-a862-eafdca5e31f8}, !- Inlet Port + {1c57f266-1661-45fa-b73c-5e6ba212dbc3}; !- Outlet Port + +OS:Connection, + {eb9d2b75-4c9e-4ebb-a862-eafdca5e31f8}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 131, !- Outlet Port + {751bfbb7-c885-499f-a728-2e02ae9b7790}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {c12bec90-5911-43a5-9068-6bacfa74169b}, !- Handle + Zone Outpatient OR A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {65c0d6ca-704c-40b8-8642-035381bf051d}, !- Inlet Port + {425c60cd-ba60-4095-b181-ff5aa7672cd8}; !- Outlet Port + +OS:Connection, + {1c57f266-1661-45fa-b73c-5e6ba212dbc3}, !- Handle + {751bfbb7-c885-499f-a728-2e02ae9b7790}, !- Source Object + 3, !- Outlet Port + {e3bc803f-df6d-455f-bcbf-3a2ae1f43ad7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {65c0d6ca-704c-40b8-8642-035381bf051d}, !- Handle + {e3bc803f-df6d-455f-bcbf-3a2ae1f43ad7}, !- Source Object + 3, !- Outlet Port + {c12bec90-5911-43a5-9068-6bacfa74169b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {425c60cd-ba60-4095-b181-ff5aa7672cd8}, !- Handle + {c12bec90-5911-43a5-9068-6bacfa74169b}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 131; !- Inlet Port + +OS:Fan:OnOff, + {f17b8c02-5894-4883-bb02-fecd6f378480}, !- Handle + Zone Outpatient OR A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.253996264874015, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {8af55b88-02d5-45dc-8f7b-9dc1da4d30e9}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {b1230b10-3638-4462-8798-5c3057e6b902}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {8af55b88-02d5-45dc-8f7b-9dc1da4d30e9}, !- Handle + Fan On Off Power Curve 63, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {b1230b10-3638-4462-8798-5c3057e6b902}, !- Handle + Fan On Off Efficiency Curve 63, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {6574e0cb-620e-4988-acf7-a1e6c1367c1d}, !- Handle + Zone Outpatient OR A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {1d44b682-bc26-4c8c-a033-a3034252bfd1}, !- Air Inlet Node Name + {295c0e63-4330-4637-9063-9e2d6c8b4c10}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.253996264874015, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.253996264874015, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.253996264874015, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {f17b8c02-5894-4883-bb02-fecd6f378480}, !- Supply Air Fan Name + {9153b05a-2117-47fd-88e2-473327dc096b}, !- Heating Coil Name + {e3bc803f-df6d-455f-bcbf-3a2ae1f43ad7}, !- Cooling Coil Name + {311723a8-98c0-4b4b-b1af-63204ed152cf}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {35a4dc5d-957e-42a7-87d9-121a9b96125e}, !- Handle + Zone Outpatient OR A - Story ground WSHP Inlet Air Node, !- Name + {9dd89249-5a8a-42d5-96ee-2fcd9feeb910}, !- Inlet Port + {1d44b682-bc26-4c8c-a033-a3034252bfd1}; !- Outlet Port + +OS:Connection, + {9dd89249-5a8a-42d5-96ee-2fcd9feeb910}, !- Handle + {bc4468dc-5779-4fe8-9163-d7079a34a30e}, !- Source Object + 2, !- Outlet Port + {35a4dc5d-957e-42a7-87d9-121a9b96125e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1d44b682-bc26-4c8c-a033-a3034252bfd1}, !- Handle + {35a4dc5d-957e-42a7-87d9-121a9b96125e}, !- Source Object + 3, !- Outlet Port + {6574e0cb-620e-4988-acf7-a1e6c1367c1d}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {98f16549-3565-4f6a-ad6a-228845c7f669}, !- Handle + Zone Outpatient OR A - Story ground WSHP Outlet Air Node, !- Name + {295c0e63-4330-4637-9063-9e2d6c8b4c10}, !- Inlet Port + {745c040d-427b-4c4c-a657-7183f9de2d13}; !- Outlet Port + +OS:Connection, + {745c040d-427b-4c4c-a657-7183f9de2d13}, !- Handle + {98f16549-3565-4f6a-ad6a-228845c7f669}, !- Source Object + 3, !- Outlet Port + {03a66b75-b371-4846-99bf-362fe2d2c2ec}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {295c0e63-4330-4637-9063-9e2d6c8b4c10}, !- Handle + {6574e0cb-620e-4988-acf7-a1e6c1367c1d}, !- Source Object + 4, !- Outlet Port + {98f16549-3565-4f6a-ad6a-228845c7f669}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {2bf03bdd-947e-49e9-84bf-595b6f22429d}, !- Handle + Zone Outpatient OR A - Story ground 1 Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 2008.33648967189, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {e9e4303e-0e2f-4b03-a5c2-92ccc3f1169b}, !- Handle + Zone Outpatient OR A - Story ground 1 Water-to-Air HP Htg Coil 50 Clg kBtu/hr 4.2COPH, !- Name + {1b3adb96-4713-4795-b60d-6983c8344319}, !- Water Inlet Node Name + {664913f4-e833-429e-af42-cd20e243e175}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 1.43286134889878, !- Rated Air Flow Rate {m3/s} + 0.000316628245821611, !- Rated Water Flow Rate {m3/s} + 14312.1433716309, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {c2a80408-137a-452c-84b0-93d960ca9a3a}, !- Handle + Zone Outpatient OR A - Story ground 1 Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {03459db6-d5ef-4ee6-bb28-2619783a23ab}, !- Inlet Port + {1b3adb96-4713-4795-b60d-6983c8344319}; !- Outlet Port + +OS:Connection, + {03459db6-d5ef-4ee6-bb28-2619783a23ab}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 132, !- Outlet Port + {c2a80408-137a-452c-84b0-93d960ca9a3a}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {4d8069bf-633e-4583-828a-dc59fb9d22db}, !- Handle + Zone Outpatient OR A - Story ground 1 Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {664913f4-e833-429e-af42-cd20e243e175}, !- Inlet Port + {b0eb6954-83d2-4b4f-a349-bd56a8476ae8}; !- Outlet Port + +OS:Connection, + {1b3adb96-4713-4795-b60d-6983c8344319}, !- Handle + {c2a80408-137a-452c-84b0-93d960ca9a3a}, !- Source Object + 3, !- Outlet Port + {e9e4303e-0e2f-4b03-a5c2-92ccc3f1169b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {664913f4-e833-429e-af42-cd20e243e175}, !- Handle + {e9e4303e-0e2f-4b03-a5c2-92ccc3f1169b}, !- Source Object + 3, !- Outlet Port + {4d8069bf-633e-4583-828a-dc59fb9d22db}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b0eb6954-83d2-4b4f-a349-bd56a8476ae8}, !- Handle + {4d8069bf-633e-4583-828a-dc59fb9d22db}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 132; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {1c177416-d334-4092-98a6-66294f6aad6d}, !- Handle + Zone Outpatient OR A - Story ground 1 Water-to-Air HP Clg Coil 50kBtu/hr 12.0EER, !- Name + {2de35e12-9005-4334-aa15-4254c6254cb9}, !- Water Inlet Node Name + {16938ef5-1aba-4bb2-8e4d-ce094aff4e23}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 1.43286134889878, !- Rated Air Flow Rate {m3/s} + 0.000316628245821611, !- Rated Water Flow Rate {m3/s} + 15113.8147123224, !- Rated Total Cooling Capacity {W} + 13039.1406389165, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {9d3cd269-7c91-4e65-85df-0418cb04c931}, !- Handle + Zone Outpatient OR A - Story ground 1 Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {471dfaad-e3ea-474f-a860-8fc1ff5d3590}, !- Inlet Port + {2de35e12-9005-4334-aa15-4254c6254cb9}; !- Outlet Port + +OS:Connection, + {471dfaad-e3ea-474f-a860-8fc1ff5d3590}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 133, !- Outlet Port + {9d3cd269-7c91-4e65-85df-0418cb04c931}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {10471192-9ae6-45a7-a261-af29737f4cee}, !- Handle + Zone Outpatient OR A - Story ground 1 Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {16938ef5-1aba-4bb2-8e4d-ce094aff4e23}, !- Inlet Port + {f3feb8d8-c86f-4fe6-a8f8-5e8ea72b867b}; !- Outlet Port + +OS:Connection, + {2de35e12-9005-4334-aa15-4254c6254cb9}, !- Handle + {9d3cd269-7c91-4e65-85df-0418cb04c931}, !- Source Object + 3, !- Outlet Port + {1c177416-d334-4092-98a6-66294f6aad6d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {16938ef5-1aba-4bb2-8e4d-ce094aff4e23}, !- Handle + {1c177416-d334-4092-98a6-66294f6aad6d}, !- Source Object + 3, !- Outlet Port + {10471192-9ae6-45a7-a261-af29737f4cee}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f3feb8d8-c86f-4fe6-a8f8-5e8ea72b867b}, !- Handle + {10471192-9ae6-45a7-a261-af29737f4cee}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 133; !- Inlet Port + +OS:Fan:OnOff, + {948dfe4c-9a65-4aa8-b9e2-1e3cfb83ff9b}, !- Handle + Zone Outpatient OR A - Story ground 1 WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 1.43286134889878, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {224e048b-13c3-4307-b2bd-6a4dc94d7b3a}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {63c1e1e2-2fc6-4ca2-9956-e3659910616e}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {224e048b-13c3-4307-b2bd-6a4dc94d7b3a}, !- Handle + Fan On Off Power Curve 64, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {63c1e1e2-2fc6-4ca2-9956-e3659910616e}, !- Handle + Fan On Off Efficiency Curve 64, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {1938d927-cd01-47a1-b00b-f47208f78402}, !- Handle + Zone Outpatient OR A - Story ground 1 WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {c79ee828-1323-4c9a-a07e-a1f34a28501f}, !- Air Inlet Node Name + {049f412a-0a98-4bbb-9c93-f47dd562ebb2}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 1.43286134889878, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 1.43286134889878, !- Supply Air Flow Rate During Heating Operation {m3/s} + 1.43286134889878, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {948dfe4c-9a65-4aa8-b9e2-1e3cfb83ff9b}, !- Supply Air Fan Name + {e9e4303e-0e2f-4b03-a5c2-92ccc3f1169b}, !- Heating Coil Name + {1c177416-d334-4092-98a6-66294f6aad6d}, !- Cooling Coil Name + {2bf03bdd-947e-49e9-84bf-595b6f22429d}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {e09580e0-c1f2-45c2-8d82-33e4c0d3554d}, !- Handle + Zone Outpatient OR A - Story ground 1 WSHP Inlet Air Node, !- Name + {e48ad63e-02df-4a80-a62b-fac7dc33f1a2}, !- Inlet Port + {c79ee828-1323-4c9a-a07e-a1f34a28501f}; !- Outlet Port + +OS:Connection, + {e48ad63e-02df-4a80-a62b-fac7dc33f1a2}, !- Handle + {16b260da-1d2e-4c58-bd2e-46ad036ca396}, !- Source Object + 2, !- Outlet Port + {e09580e0-c1f2-45c2-8d82-33e4c0d3554d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c79ee828-1323-4c9a-a07e-a1f34a28501f}, !- Handle + {e09580e0-c1f2-45c2-8d82-33e4c0d3554d}, !- Source Object + 3, !- Outlet Port + {1938d927-cd01-47a1-b00b-f47208f78402}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {4d832cb8-b22a-4a43-b9ec-327d121d6a79}, !- Handle + Zone Outpatient OR A - Story ground 1 WSHP Outlet Air Node, !- Name + {049f412a-0a98-4bbb-9c93-f47dd562ebb2}, !- Inlet Port + {228b6277-2052-4ab4-a461-dbfb6ba50291}; !- Outlet Port + +OS:Connection, + {228b6277-2052-4ab4-a461-dbfb6ba50291}, !- Handle + {4d832cb8-b22a-4a43-b9ec-327d121d6a79}, !- Source Object + 3, !- Outlet Port + {8c6fd4a7-00ea-4db7-b537-887a86b7823e}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {049f412a-0a98-4bbb-9c93-f47dd562ebb2}, !- Handle + {1938d927-cd01-47a1-b00b-f47208f78402}, !- Source Object + 4, !- Outlet Port + {4d832cb8-b22a-4a43-b9ec-327d121d6a79}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {277276cd-a666-4e82-a0a3-4db3ad45c244}, !- Handle + Zone Outpatient OR B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 1567.89546412569, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {5ec61a4c-73aa-4c62-aedb-501371332c97}, !- Handle + Zone Outpatient OR B - Story ground Water-to-Air HP Htg Coil 44 Clg kBtu/hr 4.2COPH, !- Name + {3287cd5e-c087-4af5-abe7-e8571ab5581e}, !- Water Inlet Node Name + {810cf878-3cc0-4db1-a5ac-1a1e69defa36}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 1.28809423370813, !- Rated Air Flow Rate {m3/s} + 0.000283877434297211, !- Rated Water Flow Rate {m3/s} + 12831.7501462629, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {a2c09db0-637f-4ddb-a732-86fe7d69f719}, !- Handle + Zone Outpatient OR B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {cb599cac-d40d-44ce-a9f9-fb98a1da5ba9}, !- Inlet Port + {3287cd5e-c087-4af5-abe7-e8571ab5581e}; !- Outlet Port + +OS:Connection, + {cb599cac-d40d-44ce-a9f9-fb98a1da5ba9}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 134, !- Outlet Port + {a2c09db0-637f-4ddb-a732-86fe7d69f719}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {1db9818a-20d9-48a9-a0c1-177044606a98}, !- Handle + Zone Outpatient OR B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {810cf878-3cc0-4db1-a5ac-1a1e69defa36}, !- Inlet Port + {b37f9b6c-23a0-42ed-9f63-4e02dc6f45a6}; !- Outlet Port + +OS:Connection, + {3287cd5e-c087-4af5-abe7-e8571ab5581e}, !- Handle + {a2c09db0-637f-4ddb-a732-86fe7d69f719}, !- Source Object + 3, !- Outlet Port + {5ec61a4c-73aa-4c62-aedb-501371332c97}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {810cf878-3cc0-4db1-a5ac-1a1e69defa36}, !- Handle + {5ec61a4c-73aa-4c62-aedb-501371332c97}, !- Source Object + 3, !- Outlet Port + {1db9818a-20d9-48a9-a0c1-177044606a98}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b37f9b6c-23a0-42ed-9f63-4e02dc6f45a6}, !- Handle + {1db9818a-20d9-48a9-a0c1-177044606a98}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 134; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {d27d1b16-03d2-40eb-b7ec-0706a264c717}, !- Handle + Zone Outpatient OR B - Story ground Water-to-Air HP Clg Coil 44kBtu/hr 12.0EER, !- Name + {2e04d92b-a776-41a5-b318-e9b0121bac95}, !- Water Inlet Node Name + {b64a333b-aa36-4a33-af67-59c1477f02a5}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 1.28809423370813, !- Rated Air Flow Rate {m3/s} + 0.000283877434297211, !- Rated Water Flow Rate {m3/s} + 13550.4996777666, !- Rated Total Cooling Capacity {W} + 11715.1430778613, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {f4a75add-2974-4608-b392-4f5c48fd1fa0}, !- Handle + Zone Outpatient OR B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {89eb89c8-bb99-40a2-9c9f-bfb1219b4a17}, !- Inlet Port + {2e04d92b-a776-41a5-b318-e9b0121bac95}; !- Outlet Port + +OS:Connection, + {89eb89c8-bb99-40a2-9c9f-bfb1219b4a17}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 135, !- Outlet Port + {f4a75add-2974-4608-b392-4f5c48fd1fa0}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {58c7cde3-f2ae-4b68-990c-35127bcc2819}, !- Handle + Zone Outpatient OR B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {b64a333b-aa36-4a33-af67-59c1477f02a5}, !- Inlet Port + {e1c4e2b9-5b92-4249-b546-9922e4c7202a}; !- Outlet Port + +OS:Connection, + {2e04d92b-a776-41a5-b318-e9b0121bac95}, !- Handle + {f4a75add-2974-4608-b392-4f5c48fd1fa0}, !- Source Object + 3, !- Outlet Port + {d27d1b16-03d2-40eb-b7ec-0706a264c717}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b64a333b-aa36-4a33-af67-59c1477f02a5}, !- Handle + {d27d1b16-03d2-40eb-b7ec-0706a264c717}, !- Source Object + 3, !- Outlet Port + {58c7cde3-f2ae-4b68-990c-35127bcc2819}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e1c4e2b9-5b92-4249-b546-9922e4c7202a}, !- Handle + {58c7cde3-f2ae-4b68-990c-35127bcc2819}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 135; !- Inlet Port + +OS:Fan:OnOff, + {783eaaf6-68d0-4bd2-9735-d0a158256ad0}, !- Handle + Zone Outpatient OR B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 1.28809423370813, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {f42b76ca-a1a7-4929-b8ad-79bc9acd9da2}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {6eb9b208-14fb-4961-adec-4cfffde4b4d8}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {f42b76ca-a1a7-4929-b8ad-79bc9acd9da2}, !- Handle + Fan On Off Power Curve 65, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {6eb9b208-14fb-4961-adec-4cfffde4b4d8}, !- Handle + Fan On Off Efficiency Curve 65, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {80d03fe8-1bc3-4a86-8bd2-06aba262f720}, !- Handle + Zone Outpatient OR B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {4814302e-9d70-4d89-8398-b4b8092b8cd0}, !- Air Inlet Node Name + {b11f16af-2b20-4909-be33-eac3b756e939}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 1.28809423370813, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 1.28809423370813, !- Supply Air Flow Rate During Heating Operation {m3/s} + 1.28809423370813, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {783eaaf6-68d0-4bd2-9735-d0a158256ad0}, !- Supply Air Fan Name + {5ec61a4c-73aa-4c62-aedb-501371332c97}, !- Heating Coil Name + {d27d1b16-03d2-40eb-b7ec-0706a264c717}, !- Cooling Coil Name + {277276cd-a666-4e82-a0a3-4db3ad45c244}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {b1cae8ae-3ec3-4375-846b-b6f6bc7f4073}, !- Handle + Zone Outpatient OR B - Story ground WSHP Inlet Air Node, !- Name + {c87768d4-ff8a-4cff-a14c-52aa089f84f1}, !- Inlet Port + {4814302e-9d70-4d89-8398-b4b8092b8cd0}; !- Outlet Port + +OS:Connection, + {c87768d4-ff8a-4cff-a14c-52aa089f84f1}, !- Handle + {9588300e-3c73-4105-b4ec-63cda8a4ad1f}, !- Source Object + 2, !- Outlet Port + {b1cae8ae-3ec3-4375-846b-b6f6bc7f4073}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4814302e-9d70-4d89-8398-b4b8092b8cd0}, !- Handle + {b1cae8ae-3ec3-4375-846b-b6f6bc7f4073}, !- Source Object + 3, !- Outlet Port + {80d03fe8-1bc3-4a86-8bd2-06aba262f720}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {28f32c57-eef6-4219-932c-5ea3b4311710}, !- Handle + Zone Outpatient OR B - Story ground WSHP Outlet Air Node, !- Name + {b11f16af-2b20-4909-be33-eac3b756e939}, !- Inlet Port + {c7b0026a-2934-4c22-a27e-1ced5c244a30}; !- Outlet Port + +OS:Connection, + {c7b0026a-2934-4c22-a27e-1ced5c244a30}, !- Handle + {28f32c57-eef6-4219-932c-5ea3b4311710}, !- Source Object + 3, !- Outlet Port + {30a4f823-d912-466e-9c7d-72ccdb9015e1}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {b11f16af-2b20-4909-be33-eac3b756e939}, !- Handle + {80d03fe8-1bc3-4a86-8bd2-06aba262f720}, !- Source Object + 4, !- Outlet Port + {28f32c57-eef6-4219-932c-5ea3b4311710}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {be000c6f-265b-48e8-94e2-be8f976d6de7}, !- Handle + Zone Outpatient OR B - Story ground 1 Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 15924.3600805746, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {f156d8e6-d707-457a-8f6b-3523fed698ce}, !- Handle + Zone Outpatient OR B - Story ground 1 Water-to-Air HP Htg Coil 396 Clg kBtu/hr 4.2COPH, !- Name + {e6da3b37-9123-4f10-b765-f5e4eba416d1}, !- Water Inlet Node Name + {32277533-d116-43ca-bbf4-faa1cacc9c59}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 11.2726010544424, !- Rated Air Flow Rate {m3/s} + 0.00249965196680903, !- Rated Water Flow Rate {m3/s} + 112988.584563318, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {67bfc695-ec93-4dfb-a6f9-eaf75c092eab}, !- Handle + Zone Outpatient OR B - Story ground 1 Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {32623089-faba-4fd5-af37-57e180658f21}, !- Inlet Port + {e6da3b37-9123-4f10-b765-f5e4eba416d1}; !- Outlet Port + +OS:Connection, + {32623089-faba-4fd5-af37-57e180658f21}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 136, !- Outlet Port + {67bfc695-ec93-4dfb-a6f9-eaf75c092eab}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {dbf7e514-1204-4e89-b0f9-6121519c40a1}, !- Handle + Zone Outpatient OR B - Story ground 1 Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {32277533-d116-43ca-bbf4-faa1cacc9c59}, !- Inlet Port + {6b5df472-8a2b-4a65-9406-561a7f8739e7}; !- Outlet Port + +OS:Connection, + {e6da3b37-9123-4f10-b765-f5e4eba416d1}, !- Handle + {67bfc695-ec93-4dfb-a6f9-eaf75c092eab}, !- Source Object + 3, !- Outlet Port + {f156d8e6-d707-457a-8f6b-3523fed698ce}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {32277533-d116-43ca-bbf4-faa1cacc9c59}, !- Handle + {f156d8e6-d707-457a-8f6b-3523fed698ce}, !- Source Object + 3, !- Outlet Port + {dbf7e514-1204-4e89-b0f9-6121519c40a1}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6b5df472-8a2b-4a65-9406-561a7f8739e7}, !- Handle + {dbf7e514-1204-4e89-b0f9-6121519c40a1}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 136; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {32a10800-78f9-4f46-aa7d-e77954381e6a}, !- Handle + Zone Outpatient OR B - Story ground 1 Water-to-Air HP Clg Coil, !- Name + {7c0eeaee-0cef-45d1-8c98-01951ec3bc6d}, !- Water Inlet Node Name + {99635e00-e09e-4a24-bf8e-19cd9d1aa529}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 11.2726010544424, !- Rated Air Flow Rate {m3/s} + 0.00249965196680903, !- Rated Water Flow Rate {m3/s} + 119317.455628798, !- Rated Total Cooling Capacity {W} + 102687.422850173, !- Rated Sensible Cooling Capacity {W} + 3.4, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {30f9605c-4af7-4b3f-870c-33c825e88a4c}, !- Handle + Zone Outpatient OR B - Story ground 1 Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {98d1c6b2-42cd-4d8c-a40b-bdd57a17834d}, !- Inlet Port + {7c0eeaee-0cef-45d1-8c98-01951ec3bc6d}; !- Outlet Port + +OS:Connection, + {98d1c6b2-42cd-4d8c-a40b-bdd57a17834d}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 137, !- Outlet Port + {30f9605c-4af7-4b3f-870c-33c825e88a4c}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {9ffcbe1e-bad2-4c8a-bd84-140e1c06ca22}, !- Handle + Zone Outpatient OR B - Story ground 1 Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {99635e00-e09e-4a24-bf8e-19cd9d1aa529}, !- Inlet Port + {99d69577-7806-4e73-a1a9-81c0b224de5e}; !- Outlet Port + +OS:Connection, + {7c0eeaee-0cef-45d1-8c98-01951ec3bc6d}, !- Handle + {30f9605c-4af7-4b3f-870c-33c825e88a4c}, !- Source Object + 3, !- Outlet Port + {32a10800-78f9-4f46-aa7d-e77954381e6a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {99635e00-e09e-4a24-bf8e-19cd9d1aa529}, !- Handle + {32a10800-78f9-4f46-aa7d-e77954381e6a}, !- Source Object + 3, !- Outlet Port + {9ffcbe1e-bad2-4c8a-bd84-140e1c06ca22}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {99d69577-7806-4e73-a1a9-81c0b224de5e}, !- Handle + {9ffcbe1e-bad2-4c8a-bd84-140e1c06ca22}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 137; !- Inlet Port + +OS:Fan:OnOff, + {4295bfd8-36cc-499f-81cc-ef90215c497a}, !- Handle + Zone Outpatient OR B - Story ground 1 WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 11.2726010544424, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {73bd0a19-1cb3-4cdd-9e83-cbe1639d385c}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {ab993957-9b76-4b29-98d7-909af12fbc48}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {73bd0a19-1cb3-4cdd-9e83-cbe1639d385c}, !- Handle + Fan On Off Power Curve 66, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {ab993957-9b76-4b29-98d7-909af12fbc48}, !- Handle + Fan On Off Efficiency Curve 66, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {1f181dcb-c8a1-49e5-883a-1b2013ffade4}, !- Handle + Zone Outpatient OR B - Story ground 1 WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {1c913323-1a45-43d1-89b8-5bd54c053e85}, !- Air Inlet Node Name + {f14ee76a-e854-417d-b202-f876c20e8669}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 11.2726010544424, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 11.2726010544424, !- Supply Air Flow Rate During Heating Operation {m3/s} + 11.2726010544424, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {4295bfd8-36cc-499f-81cc-ef90215c497a}, !- Supply Air Fan Name + {f156d8e6-d707-457a-8f6b-3523fed698ce}, !- Heating Coil Name + {32a10800-78f9-4f46-aa7d-e77954381e6a}, !- Cooling Coil Name + {be000c6f-265b-48e8-94e2-be8f976d6de7}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {60f0d7d2-4d5e-434c-9c7c-a6b187b9e7f6}, !- Handle + Zone Outpatient OR B - Story ground 1 WSHP Inlet Air Node, !- Name + {0e8f1dfd-f5c4-4f1b-9008-896f13261ce0}, !- Inlet Port + {1c913323-1a45-43d1-89b8-5bd54c053e85}; !- Outlet Port + +OS:Connection, + {0e8f1dfd-f5c4-4f1b-9008-896f13261ce0}, !- Handle + {aced4f06-306e-498e-b211-35007ecbee02}, !- Source Object + 2, !- Outlet Port + {60f0d7d2-4d5e-434c-9c7c-a6b187b9e7f6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1c913323-1a45-43d1-89b8-5bd54c053e85}, !- Handle + {60f0d7d2-4d5e-434c-9c7c-a6b187b9e7f6}, !- Source Object + 3, !- Outlet Port + {1f181dcb-c8a1-49e5-883a-1b2013ffade4}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {dead8ada-44f2-410d-9b40-c4a06a7f7335}, !- Handle + Zone Outpatient OR B - Story ground 1 WSHP Outlet Air Node, !- Name + {f14ee76a-e854-417d-b202-f876c20e8669}, !- Inlet Port + {7d768ecd-f18b-400a-af63-db6e13c46338}; !- Outlet Port + +OS:Connection, + {7d768ecd-f18b-400a-af63-db6e13c46338}, !- Handle + {dead8ada-44f2-410d-9b40-c4a06a7f7335}, !- Source Object + 3, !- Outlet Port + {f95071d7-05cf-4f22-bc3e-81351f5709fd}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {f14ee76a-e854-417d-b202-f876c20e8669}, !- Handle + {1f181dcb-c8a1-49e5-883a-1b2013ffade4}, !- Source Object + 4, !- Outlet Port + {dead8ada-44f2-410d-9b40-c4a06a7f7335}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {b265dae5-1e3a-4dcd-898a-085286b62c9c}, !- Handle + Zone Outpatient OR C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 298.280805820603, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {aa9199eb-0414-4efe-82bf-ff3b491da809}, !- Handle + Zone Outpatient OR C - Story ground Water-to-Air HP Htg Coil 6 Clg kBtu/hr 4.2COPH, !- Name + {ef1a6bc5-e580-4de0-85cf-7e913e0d25d7}, !- Water Inlet Node Name + {aba6bec1-e985-4df1-b4a1-e7566f2db128}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.201854192147795, !- Rated Air Flow Rate {m3/s} + 4.271141990008e-05, !- Rated Water Flow Rate {m3/s} + 1930.62992099662, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {eb8d1a31-40b2-48cf-b889-27df56c471bb}, !- Handle + Zone Outpatient OR C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {b33d5d05-d5f5-42e9-a619-93b014e4a15f}, !- Inlet Port + {ef1a6bc5-e580-4de0-85cf-7e913e0d25d7}; !- Outlet Port + +OS:Connection, + {b33d5d05-d5f5-42e9-a619-93b014e4a15f}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 138, !- Outlet Port + {eb8d1a31-40b2-48cf-b889-27df56c471bb}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {a5564012-20bf-43f6-ae3b-fd3645223167}, !- Handle + Zone Outpatient OR C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {aba6bec1-e985-4df1-b4a1-e7566f2db128}, !- Inlet Port + {1a3ef528-f051-42a8-9a2b-1b8eae6b7f13}; !- Outlet Port + +OS:Connection, + {ef1a6bc5-e580-4de0-85cf-7e913e0d25d7}, !- Handle + {eb8d1a31-40b2-48cf-b889-27df56c471bb}, !- Source Object + 3, !- Outlet Port + {aa9199eb-0414-4efe-82bf-ff3b491da809}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {aba6bec1-e985-4df1-b4a1-e7566f2db128}, !- Handle + {aa9199eb-0414-4efe-82bf-ff3b491da809}, !- Source Object + 3, !- Outlet Port + {a5564012-20bf-43f6-ae3b-fd3645223167}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1a3ef528-f051-42a8-9a2b-1b8eae6b7f13}, !- Handle + {a5564012-20bf-43f6-ae3b-fd3645223167}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 138; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {e504af3b-9b46-4ae7-93d2-0d9e68bb9848}, !- Handle + Zone Outpatient OR C - Story ground Water-to-Air HP Clg Coil 6kBtu/hr 11.2EER, !- Name + {a8348eac-e4ff-4328-9952-53ea4ec0c307}, !- Water Inlet Node Name + {3a7108b7-c75a-40da-b8b3-e42446ac4764}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.201854192147795, !- Rated Air Flow Rate {m3/s} + 4.271141990008e-05, !- Rated Water Flow Rate {m3/s} + 2038.7710034995, !- Rated Total Cooling Capacity {W} + 1814.27816286672, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {63d874f6-ebdd-41fc-b2f0-433c91ab84d8}, !- Handle + Zone Outpatient OR C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {3ef1a4bd-67b0-453d-8a98-0c81b1fcb475}, !- Inlet Port + {a8348eac-e4ff-4328-9952-53ea4ec0c307}; !- Outlet Port + +OS:Connection, + {3ef1a4bd-67b0-453d-8a98-0c81b1fcb475}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 139, !- Outlet Port + {63d874f6-ebdd-41fc-b2f0-433c91ab84d8}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {5750fdb2-fa21-4a4f-8a4a-b682f54c5b59}, !- Handle + Zone Outpatient OR C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {3a7108b7-c75a-40da-b8b3-e42446ac4764}, !- Inlet Port + {8fd237b0-77cd-4d99-8b14-5ee57346b511}; !- Outlet Port + +OS:Connection, + {a8348eac-e4ff-4328-9952-53ea4ec0c307}, !- Handle + {63d874f6-ebdd-41fc-b2f0-433c91ab84d8}, !- Source Object + 3, !- Outlet Port + {e504af3b-9b46-4ae7-93d2-0d9e68bb9848}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3a7108b7-c75a-40da-b8b3-e42446ac4764}, !- Handle + {e504af3b-9b46-4ae7-93d2-0d9e68bb9848}, !- Source Object + 3, !- Outlet Port + {5750fdb2-fa21-4a4f-8a4a-b682f54c5b59}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8fd237b0-77cd-4d99-8b14-5ee57346b511}, !- Handle + {5750fdb2-fa21-4a4f-8a4a-b682f54c5b59}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 139; !- Inlet Port + +OS:Fan:OnOff, + {060cd7a6-a697-4315-bf34-d982b5851077}, !- Handle + Zone Outpatient OR C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.201854192147795, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {7086e715-884b-41cb-9cb7-9e03e964b2fc}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {7800e0ef-2336-4bf1-b175-a514d7653266}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {7086e715-884b-41cb-9cb7-9e03e964b2fc}, !- Handle + Fan On Off Power Curve 67, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {7800e0ef-2336-4bf1-b175-a514d7653266}, !- Handle + Fan On Off Efficiency Curve 67, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {232aa8f9-f266-4889-bf13-29b746d37752}, !- Handle + Zone Outpatient OR C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {b0b6366a-2483-4756-81c3-5de5e60b9ed1}, !- Air Inlet Node Name + {215c6b84-5083-4624-a7ef-8ad87f6b1de3}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.201854192147795, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.201854192147795, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.201854192147795, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {060cd7a6-a697-4315-bf34-d982b5851077}, !- Supply Air Fan Name + {aa9199eb-0414-4efe-82bf-ff3b491da809}, !- Heating Coil Name + {e504af3b-9b46-4ae7-93d2-0d9e68bb9848}, !- Cooling Coil Name + {b265dae5-1e3a-4dcd-898a-085286b62c9c}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {dc7dbdbe-8709-441d-b022-0c2b1eec52cd}, !- Handle + Zone Outpatient OR C - Story ground WSHP Inlet Air Node, !- Name + {4e2ef394-6cf5-4af9-97b5-4ddd8b8de978}, !- Inlet Port + {b0b6366a-2483-4756-81c3-5de5e60b9ed1}; !- Outlet Port + +OS:Connection, + {4e2ef394-6cf5-4af9-97b5-4ddd8b8de978}, !- Handle + {a2c17bbd-4db3-4f23-9e56-420f80b5b998}, !- Source Object + 2, !- Outlet Port + {dc7dbdbe-8709-441d-b022-0c2b1eec52cd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b0b6366a-2483-4756-81c3-5de5e60b9ed1}, !- Handle + {dc7dbdbe-8709-441d-b022-0c2b1eec52cd}, !- Source Object + 3, !- Outlet Port + {232aa8f9-f266-4889-bf13-29b746d37752}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {a55de521-c7d3-458e-99bf-9be4120b7538}, !- Handle + Zone Outpatient OR C - Story ground WSHP Outlet Air Node, !- Name + {215c6b84-5083-4624-a7ef-8ad87f6b1de3}, !- Inlet Port + {73935a12-ec90-4a52-820a-243de7a383ad}; !- Outlet Port + +OS:Connection, + {73935a12-ec90-4a52-820a-243de7a383ad}, !- Handle + {a55de521-c7d3-458e-99bf-9be4120b7538}, !- Source Object + 3, !- Outlet Port + {418a614e-4d68-4e72-8c71-1b6c534b9a09}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {215c6b84-5083-4624-a7ef-8ad87f6b1de3}, !- Handle + {232aa8f9-f266-4889-bf13-29b746d37752}, !- Source Object + 4, !- Outlet Port + {a55de521-c7d3-458e-99bf-9be4120b7538}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {4114bb94-be7c-4d95-be0f-11c8b17f16d3}, !- Handle + Zone Outpatient OR C - Story ground 1 Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 2008.33648967187, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {cee6f863-0b07-4efb-bdff-23fdafbbdb93}, !- Handle + Zone Outpatient OR C - Story ground 1 Water-to-Air HP Htg Coil 50 Clg kBtu/hr 4.2COPH, !- Name + {534655c7-4d53-4460-b27e-6919cf930fe8}, !- Water Inlet Node Name + {3c878537-4384-4ec8-85f6-4b309950b005}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 1.43286768213113, !- Rated Air Flow Rate {m3/s} + 0.000316629484454241, !- Rated Water Flow Rate {m3/s} + 14312.1993599644, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {da0a80fc-dac5-4fc1-8e44-b363118b203b}, !- Handle + Zone Outpatient OR C - Story ground 1 Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {be59c1ee-4481-4216-ad8a-b5520f453cf8}, !- Inlet Port + {534655c7-4d53-4460-b27e-6919cf930fe8}; !- Outlet Port + +OS:Connection, + {be59c1ee-4481-4216-ad8a-b5520f453cf8}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 140, !- Outlet Port + {da0a80fc-dac5-4fc1-8e44-b363118b203b}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {5c4d0bc5-f4c3-486f-b0ad-7b9453b518f9}, !- Handle + Zone Outpatient OR C - Story ground 1 Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {3c878537-4384-4ec8-85f6-4b309950b005}, !- Inlet Port + {4a60629f-1110-4606-8d27-2182e700f47f}; !- Outlet Port + +OS:Connection, + {534655c7-4d53-4460-b27e-6919cf930fe8}, !- Handle + {da0a80fc-dac5-4fc1-8e44-b363118b203b}, !- Source Object + 3, !- Outlet Port + {cee6f863-0b07-4efb-bdff-23fdafbbdb93}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3c878537-4384-4ec8-85f6-4b309950b005}, !- Handle + {cee6f863-0b07-4efb-bdff-23fdafbbdb93}, !- Source Object + 3, !- Outlet Port + {5c4d0bc5-f4c3-486f-b0ad-7b9453b518f9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4a60629f-1110-4606-8d27-2182e700f47f}, !- Handle + {5c4d0bc5-f4c3-486f-b0ad-7b9453b518f9}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 140; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {6561ac37-8f67-47ec-8a9d-0ef666c4d118}, !- Handle + Zone Outpatient OR C - Story ground 1 Water-to-Air HP Clg Coil 50kBtu/hr 12.0EER, !- Name + {a0ed174a-6dfd-4505-9ce2-5f0ff50014ff}, !- Water Inlet Node Name + {067fbfc2-b456-48de-b38d-48b1b8df5164}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 1.43286768213113, !- Rated Air Flow Rate {m3/s} + 0.000316629484454241, !- Rated Water Flow Rate {m3/s} + 15113.8738367509, !- Rated Total Cooling Capacity {W} + 13039.1982793337, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {c50a09ba-acf0-4a7c-a52f-bdc2ffe4f681}, !- Handle + Zone Outpatient OR C - Story ground 1 Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {d45d343b-ed08-47c3-9694-3a9a35324516}, !- Inlet Port + {a0ed174a-6dfd-4505-9ce2-5f0ff50014ff}; !- Outlet Port + +OS:Connection, + {d45d343b-ed08-47c3-9694-3a9a35324516}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 141, !- Outlet Port + {c50a09ba-acf0-4a7c-a52f-bdc2ffe4f681}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {5d5c7ce4-15fd-40e8-a0fc-0939dac6d23e}, !- Handle + Zone Outpatient OR C - Story ground 1 Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {067fbfc2-b456-48de-b38d-48b1b8df5164}, !- Inlet Port + {6a5fc93b-146b-471e-814f-09f656a14eec}; !- Outlet Port + +OS:Connection, + {a0ed174a-6dfd-4505-9ce2-5f0ff50014ff}, !- Handle + {c50a09ba-acf0-4a7c-a52f-bdc2ffe4f681}, !- Source Object + 3, !- Outlet Port + {6561ac37-8f67-47ec-8a9d-0ef666c4d118}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {067fbfc2-b456-48de-b38d-48b1b8df5164}, !- Handle + {6561ac37-8f67-47ec-8a9d-0ef666c4d118}, !- Source Object + 3, !- Outlet Port + {5d5c7ce4-15fd-40e8-a0fc-0939dac6d23e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6a5fc93b-146b-471e-814f-09f656a14eec}, !- Handle + {5d5c7ce4-15fd-40e8-a0fc-0939dac6d23e}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 141; !- Inlet Port + +OS:Fan:OnOff, + {bafb9ab1-1b8c-4e68-8ecb-7317f0214948}, !- Handle + Zone Outpatient OR C - Story ground 1 WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 1.43286768213113, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {cc945794-5654-40b9-89b0-974cb176ffff}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {924e324b-a79d-43f8-bf33-1be753e5b4e5}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {cc945794-5654-40b9-89b0-974cb176ffff}, !- Handle + Fan On Off Power Curve 68, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {924e324b-a79d-43f8-bf33-1be753e5b4e5}, !- Handle + Fan On Off Efficiency Curve 68, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {811b1edd-f06d-4bd9-b5b8-c594be86b226}, !- Handle + Zone Outpatient OR C - Story ground 1 WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {738d2bb0-2787-4ee1-a92f-3734dd2af98b}, !- Air Inlet Node Name + {4ea6ade3-da5f-4a50-a87e-35e361d0af30}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 1.43286768213113, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 1.43286768213113, !- Supply Air Flow Rate During Heating Operation {m3/s} + 1.43286768213113, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {bafb9ab1-1b8c-4e68-8ecb-7317f0214948}, !- Supply Air Fan Name + {cee6f863-0b07-4efb-bdff-23fdafbbdb93}, !- Heating Coil Name + {6561ac37-8f67-47ec-8a9d-0ef666c4d118}, !- Cooling Coil Name + {4114bb94-be7c-4d95-be0f-11c8b17f16d3}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {a31fb220-11ff-4885-8c9d-6b48e92fca84}, !- Handle + Zone Outpatient OR C - Story ground 1 WSHP Inlet Air Node, !- Name + {b54b2b83-9753-4173-a163-ddd468d9656a}, !- Inlet Port + {738d2bb0-2787-4ee1-a92f-3734dd2af98b}; !- Outlet Port + +OS:Connection, + {b54b2b83-9753-4173-a163-ddd468d9656a}, !- Handle + {25317570-96cf-4151-bb58-f87d343e7f81}, !- Source Object + 2, !- Outlet Port + {a31fb220-11ff-4885-8c9d-6b48e92fca84}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {738d2bb0-2787-4ee1-a92f-3734dd2af98b}, !- Handle + {a31fb220-11ff-4885-8c9d-6b48e92fca84}, !- Source Object + 3, !- Outlet Port + {811b1edd-f06d-4bd9-b5b8-c594be86b226}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {fa6843bc-dd3d-4b9a-a55c-93f87668c167}, !- Handle + Zone Outpatient OR C - Story ground 1 WSHP Outlet Air Node, !- Name + {4ea6ade3-da5f-4a50-a87e-35e361d0af30}, !- Inlet Port + {afaae745-f63f-4b3e-a8f0-100f64cc0464}; !- Outlet Port + +OS:Connection, + {afaae745-f63f-4b3e-a8f0-100f64cc0464}, !- Handle + {fa6843bc-dd3d-4b9a-a55c-93f87668c167}, !- Source Object + 3, !- Outlet Port + {5fa30f46-41ec-4886-87bc-8c22a731dd00}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {4ea6ade3-da5f-4a50-a87e-35e361d0af30}, !- Handle + {811b1edd-f06d-4bd9-b5b8-c594be86b226}, !- Source Object + 4, !- Outlet Port + {fa6843bc-dd3d-4b9a-a55c-93f87668c167}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {09ee0ec5-1f4b-4362-a952-28ed30d35912}, !- Handle + Zone Outpatient PACU A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 1378.422255764, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {90c70829-9f51-4a3b-a2b7-4686c1750a73}, !- Handle + Zone Outpatient PACU A - Story ground Water-to-Air HP Htg Coil 12 Clg kBtu/hr 4.2COPH, !- Name + {842e4a63-fe3a-48c8-87f4-e9aaeffbd362}, !- Water Inlet Node Name + {01f0d828-2021-4121-913a-9658daa7078c}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.180451928488325, !- Rated Air Flow Rate {m3/s} + 7.11470686181432e-05, !- Rated Water Flow Rate {m3/s} + 3215.97033736473, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {30ab6b78-cd6f-4794-a155-dd4cc8bfb659}, !- Handle + Zone Outpatient PACU A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {95999ee5-e202-4608-bfd4-1140d895cae0}, !- Inlet Port + {842e4a63-fe3a-48c8-87f4-e9aaeffbd362}; !- Outlet Port + +OS:Connection, + {95999ee5-e202-4608-bfd4-1140d895cae0}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 142, !- Outlet Port + {30ab6b78-cd6f-4794-a155-dd4cc8bfb659}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {de2b14c4-9b06-4d89-baf9-5ce929b39506}, !- Handle + Zone Outpatient PACU A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {01f0d828-2021-4121-913a-9658daa7078c}, !- Inlet Port + {a56b03c0-e1ae-4c32-a8ee-1a819a8428ed}; !- Outlet Port + +OS:Connection, + {842e4a63-fe3a-48c8-87f4-e9aaeffbd362}, !- Handle + {30ab6b78-cd6f-4794-a155-dd4cc8bfb659}, !- Source Object + 3, !- Outlet Port + {90c70829-9f51-4a3b-a2b7-4686c1750a73}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {01f0d828-2021-4121-913a-9658daa7078c}, !- Handle + {90c70829-9f51-4a3b-a2b7-4686c1750a73}, !- Source Object + 3, !- Outlet Port + {de2b14c4-9b06-4d89-baf9-5ce929b39506}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a56b03c0-e1ae-4c32-a8ee-1a819a8428ed}, !- Handle + {de2b14c4-9b06-4d89-baf9-5ce929b39506}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 142; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {931a1a03-acb8-437c-bd9c-d315d6f7e538}, !- Handle + Zone Outpatient PACU A - Story ground Water-to-Air HP Clg Coil 12kBtu/hr 11.2EER, !- Name + {cf72178c-cf30-4da9-9611-0be550810fd3}, !- Water Inlet Node Name + {bdf8cf6a-11bb-443c-8957-d66d8a9de316}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.180451928488325, !- Rated Air Flow Rate {m3/s} + 7.11470686181432e-05, !- Rated Water Flow Rate {m3/s} + 3396.10766446066, !- Rated Total Cooling Capacity {W} + 2385.073006308, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {7f283d1c-f684-4839-944c-eaf1f0d2af56}, !- Handle + Zone Outpatient PACU A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {f85adb51-6b8b-4d6f-b06e-de7f4b25aeb2}, !- Inlet Port + {cf72178c-cf30-4da9-9611-0be550810fd3}; !- Outlet Port + +OS:Connection, + {f85adb51-6b8b-4d6f-b06e-de7f4b25aeb2}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 143, !- Outlet Port + {7f283d1c-f684-4839-944c-eaf1f0d2af56}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {a1e672d3-1b2d-4b6c-9b83-c708cdd70f4a}, !- Handle + Zone Outpatient PACU A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {bdf8cf6a-11bb-443c-8957-d66d8a9de316}, !- Inlet Port + {1027bb32-a64d-4385-a414-951d21369c4f}; !- Outlet Port + +OS:Connection, + {cf72178c-cf30-4da9-9611-0be550810fd3}, !- Handle + {7f283d1c-f684-4839-944c-eaf1f0d2af56}, !- Source Object + 3, !- Outlet Port + {931a1a03-acb8-437c-bd9c-d315d6f7e538}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bdf8cf6a-11bb-443c-8957-d66d8a9de316}, !- Handle + {931a1a03-acb8-437c-bd9c-d315d6f7e538}, !- Source Object + 3, !- Outlet Port + {a1e672d3-1b2d-4b6c-9b83-c708cdd70f4a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1027bb32-a64d-4385-a414-951d21369c4f}, !- Handle + {a1e672d3-1b2d-4b6c-9b83-c708cdd70f4a}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 143; !- Inlet Port + +OS:Fan:OnOff, + {4b4ff0d9-98f3-4079-ba35-641c2a00c034}, !- Handle + Zone Outpatient PACU A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.180451928488325, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {694f81d4-e9cb-4811-ab8f-150010cb7eb4}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {4b8c2236-8ee1-4083-998d-a213d51ceeb6}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {694f81d4-e9cb-4811-ab8f-150010cb7eb4}, !- Handle + Fan On Off Power Curve 69, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {4b8c2236-8ee1-4083-998d-a213d51ceeb6}, !- Handle + Fan On Off Efficiency Curve 69, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {a3b73039-6f60-4dfe-9d0a-e2c6b9d9f53a}, !- Handle + Zone Outpatient PACU A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {f6e97b64-2add-4b2a-945f-652659bacdc1}, !- Air Inlet Node Name + {e32c29e5-e673-46f6-8b01-e5de396594ac}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.180451928488325, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.180451928488325, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.180451928488325, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {4b4ff0d9-98f3-4079-ba35-641c2a00c034}, !- Supply Air Fan Name + {90c70829-9f51-4a3b-a2b7-4686c1750a73}, !- Heating Coil Name + {931a1a03-acb8-437c-bd9c-d315d6f7e538}, !- Cooling Coil Name + {09ee0ec5-1f4b-4362-a952-28ed30d35912}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {fe22d57b-bc3f-4b04-b4c8-a436fb3afdb0}, !- Handle + Zone Outpatient PACU A - Story ground WSHP Inlet Air Node, !- Name + {7d381938-7627-447a-9c6d-c96daf92e789}, !- Inlet Port + {f6e97b64-2add-4b2a-945f-652659bacdc1}; !- Outlet Port + +OS:Connection, + {7d381938-7627-447a-9c6d-c96daf92e789}, !- Handle + {9794e398-72ad-40a7-a6e4-8b3fdff62383}, !- Source Object + 2, !- Outlet Port + {fe22d57b-bc3f-4b04-b4c8-a436fb3afdb0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f6e97b64-2add-4b2a-945f-652659bacdc1}, !- Handle + {fe22d57b-bc3f-4b04-b4c8-a436fb3afdb0}, !- Source Object + 3, !- Outlet Port + {a3b73039-6f60-4dfe-9d0a-e2c6b9d9f53a}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {8148dc34-f358-4c3d-8828-fea36f74a1cd}, !- Handle + Zone Outpatient PACU A - Story ground WSHP Outlet Air Node, !- Name + {e32c29e5-e673-46f6-8b01-e5de396594ac}, !- Inlet Port + {32f3aaef-a4a3-48fc-b819-7b09ab3d72cb}; !- Outlet Port + +OS:Connection, + {32f3aaef-a4a3-48fc-b819-7b09ab3d72cb}, !- Handle + {8148dc34-f358-4c3d-8828-fea36f74a1cd}, !- Source Object + 3, !- Outlet Port + {0d896ef0-9a49-4793-9373-955dd8a83a46}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {e32c29e5-e673-46f6-8b01-e5de396594ac}, !- Handle + {a3b73039-6f60-4dfe-9d0a-e2c6b9d9f53a}, !- Source Object + 4, !- Outlet Port + {8148dc34-f358-4c3d-8828-fea36f74a1cd}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {16c7947c-6ff4-459c-abe0-891aa5361ed8}, !- Handle + Zone Outpatient PACU B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 10361.6684035373, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {057608e3-1f85-4880-9d25-4fdb9b490b85}, !- Handle + Zone Outpatient PACU B - Story ground Water-to-Air HP Htg Coil 94 Clg kBtu/hr 4.2COPH, !- Name + {c0422483-09be-4d52-aa95-22767e71e372}, !- Water Inlet Node Name + {ce325c48-306b-4a1d-b0c9-cd42071da70a}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 1.43338526755638, !- Rated Air Flow Rate {m3/s} + 0.000567481504823413, !- Rated Water Flow Rate {m3/s} + 25651.1437781121, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {59e1f40e-88b4-4fff-b954-fc4cb6ce7d6c}, !- Handle + Zone Outpatient PACU B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {1fc5f957-018a-48c1-9c04-f044ddb5ebad}, !- Inlet Port + {c0422483-09be-4d52-aa95-22767e71e372}; !- Outlet Port + +OS:Connection, + {1fc5f957-018a-48c1-9c04-f044ddb5ebad}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 144, !- Outlet Port + {59e1f40e-88b4-4fff-b954-fc4cb6ce7d6c}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {ef964b00-9f31-44e7-b982-e89b46857929}, !- Handle + Zone Outpatient PACU B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {ce325c48-306b-4a1d-b0c9-cd42071da70a}, !- Inlet Port + {0b25ceb1-3142-4b66-99d0-e9177260318a}; !- Outlet Port + +OS:Connection, + {c0422483-09be-4d52-aa95-22767e71e372}, !- Handle + {59e1f40e-88b4-4fff-b954-fc4cb6ce7d6c}, !- Source Object + 3, !- Outlet Port + {057608e3-1f85-4880-9d25-4fdb9b490b85}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ce325c48-306b-4a1d-b0c9-cd42071da70a}, !- Handle + {057608e3-1f85-4880-9d25-4fdb9b490b85}, !- Source Object + 3, !- Outlet Port + {ef964b00-9f31-44e7-b982-e89b46857929}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0b25ceb1-3142-4b66-99d0-e9177260318a}, !- Handle + {ef964b00-9f31-44e7-b982-e89b46857929}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 144; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {1bc09201-e1ea-42b5-8d81-37c66cb95f5d}, !- Handle + Zone Outpatient PACU B - Story ground Water-to-Air HP Clg Coil 94kBtu/hr 12.0EER, !- Name + {d8422e65-2c66-4ddf-9ee3-1a55088b62ee}, !- Water Inlet Node Name + {702586ef-8c13-497c-9eed-9f7e9663a89e}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 1.43338526755638, !- Rated Air Flow Rate {m3/s} + 0.000567481504823413, !- Rated Water Flow Rate {m3/s} + 27087.9507111414, !- Rated Total Cooling Capacity {W} + 18987.3735741709, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {dcf5fd42-99b1-4a9b-b22b-3adb876b6fdb}, !- Handle + Zone Outpatient PACU B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {3603db45-b0cd-49a8-b5ab-555089f46365}, !- Inlet Port + {d8422e65-2c66-4ddf-9ee3-1a55088b62ee}; !- Outlet Port + +OS:Connection, + {3603db45-b0cd-49a8-b5ab-555089f46365}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 145, !- Outlet Port + {dcf5fd42-99b1-4a9b-b22b-3adb876b6fdb}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {7fa819b7-62c1-42b7-80cc-25ea11975e43}, !- Handle + Zone Outpatient PACU B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {702586ef-8c13-497c-9eed-9f7e9663a89e}, !- Inlet Port + {ae00b50a-11e1-464f-93fb-0aa38adebc39}; !- Outlet Port + +OS:Connection, + {d8422e65-2c66-4ddf-9ee3-1a55088b62ee}, !- Handle + {dcf5fd42-99b1-4a9b-b22b-3adb876b6fdb}, !- Source Object + 3, !- Outlet Port + {1bc09201-e1ea-42b5-8d81-37c66cb95f5d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {702586ef-8c13-497c-9eed-9f7e9663a89e}, !- Handle + {1bc09201-e1ea-42b5-8d81-37c66cb95f5d}, !- Source Object + 3, !- Outlet Port + {7fa819b7-62c1-42b7-80cc-25ea11975e43}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ae00b50a-11e1-464f-93fb-0aa38adebc39}, !- Handle + {7fa819b7-62c1-42b7-80cc-25ea11975e43}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 145; !- Inlet Port + +OS:Fan:OnOff, + {788b3f30-5a59-4ee6-a9f9-b09a12cc8499}, !- Handle + Zone Outpatient PACU B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 1.43338526755638, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {c97ec115-e0cd-4ee2-8cec-dc3093720063}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {e0bf10ea-ce60-4a26-a120-e2c1e6266eff}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {c97ec115-e0cd-4ee2-8cec-dc3093720063}, !- Handle + Fan On Off Power Curve 70, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {e0bf10ea-ce60-4a26-a120-e2c1e6266eff}, !- Handle + Fan On Off Efficiency Curve 70, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {979feccc-0b1b-425e-9736-b40388b31087}, !- Handle + Zone Outpatient PACU B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {8fb32b87-9275-4ef5-98a6-b3e587746b7a}, !- Air Inlet Node Name + {72ee115c-a2f1-4b68-a520-5efae8a8eb95}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 1.43338526755638, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 1.43338526755638, !- Supply Air Flow Rate During Heating Operation {m3/s} + 1.43338526755638, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {788b3f30-5a59-4ee6-a9f9-b09a12cc8499}, !- Supply Air Fan Name + {057608e3-1f85-4880-9d25-4fdb9b490b85}, !- Heating Coil Name + {1bc09201-e1ea-42b5-8d81-37c66cb95f5d}, !- Cooling Coil Name + {16c7947c-6ff4-459c-abe0-891aa5361ed8}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {eadcf06f-c5cd-4f35-a322-0b3be289a71d}, !- Handle + Zone Outpatient PACU B - Story ground WSHP Inlet Air Node, !- Name + {f6b5e7c8-3b25-425f-9cc6-5320c6779ffd}, !- Inlet Port + {8fb32b87-9275-4ef5-98a6-b3e587746b7a}; !- Outlet Port + +OS:Connection, + {f6b5e7c8-3b25-425f-9cc6-5320c6779ffd}, !- Handle + {d275d732-8e90-4ade-abb7-a85fca28855d}, !- Source Object + 2, !- Outlet Port + {eadcf06f-c5cd-4f35-a322-0b3be289a71d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8fb32b87-9275-4ef5-98a6-b3e587746b7a}, !- Handle + {eadcf06f-c5cd-4f35-a322-0b3be289a71d}, !- Source Object + 3, !- Outlet Port + {979feccc-0b1b-425e-9736-b40388b31087}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {2c255d42-0e0c-435a-8f5d-a4daebaa9f71}, !- Handle + Zone Outpatient PACU B - Story ground WSHP Outlet Air Node, !- Name + {72ee115c-a2f1-4b68-a520-5efae8a8eb95}, !- Inlet Port + {7c70c7c9-d036-4493-bae0-2d08ec61e540}; !- Outlet Port + +OS:Connection, + {7c70c7c9-d036-4493-bae0-2d08ec61e540}, !- Handle + {2c255d42-0e0c-435a-8f5d-a4daebaa9f71}, !- Source Object + 3, !- Outlet Port + {7adce419-80a1-4c73-bf4a-df76b9234a03}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {72ee115c-a2f1-4b68-a520-5efae8a8eb95}, !- Handle + {979feccc-0b1b-425e-9736-b40388b31087}, !- Source Object + 4, !- Outlet Port + {2c255d42-0e0c-435a-8f5d-a4daebaa9f71}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {c3bb049d-56c7-4b13-90bc-53b2233d0eb4}, !- Handle + Zone Outpatient PACU C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 1378.42225576354, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {5dcfba4f-6c09-476b-8011-ce62b075963c}, !- Handle + Zone Outpatient PACU C - Story ground Water-to-Air HP Htg Coil 12 Clg kBtu/hr 4.2COPH, !- Name + {67329d67-958c-4ae4-b55f-baa50d70daea}, !- Water Inlet Node Name + {ae660476-bb6b-48ce-ac2a-77701fd9b183}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.180451928488266, !- Rated Air Flow Rate {m3/s} + 7.11470686181247e-05, !- Rated Water Flow Rate {m3/s} + 3215.9703373639, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {54d70fb7-4a6a-444f-baeb-040851660bda}, !- Handle + Zone Outpatient PACU C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {ba264d28-a4ab-43bb-98d8-115042cdf7f8}, !- Inlet Port + {67329d67-958c-4ae4-b55f-baa50d70daea}; !- Outlet Port + +OS:Connection, + {ba264d28-a4ab-43bb-98d8-115042cdf7f8}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 146, !- Outlet Port + {54d70fb7-4a6a-444f-baeb-040851660bda}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {60f7d333-05ce-45e9-b224-97be49859aa9}, !- Handle + Zone Outpatient PACU C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {ae660476-bb6b-48ce-ac2a-77701fd9b183}, !- Inlet Port + {7345d30f-ca40-4cff-a20e-f0aa5fbd9791}; !- Outlet Port + +OS:Connection, + {67329d67-958c-4ae4-b55f-baa50d70daea}, !- Handle + {54d70fb7-4a6a-444f-baeb-040851660bda}, !- Source Object + 3, !- Outlet Port + {5dcfba4f-6c09-476b-8011-ce62b075963c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ae660476-bb6b-48ce-ac2a-77701fd9b183}, !- Handle + {5dcfba4f-6c09-476b-8011-ce62b075963c}, !- Source Object + 3, !- Outlet Port + {60f7d333-05ce-45e9-b224-97be49859aa9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7345d30f-ca40-4cff-a20e-f0aa5fbd9791}, !- Handle + {60f7d333-05ce-45e9-b224-97be49859aa9}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 146; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {cf6384d3-b7c9-4cd2-9ab6-d7110e67230c}, !- Handle + Zone Outpatient PACU C - Story ground Water-to-Air HP Clg Coil 12kBtu/hr 11.2EER, !- Name + {5cca9ffd-23f8-4440-9e87-34e49add15a7}, !- Water Inlet Node Name + {281cc21f-a39b-4dd5-8754-ca3ef5b985ea}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.180451928488266, !- Rated Air Flow Rate {m3/s} + 7.11470686181247e-05, !- Rated Water Flow Rate {m3/s} + 3396.10766445978, !- Rated Total Cooling Capacity {W} + 2385.07300630723, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {cb817d3c-2a05-44e5-9f8c-4e79fa953355}, !- Handle + Zone Outpatient PACU C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {74196b0b-8443-404c-88ea-7607100385bb}, !- Inlet Port + {5cca9ffd-23f8-4440-9e87-34e49add15a7}; !- Outlet Port + +OS:Connection, + {74196b0b-8443-404c-88ea-7607100385bb}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 147, !- Outlet Port + {cb817d3c-2a05-44e5-9f8c-4e79fa953355}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {d934c43b-957c-4dab-a2c7-de648d387009}, !- Handle + Zone Outpatient PACU C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {281cc21f-a39b-4dd5-8754-ca3ef5b985ea}, !- Inlet Port + {7feec148-1a0f-41d0-9650-8f603a686a34}; !- Outlet Port + +OS:Connection, + {5cca9ffd-23f8-4440-9e87-34e49add15a7}, !- Handle + {cb817d3c-2a05-44e5-9f8c-4e79fa953355}, !- Source Object + 3, !- Outlet Port + {cf6384d3-b7c9-4cd2-9ab6-d7110e67230c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {281cc21f-a39b-4dd5-8754-ca3ef5b985ea}, !- Handle + {cf6384d3-b7c9-4cd2-9ab6-d7110e67230c}, !- Source Object + 3, !- Outlet Port + {d934c43b-957c-4dab-a2c7-de648d387009}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7feec148-1a0f-41d0-9650-8f603a686a34}, !- Handle + {d934c43b-957c-4dab-a2c7-de648d387009}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 147; !- Inlet Port + +OS:Fan:OnOff, + {f7b118b7-e576-4ce2-a51b-689ef058afc9}, !- Handle + Zone Outpatient PACU C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.180451928488266, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {06976e3f-ccaa-40e2-a9f2-70e6cee658ed}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {0a7f0f07-cd06-4339-8930-8fbea81ceb8d}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {06976e3f-ccaa-40e2-a9f2-70e6cee658ed}, !- Handle + Fan On Off Power Curve 71, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {0a7f0f07-cd06-4339-8930-8fbea81ceb8d}, !- Handle + Fan On Off Efficiency Curve 71, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {05bfd489-f900-4898-94ae-e042646a9501}, !- Handle + Zone Outpatient PACU C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {bd8b7e66-ecd9-4fa7-b349-8eda1714ea56}, !- Air Inlet Node Name + {88eddb92-905d-4d89-a6b7-00df212012d2}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.180451928488266, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.180451928488266, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.180451928488266, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {f7b118b7-e576-4ce2-a51b-689ef058afc9}, !- Supply Air Fan Name + {5dcfba4f-6c09-476b-8011-ce62b075963c}, !- Heating Coil Name + {cf6384d3-b7c9-4cd2-9ab6-d7110e67230c}, !- Cooling Coil Name + {c3bb049d-56c7-4b13-90bc-53b2233d0eb4}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {9616f66b-0ec3-4ac5-86c7-a05980eda7c0}, !- Handle + Zone Outpatient PACU C - Story ground WSHP Inlet Air Node, !- Name + {3be126bf-d99f-4f73-bd88-0cb7ea48b387}, !- Inlet Port + {bd8b7e66-ecd9-4fa7-b349-8eda1714ea56}; !- Outlet Port + +OS:Connection, + {3be126bf-d99f-4f73-bd88-0cb7ea48b387}, !- Handle + {bfa479ce-cf0f-4184-8a0a-96c71c176b5d}, !- Source Object + 2, !- Outlet Port + {9616f66b-0ec3-4ac5-86c7-a05980eda7c0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bd8b7e66-ecd9-4fa7-b349-8eda1714ea56}, !- Handle + {9616f66b-0ec3-4ac5-86c7-a05980eda7c0}, !- Source Object + 3, !- Outlet Port + {05bfd489-f900-4898-94ae-e042646a9501}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {cd4c19cd-e446-46d1-b058-6a8a13cdcb2e}, !- Handle + Zone Outpatient PACU C - Story ground WSHP Outlet Air Node, !- Name + {88eddb92-905d-4d89-a6b7-00df212012d2}, !- Inlet Port + {d3d8af3f-c6ba-49c7-9a7e-1eadb1e0af3f}; !- Outlet Port + +OS:Connection, + {d3d8af3f-c6ba-49c7-9a7e-1eadb1e0af3f}, !- Handle + {cd4c19cd-e446-46d1-b058-6a8a13cdcb2e}, !- Source Object + 3, !- Outlet Port + {0117bc38-3393-423e-aedd-b224a0495cf6}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {88eddb92-905d-4d89-a6b7-00df212012d2}, !- Handle + {05bfd489-f900-4898-94ae-e042646a9501}, !- Source Object + 4, !- Outlet Port + {cd4c19cd-e446-46d1-b058-6a8a13cdcb2e}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {29ffb9e6-213a-41f8-8dcb-454caeeabcd7}, !- Handle + Zone Outpatient PhysicalTherapy A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 5757.3381016161, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {8910bd44-78f3-45b8-9c84-e6bd01a3adfc}, !- Handle + Zone Outpatient PhysicalTherapy A - Story ground Water-to-Air HP Htg Coil 44 Clg kBtu/hr 4.2COPH, !- Name + {1d0e5a98-7fbf-4e08-8022-3c2b14995462}, !- Water Inlet Node Name + {8067dd75-6ed3-4916-b8fe-a990f8f5332a}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.80880210419552, !- Rated Air Flow Rate {m3/s} + 0.000284039345138008, !- Rated Water Flow Rate {m3/s} + 12839.068795807, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {c10e3f01-6355-4b03-b832-ae6fecb5a151}, !- Handle + Zone Outpatient PhysicalTherapy A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {67af3875-e64a-4a9b-ab45-cef34ec63511}, !- Inlet Port + {1d0e5a98-7fbf-4e08-8022-3c2b14995462}; !- Outlet Port + +OS:Connection, + {67af3875-e64a-4a9b-ab45-cef34ec63511}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 148, !- Outlet Port + {c10e3f01-6355-4b03-b832-ae6fecb5a151}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {0f4e737b-f157-4b93-ae02-7b5be32a3060}, !- Handle + Zone Outpatient PhysicalTherapy A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {8067dd75-6ed3-4916-b8fe-a990f8f5332a}, !- Inlet Port + {750fcc83-7d80-43ed-aa13-4b1718effbce}; !- Outlet Port + +OS:Connection, + {1d0e5a98-7fbf-4e08-8022-3c2b14995462}, !- Handle + {c10e3f01-6355-4b03-b832-ae6fecb5a151}, !- Source Object + 3, !- Outlet Port + {8910bd44-78f3-45b8-9c84-e6bd01a3adfc}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8067dd75-6ed3-4916-b8fe-a990f8f5332a}, !- Handle + {8910bd44-78f3-45b8-9c84-e6bd01a3adfc}, !- Source Object + 3, !- Outlet Port + {0f4e737b-f157-4b93-ae02-7b5be32a3060}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {750fcc83-7d80-43ed-aa13-4b1718effbce}, !- Handle + {0f4e737b-f157-4b93-ae02-7b5be32a3060}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 148; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {8e4bfb26-707a-48bf-93c9-350b92ebb6b3}, !- Handle + Zone Outpatient PhysicalTherapy A - Story ground Water-to-Air HP Clg Coil 44kBtu/hr 12.0EER, !- Name + {8a50d042-6600-4d6c-a566-a94d450433a9}, !- Water Inlet Node Name + {c60fbf7f-86dc-4f84-9c1d-b1578f752b45}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.80880210419552, !- Rated Air Flow Rate {m3/s} + 0.000284039345138008, !- Rated Water Flow Rate {m3/s} + 13558.2282695142, !- Rated Total Cooling Capacity {W} + 10100.3412054039, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {5c497ac6-2d53-42d9-bee9-2518901c578d}, !- Handle + Zone Outpatient PhysicalTherapy A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {0045113c-2d82-4b78-a400-f4f6a54c4de9}, !- Inlet Port + {8a50d042-6600-4d6c-a566-a94d450433a9}; !- Outlet Port + +OS:Connection, + {0045113c-2d82-4b78-a400-f4f6a54c4de9}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 149, !- Outlet Port + {5c497ac6-2d53-42d9-bee9-2518901c578d}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {23baa4fb-5056-4f2a-8368-e213835bd6c2}, !- Handle + Zone Outpatient PhysicalTherapy A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {c60fbf7f-86dc-4f84-9c1d-b1578f752b45}, !- Inlet Port + {62b7cc3c-ca82-44c1-96d4-f84e89037e9d}; !- Outlet Port + +OS:Connection, + {8a50d042-6600-4d6c-a566-a94d450433a9}, !- Handle + {5c497ac6-2d53-42d9-bee9-2518901c578d}, !- Source Object + 3, !- Outlet Port + {8e4bfb26-707a-48bf-93c9-350b92ebb6b3}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c60fbf7f-86dc-4f84-9c1d-b1578f752b45}, !- Handle + {8e4bfb26-707a-48bf-93c9-350b92ebb6b3}, !- Source Object + 3, !- Outlet Port + {23baa4fb-5056-4f2a-8368-e213835bd6c2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {62b7cc3c-ca82-44c1-96d4-f84e89037e9d}, !- Handle + {23baa4fb-5056-4f2a-8368-e213835bd6c2}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 149; !- Inlet Port + +OS:Fan:OnOff, + {c2e458b7-ddab-45ff-9601-6a37d18c9424}, !- Handle + Zone Outpatient PhysicalTherapy A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.80880210419552, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {3c18d1da-c1ce-4773-b664-dbb7ac57be4e}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {2a6f186c-5831-4014-b29d-59c55e052a62}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {3c18d1da-c1ce-4773-b664-dbb7ac57be4e}, !- Handle + Fan On Off Power Curve 72, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {2a6f186c-5831-4014-b29d-59c55e052a62}, !- Handle + Fan On Off Efficiency Curve 72, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {21b760a5-7ddd-4f73-892f-2f84ba9f9336}, !- Handle + Zone Outpatient PhysicalTherapy A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {e66e7c94-9a92-435b-9cb6-12a711ffbd65}, !- Air Inlet Node Name + {7fe02373-390b-43af-8467-ffed100f4d50}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.80880210419552, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.80880210419552, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.80880210419552, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {c2e458b7-ddab-45ff-9601-6a37d18c9424}, !- Supply Air Fan Name + {8910bd44-78f3-45b8-9c84-e6bd01a3adfc}, !- Heating Coil Name + {8e4bfb26-707a-48bf-93c9-350b92ebb6b3}, !- Cooling Coil Name + {29ffb9e6-213a-41f8-8dcb-454caeeabcd7}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {0c337054-946f-4355-b821-7a8841470dee}, !- Handle + Zone Outpatient PhysicalTherapy A - Story ground WSHP Inlet Air Node, !- Name + {567dd60d-3dd8-4c09-baa1-82376f0b89ed}, !- Inlet Port + {e66e7c94-9a92-435b-9cb6-12a711ffbd65}; !- Outlet Port + +OS:Connection, + {567dd60d-3dd8-4c09-baa1-82376f0b89ed}, !- Handle + {c2f97006-80b9-4b83-b5e1-394f58229d95}, !- Source Object + 2, !- Outlet Port + {0c337054-946f-4355-b821-7a8841470dee}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e66e7c94-9a92-435b-9cb6-12a711ffbd65}, !- Handle + {0c337054-946f-4355-b821-7a8841470dee}, !- Source Object + 3, !- Outlet Port + {21b760a5-7ddd-4f73-892f-2f84ba9f9336}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {f7c4355e-af3a-439a-a772-8acd98b5fe2a}, !- Handle + Zone Outpatient PhysicalTherapy A - Story ground WSHP Outlet Air Node, !- Name + {7fe02373-390b-43af-8467-ffed100f4d50}, !- Inlet Port + {1017edd6-dc82-4a84-914e-cbbcc3eafe6f}; !- Outlet Port + +OS:Connection, + {1017edd6-dc82-4a84-914e-cbbcc3eafe6f}, !- Handle + {f7c4355e-af3a-439a-a772-8acd98b5fe2a}, !- Source Object + 3, !- Outlet Port + {b8b67755-6a9e-49b8-ad2c-9839850c5d79}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {7fe02373-390b-43af-8467-ffed100f4d50}, !- Handle + {21b760a5-7ddd-4f73-892f-2f84ba9f9336}, !- Source Object + 4, !- Outlet Port + {f7c4355e-af3a-439a-a772-8acd98b5fe2a}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {a230481b-e394-448d-80c5-7a77dde0bd4e}, !- Handle + Zone Outpatient PhysicalTherapy B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 23674.8098491556, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {186c462a-9d6a-4a8e-8a48-19bfed4dcc15}, !- Handle + Zone Outpatient PhysicalTherapy B - Story ground Water-to-Air HP Htg Coil 153 Clg kBtu/hr 4.2COPH, !- Name + {9c8789c0-272c-4e26-8de5-f37a43875032}, !- Water Inlet Node Name + {82925bc5-0098-46ec-9736-f5c72fd7c54f}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 2.09255604817297, !- Rated Air Flow Rate {m3/s} + 0.000930856224722592, !- Rated Water Flow Rate {m3/s} + 42076.3084861065, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {bec31866-3b57-4aea-8d95-4d1fe4b58010}, !- Handle + Zone Outpatient PhysicalTherapy B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {9d65ea93-a43a-4c34-bc00-87bb95356a3e}, !- Inlet Port + {9c8789c0-272c-4e26-8de5-f37a43875032}; !- Outlet Port + +OS:Connection, + {9d65ea93-a43a-4c34-bc00-87bb95356a3e}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 150, !- Outlet Port + {bec31866-3b57-4aea-8d95-4d1fe4b58010}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {cb9fcd2a-ceef-4ac2-b5de-9e326105bc9f}, !- Handle + Zone Outpatient PhysicalTherapy B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {82925bc5-0098-46ec-9736-f5c72fd7c54f}, !- Inlet Port + {0d7cc841-e1d9-48dc-b77c-f66935dce05c}; !- Outlet Port + +OS:Connection, + {9c8789c0-272c-4e26-8de5-f37a43875032}, !- Handle + {bec31866-3b57-4aea-8d95-4d1fe4b58010}, !- Source Object + 3, !- Outlet Port + {186c462a-9d6a-4a8e-8a48-19bfed4dcc15}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {82925bc5-0098-46ec-9736-f5c72fd7c54f}, !- Handle + {186c462a-9d6a-4a8e-8a48-19bfed4dcc15}, !- Source Object + 3, !- Outlet Port + {cb9fcd2a-ceef-4ac2-b5de-9e326105bc9f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0d7cc841-e1d9-48dc-b77c-f66935dce05c}, !- Handle + {cb9fcd2a-ceef-4ac2-b5de-9e326105bc9f}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 150; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {6e86604b-5c8d-4c3d-84ba-1c8fa92529a7}, !- Handle + Zone Outpatient PhysicalTherapy B - Story ground Water-to-Air HP Clg Coil, !- Name + {78c23ce3-7ee2-4960-ab05-eff95f13a40b}, !- Water Inlet Node Name + {4b83f67c-286a-453a-ae6b-dfde98340e33}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 2.09255604817297, !- Rated Air Flow Rate {m3/s} + 0.000930856224722592, !- Rated Water Flow Rate {m3/s} + 44433.1441996354, !- Rated Total Cooling Capacity {W} + 29714.3518089445, !- Rated Sensible Cooling Capacity {W} + 3.4, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {3d9c5fc0-72f1-48e0-a31e-10d0b19fbbdc}, !- Handle + Zone Outpatient PhysicalTherapy B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {62764be0-6757-4987-8a7b-5307f71f909b}, !- Inlet Port + {78c23ce3-7ee2-4960-ab05-eff95f13a40b}; !- Outlet Port + +OS:Connection, + {62764be0-6757-4987-8a7b-5307f71f909b}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 151, !- Outlet Port + {3d9c5fc0-72f1-48e0-a31e-10d0b19fbbdc}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {0926d9e2-53e7-4a8e-b8fa-d384c74ba0c1}, !- Handle + Zone Outpatient PhysicalTherapy B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {4b83f67c-286a-453a-ae6b-dfde98340e33}, !- Inlet Port + {d60c3021-0e48-4b5e-a059-9df09338c3e2}; !- Outlet Port + +OS:Connection, + {78c23ce3-7ee2-4960-ab05-eff95f13a40b}, !- Handle + {3d9c5fc0-72f1-48e0-a31e-10d0b19fbbdc}, !- Source Object + 3, !- Outlet Port + {6e86604b-5c8d-4c3d-84ba-1c8fa92529a7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4b83f67c-286a-453a-ae6b-dfde98340e33}, !- Handle + {6e86604b-5c8d-4c3d-84ba-1c8fa92529a7}, !- Source Object + 3, !- Outlet Port + {0926d9e2-53e7-4a8e-b8fa-d384c74ba0c1}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d60c3021-0e48-4b5e-a059-9df09338c3e2}, !- Handle + {0926d9e2-53e7-4a8e-b8fa-d384c74ba0c1}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 151; !- Inlet Port + +OS:Fan:OnOff, + {96035987-f342-46aa-9ce9-54a265dfc069}, !- Handle + Zone Outpatient PhysicalTherapy B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 2.09255604817297, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {4bfa9574-2a6c-4534-8c2b-0f643d98f710}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {30658679-4160-489d-b038-d683f0e7a62a}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {4bfa9574-2a6c-4534-8c2b-0f643d98f710}, !- Handle + Fan On Off Power Curve 73, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {30658679-4160-489d-b038-d683f0e7a62a}, !- Handle + Fan On Off Efficiency Curve 73, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {097e2571-18d0-4cea-8fe4-904450aeb273}, !- Handle + Zone Outpatient PhysicalTherapy B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {24cac3b5-8f03-477a-9564-7ab083bdd7a7}, !- Air Inlet Node Name + {81cfe520-0608-4dc2-80a7-090acd1de532}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 2.09255604817297, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 2.09255604817297, !- Supply Air Flow Rate During Heating Operation {m3/s} + 2.09255604817297, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {96035987-f342-46aa-9ce9-54a265dfc069}, !- Supply Air Fan Name + {186c462a-9d6a-4a8e-8a48-19bfed4dcc15}, !- Heating Coil Name + {6e86604b-5c8d-4c3d-84ba-1c8fa92529a7}, !- Cooling Coil Name + {a230481b-e394-448d-80c5-7a77dde0bd4e}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {0e7d6b6b-18bb-4356-b845-6a0da11112a2}, !- Handle + Zone Outpatient PhysicalTherapy B - Story ground WSHP Inlet Air Node, !- Name + {967aa332-6756-4f09-9d4b-de03d7390805}, !- Inlet Port + {24cac3b5-8f03-477a-9564-7ab083bdd7a7}; !- Outlet Port + +OS:Connection, + {967aa332-6756-4f09-9d4b-de03d7390805}, !- Handle + {28cd5ec1-f60e-4dec-bcb6-4d9c37127ee6}, !- Source Object + 2, !- Outlet Port + {0e7d6b6b-18bb-4356-b845-6a0da11112a2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {24cac3b5-8f03-477a-9564-7ab083bdd7a7}, !- Handle + {0e7d6b6b-18bb-4356-b845-6a0da11112a2}, !- Source Object + 3, !- Outlet Port + {097e2571-18d0-4cea-8fe4-904450aeb273}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {007c092d-14df-40e0-9845-c1e23c7f4a7b}, !- Handle + Zone Outpatient PhysicalTherapy B - Story ground WSHP Outlet Air Node, !- Name + {81cfe520-0608-4dc2-80a7-090acd1de532}, !- Inlet Port + {dbf40658-4c8d-4be7-bf6d-e8afe2db2490}; !- Outlet Port + +OS:Connection, + {dbf40658-4c8d-4be7-bf6d-e8afe2db2490}, !- Handle + {007c092d-14df-40e0-9845-c1e23c7f4a7b}, !- Source Object + 3, !- Outlet Port + {c7f2fb80-e957-4cec-b10b-828f736ba0d5}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {81cfe520-0608-4dc2-80a7-090acd1de532}, !- Handle + {097e2571-18d0-4cea-8fe4-904450aeb273}, !- Source Object + 4, !- Outlet Port + {007c092d-14df-40e0-9845-c1e23c7f4a7b}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {68521f20-4355-4df3-8c87-fb78dda24903}, !- Handle + Zone Outpatient PhysicalTherapy C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 5771.15648155953, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {9b0eb214-43ec-42fe-917e-16bcebb19b30}, !- Handle + Zone Outpatient PhysicalTherapy C - Story ground Water-to-Air HP Htg Coil 31 Clg kBtu/hr 4.2COPH, !- Name + {e6aba882-5b74-4cc0-bf49-6f4211cdb837}, !- Water Inlet Node Name + {fc824366-1196-4c4d-a691-8ef871397de9}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.532822401098068, !- Rated Air Flow Rate {m3/s} + 0.000198694214945283, !- Rated Water Flow Rate {m3/s} + 8981.32156223587, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {4dc7372a-3632-4f86-b098-6472aefc5f5d}, !- Handle + Zone Outpatient PhysicalTherapy C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {3f6008c9-5e9c-43ad-b869-66ba52d5d1d8}, !- Inlet Port + {e6aba882-5b74-4cc0-bf49-6f4211cdb837}; !- Outlet Port + +OS:Connection, + {3f6008c9-5e9c-43ad-b869-66ba52d5d1d8}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 152, !- Outlet Port + {4dc7372a-3632-4f86-b098-6472aefc5f5d}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {32561d70-8ca1-43fe-bdbc-1fa47e3d7da0}, !- Handle + Zone Outpatient PhysicalTherapy C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {fc824366-1196-4c4d-a691-8ef871397de9}, !- Inlet Port + {2a28714b-32b8-4e75-a41c-812d47b80b7f}; !- Outlet Port + +OS:Connection, + {e6aba882-5b74-4cc0-bf49-6f4211cdb837}, !- Handle + {4dc7372a-3632-4f86-b098-6472aefc5f5d}, !- Source Object + 3, !- Outlet Port + {9b0eb214-43ec-42fe-917e-16bcebb19b30}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fc824366-1196-4c4d-a691-8ef871397de9}, !- Handle + {9b0eb214-43ec-42fe-917e-16bcebb19b30}, !- Source Object + 3, !- Outlet Port + {32561d70-8ca1-43fe-bdbc-1fa47e3d7da0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2a28714b-32b8-4e75-a41c-812d47b80b7f}, !- Handle + {32561d70-8ca1-43fe-bdbc-1fa47e3d7da0}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 152; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {9f5fa5e8-b394-4e9a-b6da-acd925aba27b}, !- Handle + Zone Outpatient PhysicalTherapy C - Story ground Water-to-Air HP Clg Coil 31kBtu/hr 12.0EER, !- Name + {eac163d0-b8a0-4d17-b9c6-b2546e6f1793}, !- Water Inlet Node Name + {06ac8220-e24c-44c5-9087-834bb2e754ba}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.532822401098068, !- Rated Air Flow Rate {m3/s} + 0.000198694214945283, !- Rated Water Flow Rate {m3/s} + 9484.39562396242, !- Rated Total Cooling Capacity {W} + 6843.6833607574, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {8d9f846f-c7b7-4304-a207-e67d3df3fdce}, !- Handle + Zone Outpatient PhysicalTherapy C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {fb60e1e9-d1e9-42d3-9632-d68fee22a221}, !- Inlet Port + {eac163d0-b8a0-4d17-b9c6-b2546e6f1793}; !- Outlet Port + +OS:Connection, + {fb60e1e9-d1e9-42d3-9632-d68fee22a221}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 153, !- Outlet Port + {8d9f846f-c7b7-4304-a207-e67d3df3fdce}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {2d6814a3-339e-42e6-81f2-391edc310a10}, !- Handle + Zone Outpatient PhysicalTherapy C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {06ac8220-e24c-44c5-9087-834bb2e754ba}, !- Inlet Port + {354671d3-8456-4b38-a4e6-ce952948a550}; !- Outlet Port + +OS:Connection, + {eac163d0-b8a0-4d17-b9c6-b2546e6f1793}, !- Handle + {8d9f846f-c7b7-4304-a207-e67d3df3fdce}, !- Source Object + 3, !- Outlet Port + {9f5fa5e8-b394-4e9a-b6da-acd925aba27b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {06ac8220-e24c-44c5-9087-834bb2e754ba}, !- Handle + {9f5fa5e8-b394-4e9a-b6da-acd925aba27b}, !- Source Object + 3, !- Outlet Port + {2d6814a3-339e-42e6-81f2-391edc310a10}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {354671d3-8456-4b38-a4e6-ce952948a550}, !- Handle + {2d6814a3-339e-42e6-81f2-391edc310a10}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 153; !- Inlet Port + +OS:Fan:OnOff, + {5a8fe0d3-23a6-4af4-8be2-19871b63bd44}, !- Handle + Zone Outpatient PhysicalTherapy C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.532822401098068, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {77127eea-8c22-4013-ab04-040237089e79}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {f16e5caa-2516-4a03-b21f-c008143261cd}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {77127eea-8c22-4013-ab04-040237089e79}, !- Handle + Fan On Off Power Curve 74, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {f16e5caa-2516-4a03-b21f-c008143261cd}, !- Handle + Fan On Off Efficiency Curve 74, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {19ca35f0-7a78-4da4-b5ec-591cb3451933}, !- Handle + Zone Outpatient PhysicalTherapy C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {e8d8a560-7dcb-4b37-a34e-be6e8258e74e}, !- Air Inlet Node Name + {3a9eb7c7-df4e-4ced-a4cd-60535eb6839f}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.532822401098068, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.532822401098068, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.532822401098068, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {5a8fe0d3-23a6-4af4-8be2-19871b63bd44}, !- Supply Air Fan Name + {9b0eb214-43ec-42fe-917e-16bcebb19b30}, !- Heating Coil Name + {9f5fa5e8-b394-4e9a-b6da-acd925aba27b}, !- Cooling Coil Name + {68521f20-4355-4df3-8c87-fb78dda24903}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {558f6d3f-fb2b-40cb-963b-860d0e3f063a}, !- Handle + Zone Outpatient PhysicalTherapy C - Story ground WSHP Inlet Air Node, !- Name + {eb5abadf-90a4-492d-ba37-51e24f3acad5}, !- Inlet Port + {e8d8a560-7dcb-4b37-a34e-be6e8258e74e}; !- Outlet Port + +OS:Connection, + {eb5abadf-90a4-492d-ba37-51e24f3acad5}, !- Handle + {a7847903-7b9d-4974-a1a5-f8efad2c4b11}, !- Source Object + 2, !- Outlet Port + {558f6d3f-fb2b-40cb-963b-860d0e3f063a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e8d8a560-7dcb-4b37-a34e-be6e8258e74e}, !- Handle + {558f6d3f-fb2b-40cb-963b-860d0e3f063a}, !- Source Object + 3, !- Outlet Port + {19ca35f0-7a78-4da4-b5ec-591cb3451933}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {ee56c005-41f7-4917-b24b-b19a9e6bc800}, !- Handle + Zone Outpatient PhysicalTherapy C - Story ground WSHP Outlet Air Node, !- Name + {3a9eb7c7-df4e-4ced-a4cd-60535eb6839f}, !- Inlet Port + {6686ad30-3e5c-4602-a0b5-62bbadb1c2b2}; !- Outlet Port + +OS:Connection, + {6686ad30-3e5c-4602-a0b5-62bbadb1c2b2}, !- Handle + {ee56c005-41f7-4917-b24b-b19a9e6bc800}, !- Source Object + 3, !- Outlet Port + {a54d3a77-8d6f-496f-9e3a-5c896caf6cfe}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {3a9eb7c7-df4e-4ced-a4cd-60535eb6839f}, !- Handle + {19ca35f0-7a78-4da4-b5ec-591cb3451933}, !- Source Object + 4, !- Outlet Port + {ee56c005-41f7-4917-b24b-b19a9e6bc800}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {83e0c199-3c8f-4cdf-bfed-be08e0be716b}, !- Handle + Zone Outpatient PreOp A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 796.832450964352, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {31aa2df6-a45c-4488-8d4f-28237c6d0d04}, !- Handle + Zone Outpatient PreOp A - Story ground Water-to-Air HP Htg Coil 5 Clg kBtu/hr 4.2COPH, !- Name + {55953901-075b-4655-b9d8-b0f8ca515b07}, !- Water Inlet Node Name + {f407221b-5154-411a-8ca4-fbf22a6e6edf}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0717973723451154, !- Rated Air Flow Rate {m3/s} + 2.93348104028874e-05, !- Rated Water Flow Rate {m3/s} + 1325.98407693, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {47f2916e-f406-49ae-9004-471eab856f74}, !- Handle + Zone Outpatient PreOp A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {f3b41255-f418-4f6f-a8a0-5a527ac70b25}, !- Inlet Port + {55953901-075b-4655-b9d8-b0f8ca515b07}; !- Outlet Port + +OS:Connection, + {f3b41255-f418-4f6f-a8a0-5a527ac70b25}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 154, !- Outlet Port + {47f2916e-f406-49ae-9004-471eab856f74}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {d4a19c0a-ab53-4dc7-a46b-7b3f5567ac9c}, !- Handle + Zone Outpatient PreOp A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {f407221b-5154-411a-8ca4-fbf22a6e6edf}, !- Inlet Port + {00cbe801-7460-44b0-9429-843ffffadc69}; !- Outlet Port + +OS:Connection, + {55953901-075b-4655-b9d8-b0f8ca515b07}, !- Handle + {47f2916e-f406-49ae-9004-471eab856f74}, !- Source Object + 3, !- Outlet Port + {31aa2df6-a45c-4488-8d4f-28237c6d0d04}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f407221b-5154-411a-8ca4-fbf22a6e6edf}, !- Handle + {31aa2df6-a45c-4488-8d4f-28237c6d0d04}, !- Source Object + 3, !- Outlet Port + {d4a19c0a-ab53-4dc7-a46b-7b3f5567ac9c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00cbe801-7460-44b0-9429-843ffffadc69}, !- Handle + {d4a19c0a-ab53-4dc7-a46b-7b3f5567ac9c}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 154; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {1fc59987-6a69-48e6-a143-f28bfdf84f57}, !- Handle + Zone Outpatient PreOp A - Story ground Water-to-Air HP Clg Coil 5kBtu/hr 11.2EER, !- Name + {45db7b65-047b-4cc1-8c27-a0dbc03df3c2}, !- Water Inlet Node Name + {515e1b3f-471e-472e-843d-0b15a46f798f}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0717973723451154, !- Rated Air Flow Rate {m3/s} + 2.93348104028874e-05, !- Rated Water Flow Rate {m3/s} + 1400.25690980248, !- Rated Total Cooling Capacity {W} + 967.857569993219, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {aca3d951-1a66-4268-8e07-2a7499f618d6}, !- Handle + Zone Outpatient PreOp A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {e5ee8b67-1475-4fbf-88ca-725bc794aa0c}, !- Inlet Port + {45db7b65-047b-4cc1-8c27-a0dbc03df3c2}; !- Outlet Port + +OS:Connection, + {e5ee8b67-1475-4fbf-88ca-725bc794aa0c}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 155, !- Outlet Port + {aca3d951-1a66-4268-8e07-2a7499f618d6}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {620d0221-e124-4015-830a-487d31e7c633}, !- Handle + Zone Outpatient PreOp A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {515e1b3f-471e-472e-843d-0b15a46f798f}, !- Inlet Port + {b4f4cc1f-b935-4a5c-be45-1e9b8ace965a}; !- Outlet Port + +OS:Connection, + {45db7b65-047b-4cc1-8c27-a0dbc03df3c2}, !- Handle + {aca3d951-1a66-4268-8e07-2a7499f618d6}, !- Source Object + 3, !- Outlet Port + {1fc59987-6a69-48e6-a143-f28bfdf84f57}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {515e1b3f-471e-472e-843d-0b15a46f798f}, !- Handle + {1fc59987-6a69-48e6-a143-f28bfdf84f57}, !- Source Object + 3, !- Outlet Port + {620d0221-e124-4015-830a-487d31e7c633}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b4f4cc1f-b935-4a5c-be45-1e9b8ace965a}, !- Handle + {620d0221-e124-4015-830a-487d31e7c633}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 155; !- Inlet Port + +OS:Fan:OnOff, + {1358ad8d-4404-47bd-8918-50b0ce378dae}, !- Handle + Zone Outpatient PreOp A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0717973723451154, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {bee213ec-dc79-480d-bd56-51d0f40d69d4}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {cda05cd5-5600-4ca5-adc7-788e10de5928}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {bee213ec-dc79-480d-bd56-51d0f40d69d4}, !- Handle + Fan On Off Power Curve 75, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {cda05cd5-5600-4ca5-adc7-788e10de5928}, !- Handle + Fan On Off Efficiency Curve 75, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {1c445b5a-491b-47a3-8486-a5a494d572dc}, !- Handle + Zone Outpatient PreOp A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {581167f1-b1a0-4feb-bdb5-9776100e1642}, !- Air Inlet Node Name + {ef2f0874-3e8e-4a09-ac64-df2e7c84c459}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0717973723451154, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0717973723451154, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0717973723451154, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {1358ad8d-4404-47bd-8918-50b0ce378dae}, !- Supply Air Fan Name + {31aa2df6-a45c-4488-8d4f-28237c6d0d04}, !- Heating Coil Name + {1fc59987-6a69-48e6-a143-f28bfdf84f57}, !- Cooling Coil Name + {83e0c199-3c8f-4cdf-bfed-be08e0be716b}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {2e2bd324-0436-4512-950f-898d51c21efb}, !- Handle + Zone Outpatient PreOp A - Story ground WSHP Inlet Air Node, !- Name + {e483ff98-5fcd-44b0-8733-7d42e0078f05}, !- Inlet Port + {581167f1-b1a0-4feb-bdb5-9776100e1642}; !- Outlet Port + +OS:Connection, + {e483ff98-5fcd-44b0-8733-7d42e0078f05}, !- Handle + {5f14e213-9cba-4ed0-8129-7375f0650f83}, !- Source Object + 2, !- Outlet Port + {2e2bd324-0436-4512-950f-898d51c21efb}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {581167f1-b1a0-4feb-bdb5-9776100e1642}, !- Handle + {2e2bd324-0436-4512-950f-898d51c21efb}, !- Source Object + 3, !- Outlet Port + {1c445b5a-491b-47a3-8486-a5a494d572dc}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {63db2be8-634a-4bfc-9dce-25ddd64f2b5f}, !- Handle + Zone Outpatient PreOp A - Story ground WSHP Outlet Air Node, !- Name + {ef2f0874-3e8e-4a09-ac64-df2e7c84c459}, !- Inlet Port + {c395ceca-fb02-41c1-89da-264354964a7f}; !- Outlet Port + +OS:Connection, + {c395ceca-fb02-41c1-89da-264354964a7f}, !- Handle + {63db2be8-634a-4bfc-9dce-25ddd64f2b5f}, !- Source Object + 3, !- Outlet Port + {5765d73b-4d6b-4177-abc3-7b0a484257f0}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {ef2f0874-3e8e-4a09-ac64-df2e7c84c459}, !- Handle + {1c445b5a-491b-47a3-8486-a5a494d572dc}, !- Source Object + 4, !- Outlet Port + {63db2be8-634a-4bfc-9dce-25ddd64f2b5f}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {d4227316-3bab-46f6-991e-e2f1855e9fc5}, !- Handle + Zone Outpatient PreOp B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 5994.62699895131, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {b3534b84-b4e0-486c-8b66-757753e14c42}, !- Handle + Zone Outpatient PreOp B - Story ground Water-to-Air HP Htg Coil 38 Clg kBtu/hr 4.2COPH, !- Name + {33bf3dae-421b-438f-a337-65a6a224d040}, !- Water Inlet Node Name + {2486ad76-6904-4546-8b9d-d3074a9190e0}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.573794277570238, !- Rated Air Flow Rate {m3/s} + 0.000235182240315539, !- Rated Water Flow Rate {m3/s} + 10630.6433057579, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {d958d4e3-e7d2-453b-a021-167335be9851}, !- Handle + Zone Outpatient PreOp B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {cda71317-44af-40fe-ab65-a7329575ddcb}, !- Inlet Port + {33bf3dae-421b-438f-a337-65a6a224d040}; !- Outlet Port + +OS:Connection, + {cda71317-44af-40fe-ab65-a7329575ddcb}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 156, !- Outlet Port + {d958d4e3-e7d2-453b-a021-167335be9851}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {0ee0b003-8823-4504-a347-2edcabf1ec91}, !- Handle + Zone Outpatient PreOp B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {2486ad76-6904-4546-8b9d-d3074a9190e0}, !- Inlet Port + {fce4de10-6d77-464e-b690-d2bdb422e45e}; !- Outlet Port + +OS:Connection, + {33bf3dae-421b-438f-a337-65a6a224d040}, !- Handle + {d958d4e3-e7d2-453b-a021-167335be9851}, !- Source Object + 3, !- Outlet Port + {b3534b84-b4e0-486c-8b66-757753e14c42}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2486ad76-6904-4546-8b9d-d3074a9190e0}, !- Handle + {b3534b84-b4e0-486c-8b66-757753e14c42}, !- Source Object + 3, !- Outlet Port + {0ee0b003-8823-4504-a347-2edcabf1ec91}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fce4de10-6d77-464e-b690-d2bdb422e45e}, !- Handle + {0ee0b003-8823-4504-a347-2edcabf1ec91}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 156; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {b265074c-233f-479f-bd9b-5946443ad849}, !- Handle + Zone Outpatient PreOp B - Story ground Water-to-Air HP Clg Coil 38kBtu/hr 12.0EER, !- Name + {0b9dfc50-055f-4afb-877c-c07e70ba1a9b}, !- Water Inlet Node Name + {f59785a5-5606-4f0e-85fa-c1904fd80312}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.573794277570238, !- Rated Air Flow Rate {m3/s} + 0.000235182240315539, !- Rated Water Flow Rate {m3/s} + 11226.1014317736, !- Rated Total Cooling Capacity {W} + 7748.90695255853, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {42b609be-d79a-4388-bd85-bb10d68929a2}, !- Handle + Zone Outpatient PreOp B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {e65c64c0-f2f3-4362-a4cc-6e418ba7ed8e}, !- Inlet Port + {0b9dfc50-055f-4afb-877c-c07e70ba1a9b}; !- Outlet Port + +OS:Connection, + {e65c64c0-f2f3-4362-a4cc-6e418ba7ed8e}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 157, !- Outlet Port + {42b609be-d79a-4388-bd85-bb10d68929a2}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {af98e8f4-488e-4c98-9db3-7dd928be7f9f}, !- Handle + Zone Outpatient PreOp B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {f59785a5-5606-4f0e-85fa-c1904fd80312}, !- Inlet Port + {e80b7f74-a196-4028-a4b4-86586dab6072}; !- Outlet Port + +OS:Connection, + {0b9dfc50-055f-4afb-877c-c07e70ba1a9b}, !- Handle + {42b609be-d79a-4388-bd85-bb10d68929a2}, !- Source Object + 3, !- Outlet Port + {b265074c-233f-479f-bd9b-5946443ad849}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f59785a5-5606-4f0e-85fa-c1904fd80312}, !- Handle + {b265074c-233f-479f-bd9b-5946443ad849}, !- Source Object + 3, !- Outlet Port + {af98e8f4-488e-4c98-9db3-7dd928be7f9f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e80b7f74-a196-4028-a4b4-86586dab6072}, !- Handle + {af98e8f4-488e-4c98-9db3-7dd928be7f9f}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 157; !- Inlet Port + +OS:Fan:OnOff, + {1741f675-a621-4ab8-bc99-8052a19bca8e}, !- Handle + Zone Outpatient PreOp B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.573794277570238, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {509112a5-8e76-46d6-94d8-2c63721fc79c}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {0bbd6f66-fa49-4294-ac33-8ba07813223c}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {509112a5-8e76-46d6-94d8-2c63721fc79c}, !- Handle + Fan On Off Power Curve 76, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {0bbd6f66-fa49-4294-ac33-8ba07813223c}, !- Handle + Fan On Off Efficiency Curve 76, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {ce40930b-4ce6-4975-a438-c70232ddda12}, !- Handle + Zone Outpatient PreOp B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {27c399ed-7cb7-4c28-a21a-2302848d1613}, !- Air Inlet Node Name + {d408429b-b878-4a4d-99b0-8830a09617ef}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.573794277570238, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.573794277570238, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.573794277570238, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {1741f675-a621-4ab8-bc99-8052a19bca8e}, !- Supply Air Fan Name + {b3534b84-b4e0-486c-8b66-757753e14c42}, !- Heating Coil Name + {b265074c-233f-479f-bd9b-5946443ad849}, !- Cooling Coil Name + {d4227316-3bab-46f6-991e-e2f1855e9fc5}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {130cb4fa-129b-40a0-b0ae-0e41edadb76f}, !- Handle + Zone Outpatient PreOp B - Story ground WSHP Inlet Air Node, !- Name + {261b5edc-0bb5-4149-8674-ac64417fb7d5}, !- Inlet Port + {27c399ed-7cb7-4c28-a21a-2302848d1613}; !- Outlet Port + +OS:Connection, + {261b5edc-0bb5-4149-8674-ac64417fb7d5}, !- Handle + {187b2eee-5726-460a-b934-bc7f8a3ec2af}, !- Source Object + 2, !- Outlet Port + {130cb4fa-129b-40a0-b0ae-0e41edadb76f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {27c399ed-7cb7-4c28-a21a-2302848d1613}, !- Handle + {130cb4fa-129b-40a0-b0ae-0e41edadb76f}, !- Source Object + 3, !- Outlet Port + {ce40930b-4ce6-4975-a438-c70232ddda12}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {03068013-06ed-47b8-8596-5dc225d62ef1}, !- Handle + Zone Outpatient PreOp B - Story ground WSHP Outlet Air Node, !- Name + {d408429b-b878-4a4d-99b0-8830a09617ef}, !- Inlet Port + {f934ee06-3cf2-40c5-a38f-01bdb090a525}; !- Outlet Port + +OS:Connection, + {f934ee06-3cf2-40c5-a38f-01bdb090a525}, !- Handle + {03068013-06ed-47b8-8596-5dc225d62ef1}, !- Source Object + 3, !- Outlet Port + {d393488a-a56e-4a7a-9f61-1214a5e71e39}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {d408429b-b878-4a4d-99b0-8830a09617ef}, !- Handle + {ce40930b-4ce6-4975-a438-c70232ddda12}, !- Source Object + 4, !- Outlet Port + {03068013-06ed-47b8-8596-5dc225d62ef1}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {6ceee784-bb31-4b9f-a232-ffdbf3864907}, !- Handle + Zone Outpatient PreOp C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 796.832450964604, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {1895a1c3-7491-4d40-8f77-e9fc20f8002d}, !- Handle + Zone Outpatient PreOp C - Story ground Water-to-Air HP Htg Coil 5 Clg kBtu/hr 4.2COPH, !- Name + {48e225fd-dade-43ce-97ad-d6326cefc3de}, !- Water Inlet Node Name + {d8311cc6-e40f-4241-8401-edfded9c620d}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0717973723451081, !- Rated Air Flow Rate {m3/s} + 2.9334810402885e-05, !- Rated Water Flow Rate {m3/s} + 1325.9840769299, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {e552be80-e2d9-42a9-82b0-2ed2aad43955}, !- Handle + Zone Outpatient PreOp C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {a0e4f7ce-3fd3-413e-866e-f3528a6f33c6}, !- Inlet Port + {48e225fd-dade-43ce-97ad-d6326cefc3de}; !- Outlet Port + +OS:Connection, + {a0e4f7ce-3fd3-413e-866e-f3528a6f33c6}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 158, !- Outlet Port + {e552be80-e2d9-42a9-82b0-2ed2aad43955}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {60d74297-c39e-4bf5-b9e0-079852c28f47}, !- Handle + Zone Outpatient PreOp C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {d8311cc6-e40f-4241-8401-edfded9c620d}, !- Inlet Port + {29086cd3-9790-4332-b7aa-c78af74a2dd5}; !- Outlet Port + +OS:Connection, + {48e225fd-dade-43ce-97ad-d6326cefc3de}, !- Handle + {e552be80-e2d9-42a9-82b0-2ed2aad43955}, !- Source Object + 3, !- Outlet Port + {1895a1c3-7491-4d40-8f77-e9fc20f8002d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d8311cc6-e40f-4241-8401-edfded9c620d}, !- Handle + {1895a1c3-7491-4d40-8f77-e9fc20f8002d}, !- Source Object + 3, !- Outlet Port + {60d74297-c39e-4bf5-b9e0-079852c28f47}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {29086cd3-9790-4332-b7aa-c78af74a2dd5}, !- Handle + {60d74297-c39e-4bf5-b9e0-079852c28f47}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 158; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {87e25a95-c83e-4877-b546-f2f42cee0b66}, !- Handle + Zone Outpatient PreOp C - Story ground Water-to-Air HP Clg Coil 5kBtu/hr 11.2EER, !- Name + {b368f209-f068-4bcb-a110-08f8330d5e0c}, !- Water Inlet Node Name + {b84575f2-2ba4-4625-b43d-6f28b1576583}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0717973723451081, !- Rated Air Flow Rate {m3/s} + 2.9334810402885e-05, !- Rated Water Flow Rate {m3/s} + 1400.25690980237, !- Rated Total Cooling Capacity {W} + 967.85756999312, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {74bc6c8b-0371-4714-be01-3779b2f5293e}, !- Handle + Zone Outpatient PreOp C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {f1323b8e-f890-44eb-9f14-087b430e047a}, !- Inlet Port + {b368f209-f068-4bcb-a110-08f8330d5e0c}; !- Outlet Port + +OS:Connection, + {f1323b8e-f890-44eb-9f14-087b430e047a}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 159, !- Outlet Port + {74bc6c8b-0371-4714-be01-3779b2f5293e}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {8ff3af34-d8d4-473b-bbfa-cf7f15acc2d8}, !- Handle + Zone Outpatient PreOp C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {b84575f2-2ba4-4625-b43d-6f28b1576583}, !- Inlet Port + {081597a9-6ac5-4cf6-b0ac-25a9f0927cb2}; !- Outlet Port + +OS:Connection, + {b368f209-f068-4bcb-a110-08f8330d5e0c}, !- Handle + {74bc6c8b-0371-4714-be01-3779b2f5293e}, !- Source Object + 3, !- Outlet Port + {87e25a95-c83e-4877-b546-f2f42cee0b66}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b84575f2-2ba4-4625-b43d-6f28b1576583}, !- Handle + {87e25a95-c83e-4877-b546-f2f42cee0b66}, !- Source Object + 3, !- Outlet Port + {8ff3af34-d8d4-473b-bbfa-cf7f15acc2d8}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {081597a9-6ac5-4cf6-b0ac-25a9f0927cb2}, !- Handle + {8ff3af34-d8d4-473b-bbfa-cf7f15acc2d8}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 159; !- Inlet Port + +OS:Fan:OnOff, + {d92cfc81-67d2-4450-9468-5175150feefa}, !- Handle + Zone Outpatient PreOp C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0717973723451081, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {0e719307-7843-4188-84d3-1ea63d9be318}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {8c0c977e-88d7-4d03-b2fe-6d46d833ad2c}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {0e719307-7843-4188-84d3-1ea63d9be318}, !- Handle + Fan On Off Power Curve 77, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {8c0c977e-88d7-4d03-b2fe-6d46d833ad2c}, !- Handle + Fan On Off Efficiency Curve 77, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {9cd9a9c3-2a1d-4925-b2da-c017cb8748fd}, !- Handle + Zone Outpatient PreOp C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {5cfd0ff0-75d4-46e2-9d32-25569c5d1ce6}, !- Air Inlet Node Name + {c05945e8-3bfc-4194-8cf7-4e532d2af63b}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0717973723451081, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0717973723451081, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0717973723451081, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {d92cfc81-67d2-4450-9468-5175150feefa}, !- Supply Air Fan Name + {1895a1c3-7491-4d40-8f77-e9fc20f8002d}, !- Heating Coil Name + {87e25a95-c83e-4877-b546-f2f42cee0b66}, !- Cooling Coil Name + {6ceee784-bb31-4b9f-a232-ffdbf3864907}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {8830d792-a292-4f1d-bc00-51f4ae0814d0}, !- Handle + Zone Outpatient PreOp C - Story ground WSHP Inlet Air Node, !- Name + {95f7ced6-4637-4d32-ae05-3bc43cb26fa3}, !- Inlet Port + {5cfd0ff0-75d4-46e2-9d32-25569c5d1ce6}; !- Outlet Port + +OS:Connection, + {95f7ced6-4637-4d32-ae05-3bc43cb26fa3}, !- Handle + {88d409a2-0744-46e1-891e-d8d051a8968b}, !- Source Object + 2, !- Outlet Port + {8830d792-a292-4f1d-bc00-51f4ae0814d0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {5cfd0ff0-75d4-46e2-9d32-25569c5d1ce6}, !- Handle + {8830d792-a292-4f1d-bc00-51f4ae0814d0}, !- Source Object + 3, !- Outlet Port + {9cd9a9c3-2a1d-4925-b2da-c017cb8748fd}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {8a52241a-3bda-4fae-88a4-5f170dd8bb3b}, !- Handle + Zone Outpatient PreOp C - Story ground WSHP Outlet Air Node, !- Name + {c05945e8-3bfc-4194-8cf7-4e532d2af63b}, !- Inlet Port + {d7f287f9-a675-4740-9cd8-e3f03bd448d0}; !- Outlet Port + +OS:Connection, + {d7f287f9-a675-4740-9cd8-e3f03bd448d0}, !- Handle + {8a52241a-3bda-4fae-88a4-5f170dd8bb3b}, !- Source Object + 3, !- Outlet Port + {f5c3143e-e0ea-42f4-8bb0-dff1a25ff6bf}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {c05945e8-3bfc-4194-8cf7-4e532d2af63b}, !- Handle + {9cd9a9c3-2a1d-4925-b2da-c017cb8748fd}, !- Source Object + 4, !- Outlet Port + {8a52241a-3bda-4fae-88a4-5f170dd8bb3b}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {9f47bb2d-7218-4cb8-9603-80db3fc914a7}, !- Handle + Zone Outpatient ProcedureRoom A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 498.664738547979, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {ceec5b55-966b-431a-ad2a-1ab3a9382b8c}, !- Handle + Zone Outpatient ProcedureRoom A - Story ground Water-to-Air HP Htg Coil 3 Clg kBtu/hr 4.2COPH, !- Name + {5905b995-8af8-4bc2-a476-7ec739b1f7b4}, !- Water Inlet Node Name + {1cc5cb5e-7cce-4214-8268-797071645db7}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0501898687066346, !- Rated Air Flow Rate {m3/s} + 2.10633704352971e-05, !- Rated Water Flow Rate {m3/s} + 952.100709706071, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {7a513bc2-a002-45c1-9f06-8886379b64d8}, !- Handle + Zone Outpatient ProcedureRoom A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {4b42eb85-5cc6-45b2-9b39-18284c4a65c6}, !- Inlet Port + {5905b995-8af8-4bc2-a476-7ec739b1f7b4}; !- Outlet Port + +OS:Connection, + {4b42eb85-5cc6-45b2-9b39-18284c4a65c6}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 160, !- Outlet Port + {7a513bc2-a002-45c1-9f06-8886379b64d8}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {7e5a8647-8140-41ad-b54d-35252a03de1c}, !- Handle + Zone Outpatient ProcedureRoom A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {1cc5cb5e-7cce-4214-8268-797071645db7}, !- Inlet Port + {ea76a6d1-c579-4e9d-b313-a64c4a1e8e10}; !- Outlet Port + +OS:Connection, + {5905b995-8af8-4bc2-a476-7ec739b1f7b4}, !- Handle + {7a513bc2-a002-45c1-9f06-8886379b64d8}, !- Source Object + 3, !- Outlet Port + {ceec5b55-966b-431a-ad2a-1ab3a9382b8c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1cc5cb5e-7cce-4214-8268-797071645db7}, !- Handle + {ceec5b55-966b-431a-ad2a-1ab3a9382b8c}, !- Source Object + 3, !- Outlet Port + {7e5a8647-8140-41ad-b54d-35252a03de1c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ea76a6d1-c579-4e9d-b313-a64c4a1e8e10}, !- Handle + {7e5a8647-8140-41ad-b54d-35252a03de1c}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 160; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {71c8ee15-6f6d-48a1-97f8-a1e4e3a16ebe}, !- Handle + Zone Outpatient ProcedureRoom A - Story ground Water-to-Air HP Clg Coil 3kBtu/hr 11.2EER, !- Name + {c625d4cb-d9d0-4665-b726-ced0d2b95b4a}, !- Water Inlet Node Name + {1d9592e6-2123-4c25-97f2-3d11505fa2e4}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0501898687066346, !- Rated Air Flow Rate {m3/s} + 2.10633704352971e-05, !- Rated Water Flow Rate {m3/s} + 1005.4310762769, !- Rated Total Cooling Capacity {W} + 687.202506723273, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {380e743e-3781-4f4f-bb35-26753346a965}, !- Handle + Zone Outpatient ProcedureRoom A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {fe9ef926-a0fd-4008-96c5-7a1abd05449a}, !- Inlet Port + {c625d4cb-d9d0-4665-b726-ced0d2b95b4a}; !- Outlet Port + +OS:Connection, + {fe9ef926-a0fd-4008-96c5-7a1abd05449a}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 161, !- Outlet Port + {380e743e-3781-4f4f-bb35-26753346a965}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {36088485-2231-4b4f-a439-7a667815b0f6}, !- Handle + Zone Outpatient ProcedureRoom A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {1d9592e6-2123-4c25-97f2-3d11505fa2e4}, !- Inlet Port + {de9abb35-1777-41db-a73f-fc62ce2876c1}; !- Outlet Port + +OS:Connection, + {c625d4cb-d9d0-4665-b726-ced0d2b95b4a}, !- Handle + {380e743e-3781-4f4f-bb35-26753346a965}, !- Source Object + 3, !- Outlet Port + {71c8ee15-6f6d-48a1-97f8-a1e4e3a16ebe}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1d9592e6-2123-4c25-97f2-3d11505fa2e4}, !- Handle + {71c8ee15-6f6d-48a1-97f8-a1e4e3a16ebe}, !- Source Object + 3, !- Outlet Port + {36088485-2231-4b4f-a439-7a667815b0f6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {de9abb35-1777-41db-a73f-fc62ce2876c1}, !- Handle + {36088485-2231-4b4f-a439-7a667815b0f6}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 161; !- Inlet Port + +OS:Fan:OnOff, + {86d4eeb6-d8a0-4d6f-bdd7-e08d1a4d66ad}, !- Handle + Zone Outpatient ProcedureRoom A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0501898687066346, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {c9abb0c2-00e0-4fd6-adcc-7baaa86fd2de}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {2c4dff3b-babf-4082-8310-a1767b8b6711}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {c9abb0c2-00e0-4fd6-adcc-7baaa86fd2de}, !- Handle + Fan On Off Power Curve 78, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {2c4dff3b-babf-4082-8310-a1767b8b6711}, !- Handle + Fan On Off Efficiency Curve 78, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {b63c8aed-dda4-48a0-937b-507a1ba25b6f}, !- Handle + Zone Outpatient ProcedureRoom A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {db77618e-53a2-4a42-97c1-f88a409f1f97}, !- Air Inlet Node Name + {864e1b79-d48d-4678-b991-5a3dd335f305}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0501898687066346, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0501898687066346, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0501898687066346, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {86d4eeb6-d8a0-4d6f-bdd7-e08d1a4d66ad}, !- Supply Air Fan Name + {ceec5b55-966b-431a-ad2a-1ab3a9382b8c}, !- Heating Coil Name + {71c8ee15-6f6d-48a1-97f8-a1e4e3a16ebe}, !- Cooling Coil Name + {9f47bb2d-7218-4cb8-9603-80db3fc914a7}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {4ff111af-c066-4f9c-a254-17bda9bee339}, !- Handle + Zone Outpatient ProcedureRoom A - Story ground WSHP Inlet Air Node, !- Name + {d6166818-e57a-42d6-b701-b5416527eea0}, !- Inlet Port + {db77618e-53a2-4a42-97c1-f88a409f1f97}; !- Outlet Port + +OS:Connection, + {d6166818-e57a-42d6-b701-b5416527eea0}, !- Handle + {800497c0-461c-4147-8d72-5c40efad8a65}, !- Source Object + 2, !- Outlet Port + {4ff111af-c066-4f9c-a254-17bda9bee339}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {db77618e-53a2-4a42-97c1-f88a409f1f97}, !- Handle + {4ff111af-c066-4f9c-a254-17bda9bee339}, !- Source Object + 3, !- Outlet Port + {b63c8aed-dda4-48a0-937b-507a1ba25b6f}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {94acbd43-8fce-495b-8488-f27ee99f1d35}, !- Handle + Zone Outpatient ProcedureRoom A - Story ground WSHP Outlet Air Node, !- Name + {864e1b79-d48d-4678-b991-5a3dd335f305}, !- Inlet Port + {c1145a75-9285-491b-8bc6-f03a3273e68c}; !- Outlet Port + +OS:Connection, + {c1145a75-9285-491b-8bc6-f03a3273e68c}, !- Handle + {94acbd43-8fce-495b-8488-f27ee99f1d35}, !- Source Object + 3, !- Outlet Port + {10a7b841-e562-45d6-816d-423f6187540a}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {864e1b79-d48d-4678-b991-5a3dd335f305}, !- Handle + {b63c8aed-dda4-48a0-937b-507a1ba25b6f}, !- Source Object + 4, !- Outlet Port + {94acbd43-8fce-495b-8488-f27ee99f1d35}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {2cff9fd1-9e87-4958-9d4c-20ce374843b7}, !- Handle + Zone Outpatient ProcedureRoom B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 3802.78273579053, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {304248d3-e6c6-4180-b3b7-b1f01ce0b00c}, !- Handle + Zone Outpatient ProcedureRoom B - Story ground Water-to-Air HP Htg Coil 27 Clg kBtu/hr 4.2COPH, !- Name + {5384b087-ec01-4ed4-9c7b-abc35f7fa323}, !- Water Inlet Node Name + {4a616b55-3e25-4eee-8823-a7daad648f09}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.400041633364314, !- Rated Air Flow Rate {m3/s} + 0.000168533390341349, !- Rated Water Flow Rate {m3/s} + 7618.00021730026, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {ab03841c-da65-4ab8-8640-450e4c61dcca}, !- Handle + Zone Outpatient ProcedureRoom B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {f1c0595b-c383-483c-9075-1405be93cf46}, !- Inlet Port + {5384b087-ec01-4ed4-9c7b-abc35f7fa323}; !- Outlet Port + +OS:Connection, + {f1c0595b-c383-483c-9075-1405be93cf46}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 162, !- Outlet Port + {ab03841c-da65-4ab8-8640-450e4c61dcca}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {e0c682e2-6ac0-4e01-94e7-1bfcb4a6299f}, !- Handle + Zone Outpatient ProcedureRoom B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {4a616b55-3e25-4eee-8823-a7daad648f09}, !- Inlet Port + {3bbcb89f-95a2-40e4-81bf-4cde07daf574}; !- Outlet Port + +OS:Connection, + {5384b087-ec01-4ed4-9c7b-abc35f7fa323}, !- Handle + {ab03841c-da65-4ab8-8640-450e4c61dcca}, !- Source Object + 3, !- Outlet Port + {304248d3-e6c6-4180-b3b7-b1f01ce0b00c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4a616b55-3e25-4eee-8823-a7daad648f09}, !- Handle + {304248d3-e6c6-4180-b3b7-b1f01ce0b00c}, !- Source Object + 3, !- Outlet Port + {e0c682e2-6ac0-4e01-94e7-1bfcb4a6299f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3bbcb89f-95a2-40e4-81bf-4cde07daf574}, !- Handle + {e0c682e2-6ac0-4e01-94e7-1bfcb4a6299f}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 162; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {8b7a62c9-a721-43c9-b346-2a85a4948215}, !- Handle + Zone Outpatient ProcedureRoom B - Story ground Water-to-Air HP Clg Coil 27kBtu/hr 12.0EER, !- Name + {ebc3d7c1-49f1-4529-9db2-933eff9edb6c}, !- Water Inlet Node Name + {20cc165d-0426-44ef-92b0-0d4e1379b54b}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.400041633364314, !- Rated Air Flow Rate {m3/s} + 0.000168533390341349, !- Rated Water Flow Rate {m3/s} + 8044.71006005495, !- Rated Total Cooling Capacity {W} + 5489.94587086899, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {0bd058c2-d2c1-40d7-9160-771f20928a35}, !- Handle + Zone Outpatient ProcedureRoom B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {79f7e769-f929-4139-aa60-33840e4c4b58}, !- Inlet Port + {ebc3d7c1-49f1-4529-9db2-933eff9edb6c}; !- Outlet Port + +OS:Connection, + {79f7e769-f929-4139-aa60-33840e4c4b58}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 163, !- Outlet Port + {0bd058c2-d2c1-40d7-9160-771f20928a35}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {c4cefb72-bb71-45e3-a835-3a11747062d5}, !- Handle + Zone Outpatient ProcedureRoom B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {20cc165d-0426-44ef-92b0-0d4e1379b54b}, !- Inlet Port + {af32d11d-0c6b-4b9c-a4a1-dbe82001f39a}; !- Outlet Port + +OS:Connection, + {ebc3d7c1-49f1-4529-9db2-933eff9edb6c}, !- Handle + {0bd058c2-d2c1-40d7-9160-771f20928a35}, !- Source Object + 3, !- Outlet Port + {8b7a62c9-a721-43c9-b346-2a85a4948215}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {20cc165d-0426-44ef-92b0-0d4e1379b54b}, !- Handle + {8b7a62c9-a721-43c9-b346-2a85a4948215}, !- Source Object + 3, !- Outlet Port + {c4cefb72-bb71-45e3-a835-3a11747062d5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {af32d11d-0c6b-4b9c-a4a1-dbe82001f39a}, !- Handle + {c4cefb72-bb71-45e3-a835-3a11747062d5}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 163; !- Inlet Port + +OS:Fan:OnOff, + {0414356c-84d1-40e3-b083-db53734b05c7}, !- Handle + Zone Outpatient ProcedureRoom B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.400041633364314, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {f6d10c96-3940-49f4-b848-212fb5b1a7d7}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {03764dd5-7969-4917-bed2-a1f5f5c509fd}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {f6d10c96-3940-49f4-b848-212fb5b1a7d7}, !- Handle + Fan On Off Power Curve 79, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {03764dd5-7969-4917-bed2-a1f5f5c509fd}, !- Handle + Fan On Off Efficiency Curve 79, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {6fc73354-8e0b-4a0b-8521-fdc92008f676}, !- Handle + Zone Outpatient ProcedureRoom B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {885e5185-cded-4d47-bb32-4b0454786af7}, !- Air Inlet Node Name + {2cca1185-8a02-4314-98b3-54f8a75d0e20}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.400041633364314, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.400041633364314, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.400041633364314, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {0414356c-84d1-40e3-b083-db53734b05c7}, !- Supply Air Fan Name + {304248d3-e6c6-4180-b3b7-b1f01ce0b00c}, !- Heating Coil Name + {8b7a62c9-a721-43c9-b346-2a85a4948215}, !- Cooling Coil Name + {2cff9fd1-9e87-4958-9d4c-20ce374843b7}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {6de381c4-a4d7-4f23-bba6-6e1c60cf7689}, !- Handle + Zone Outpatient ProcedureRoom B - Story ground WSHP Inlet Air Node, !- Name + {aa80830e-38d4-4975-bcaa-e6d139272c3c}, !- Inlet Port + {885e5185-cded-4d47-bb32-4b0454786af7}; !- Outlet Port + +OS:Connection, + {aa80830e-38d4-4975-bcaa-e6d139272c3c}, !- Handle + {23b9d6de-5f05-4dfd-97ca-af4ca7d7e130}, !- Source Object + 2, !- Outlet Port + {6de381c4-a4d7-4f23-bba6-6e1c60cf7689}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {885e5185-cded-4d47-bb32-4b0454786af7}, !- Handle + {6de381c4-a4d7-4f23-bba6-6e1c60cf7689}, !- Source Object + 3, !- Outlet Port + {6fc73354-8e0b-4a0b-8521-fdc92008f676}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {86ffe3df-e41a-4233-a539-802f3a7f021f}, !- Handle + Zone Outpatient ProcedureRoom B - Story ground WSHP Outlet Air Node, !- Name + {2cca1185-8a02-4314-98b3-54f8a75d0e20}, !- Inlet Port + {9fe9e647-87af-48a6-997f-1fa9c3cb0ca9}; !- Outlet Port + +OS:Connection, + {9fe9e647-87af-48a6-997f-1fa9c3cb0ca9}, !- Handle + {86ffe3df-e41a-4233-a539-802f3a7f021f}, !- Source Object + 3, !- Outlet Port + {2b162420-27cc-4608-b258-0c98fc7023c6}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {2cca1185-8a02-4314-98b3-54f8a75d0e20}, !- Handle + {6fc73354-8e0b-4a0b-8521-fdc92008f676}, !- Source Object + 4, !- Outlet Port + {86ffe3df-e41a-4233-a539-802f3a7f021f}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {5f4fa14b-b73d-4408-81d3-15f1a2a848a3}, !- Handle + Zone Outpatient ProcedureRoom C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 498.664738547987, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {b044db50-036f-43bf-92b9-58d96d38bfe2}, !- Handle + Zone Outpatient ProcedureRoom C - Story ground Water-to-Air HP Htg Coil 3 Clg kBtu/hr 4.2COPH, !- Name + {62e691b7-b796-4d87-a7a9-fbf77c16c66b}, !- Water Inlet Node Name + {e6633731-0acf-4689-a359-66d06598bf5e}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0501898688165941, !- Rated Air Flow Rate {m3/s} + 2.10633704711477e-05, !- Rated Water Flow Rate {m3/s} + 952.100711326582, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {344c1086-ee36-4ba8-b66c-f3b7b5a11391}, !- Handle + Zone Outpatient ProcedureRoom C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {b478d616-3ad3-4e63-a8ac-2ea5f0df3f45}, !- Inlet Port + {62e691b7-b796-4d87-a7a9-fbf77c16c66b}; !- Outlet Port + +OS:Connection, + {b478d616-3ad3-4e63-a8ac-2ea5f0df3f45}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 164, !- Outlet Port + {344c1086-ee36-4ba8-b66c-f3b7b5a11391}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {d5389d01-14cf-4198-806e-ba73caa7fb86}, !- Handle + Zone Outpatient ProcedureRoom C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {e6633731-0acf-4689-a359-66d06598bf5e}, !- Inlet Port + {56e72ecf-4a5a-45fe-a56e-6a06bc53d586}; !- Outlet Port + +OS:Connection, + {62e691b7-b796-4d87-a7a9-fbf77c16c66b}, !- Handle + {344c1086-ee36-4ba8-b66c-f3b7b5a11391}, !- Source Object + 3, !- Outlet Port + {b044db50-036f-43bf-92b9-58d96d38bfe2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e6633731-0acf-4689-a359-66d06598bf5e}, !- Handle + {b044db50-036f-43bf-92b9-58d96d38bfe2}, !- Source Object + 3, !- Outlet Port + {d5389d01-14cf-4198-806e-ba73caa7fb86}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {56e72ecf-4a5a-45fe-a56e-6a06bc53d586}, !- Handle + {d5389d01-14cf-4198-806e-ba73caa7fb86}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 164; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {32d5ca22-5a89-4243-8d34-e65d4232fcb6}, !- Handle + Zone Outpatient ProcedureRoom C - Story ground Water-to-Air HP Clg Coil 3kBtu/hr 11.2EER, !- Name + {d1ae20f4-aaac-4187-8524-3769709fe146}, !- Water Inlet Node Name + {97aeb758-0e2c-4123-ad22-c3d3713eafb5}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0501898688165941, !- Rated Air Flow Rate {m3/s} + 2.10633704711477e-05, !- Rated Water Flow Rate {m3/s} + 1005.43107798819, !- Rated Total Cooling Capacity {W} + 687.202508228403, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {dacd219a-b0d2-4df9-8756-198aff052da5}, !- Handle + Zone Outpatient ProcedureRoom C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {0c4d1c08-1347-4043-bc46-f1d4cfb6ce8c}, !- Inlet Port + {d1ae20f4-aaac-4187-8524-3769709fe146}; !- Outlet Port + +OS:Connection, + {0c4d1c08-1347-4043-bc46-f1d4cfb6ce8c}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 165, !- Outlet Port + {dacd219a-b0d2-4df9-8756-198aff052da5}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {33fc8e81-4c12-477c-853a-1b9e230754b1}, !- Handle + Zone Outpatient ProcedureRoom C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {97aeb758-0e2c-4123-ad22-c3d3713eafb5}, !- Inlet Port + {206e4931-22de-41b2-865d-53204508ebef}; !- Outlet Port + +OS:Connection, + {d1ae20f4-aaac-4187-8524-3769709fe146}, !- Handle + {dacd219a-b0d2-4df9-8756-198aff052da5}, !- Source Object + 3, !- Outlet Port + {32d5ca22-5a89-4243-8d34-e65d4232fcb6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {97aeb758-0e2c-4123-ad22-c3d3713eafb5}, !- Handle + {32d5ca22-5a89-4243-8d34-e65d4232fcb6}, !- Source Object + 3, !- Outlet Port + {33fc8e81-4c12-477c-853a-1b9e230754b1}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {206e4931-22de-41b2-865d-53204508ebef}, !- Handle + {33fc8e81-4c12-477c-853a-1b9e230754b1}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 165; !- Inlet Port + +OS:Fan:OnOff, + {dc3c1cca-87b6-4564-aaaa-0a619ae007fa}, !- Handle + Zone Outpatient ProcedureRoom C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0501898688165941, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {f3d16c24-1017-4275-9bb6-58ec13f4104c}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {f53f3f2f-ea5e-48d6-aae7-ed28878ad4aa}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {f3d16c24-1017-4275-9bb6-58ec13f4104c}, !- Handle + Fan On Off Power Curve 80, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {f53f3f2f-ea5e-48d6-aae7-ed28878ad4aa}, !- Handle + Fan On Off Efficiency Curve 80, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {86451414-e9d9-41c4-94c5-a72405e1fe09}, !- Handle + Zone Outpatient ProcedureRoom C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {0187d2d5-80f6-4791-b0ae-ca475b63440d}, !- Air Inlet Node Name + {4f6275fb-cfb3-49d6-b4cc-8abc1ac2282c}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0501898688165941, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0501898688165941, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0501898688165941, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {dc3c1cca-87b6-4564-aaaa-0a619ae007fa}, !- Supply Air Fan Name + {b044db50-036f-43bf-92b9-58d96d38bfe2}, !- Heating Coil Name + {32d5ca22-5a89-4243-8d34-e65d4232fcb6}, !- Cooling Coil Name + {5f4fa14b-b73d-4408-81d3-15f1a2a848a3}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {8ffce3b9-fa2e-4511-913c-5bd15a25de38}, !- Handle + Zone Outpatient ProcedureRoom C - Story ground WSHP Inlet Air Node, !- Name + {eb60d2b6-c6ec-4f9b-8e89-a1c32b86a45c}, !- Inlet Port + {0187d2d5-80f6-4791-b0ae-ca475b63440d}; !- Outlet Port + +OS:Connection, + {eb60d2b6-c6ec-4f9b-8e89-a1c32b86a45c}, !- Handle + {b82da2c4-1a9c-4340-b927-28067e5b318f}, !- Source Object + 2, !- Outlet Port + {8ffce3b9-fa2e-4511-913c-5bd15a25de38}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0187d2d5-80f6-4791-b0ae-ca475b63440d}, !- Handle + {8ffce3b9-fa2e-4511-913c-5bd15a25de38}, !- Source Object + 3, !- Outlet Port + {86451414-e9d9-41c4-94c5-a72405e1fe09}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {f0ea5fc2-e78b-4da2-a795-ac84784691ad}, !- Handle + Zone Outpatient ProcedureRoom C - Story ground WSHP Outlet Air Node, !- Name + {4f6275fb-cfb3-49d6-b4cc-8abc1ac2282c}, !- Inlet Port + {4d39ba3f-bee0-4128-b649-215647c97c4b}; !- Outlet Port + +OS:Connection, + {4d39ba3f-bee0-4128-b649-215647c97c4b}, !- Handle + {f0ea5fc2-e78b-4da2-a795-ac84784691ad}, !- Source Object + 3, !- Outlet Port + {b8c6ff64-a402-4049-8f77-5742b630880f}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {4f6275fb-cfb3-49d6-b4cc-8abc1ac2282c}, !- Handle + {86451414-e9d9-41c4-94c5-a72405e1fe09}, !- Source Object + 4, !- Outlet Port + {f0ea5fc2-e78b-4da2-a795-ac84784691ad}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {c60cf747-a6a1-49ca-8cb4-ec44ead6536b}, !- Handle + Zone Outpatient Reception A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 4544.48940709365, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {87d4053c-405f-416b-8591-de0a1f043da2}, !- Handle + Zone Outpatient Reception A - Story ground Water-to-Air HP Htg Coil 34 Clg kBtu/hr 4.2COPH, !- Name + {f31e7623-e3d9-49e3-98f4-ab91ed494a52}, !- Water Inlet Node Name + {d3d9afed-c1a5-4c4d-9965-84a13a7e8ab7}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.623351486893841, !- Rated Air Flow Rate {m3/s} + 0.000219583204514566, !- Rated Water Flow Rate {m3/s} + 9925.53995572852, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {4d9c2ff7-a1e3-4171-8469-d51118cb613e}, !- Handle + Zone Outpatient Reception A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {dbb5c07c-dc14-47b0-ae4f-4ef422609fc7}, !- Inlet Port + {f31e7623-e3d9-49e3-98f4-ab91ed494a52}; !- Outlet Port + +OS:Connection, + {dbb5c07c-dc14-47b0-ae4f-4ef422609fc7}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 166, !- Outlet Port + {4d9c2ff7-a1e3-4171-8469-d51118cb613e}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {8eabf0e9-e3b0-4f76-89f8-15f0f89a5a10}, !- Handle + Zone Outpatient Reception A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {d3d9afed-c1a5-4c4d-9965-84a13a7e8ab7}, !- Inlet Port + {b76d6df4-a8e1-4c56-8bdd-77d121ebf5a0}; !- Outlet Port + +OS:Connection, + {f31e7623-e3d9-49e3-98f4-ab91ed494a52}, !- Handle + {4d9c2ff7-a1e3-4171-8469-d51118cb613e}, !- Source Object + 3, !- Outlet Port + {87d4053c-405f-416b-8591-de0a1f043da2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d3d9afed-c1a5-4c4d-9965-84a13a7e8ab7}, !- Handle + {87d4053c-405f-416b-8591-de0a1f043da2}, !- Source Object + 3, !- Outlet Port + {8eabf0e9-e3b0-4f76-89f8-15f0f89a5a10}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b76d6df4-a8e1-4c56-8bdd-77d121ebf5a0}, !- Handle + {8eabf0e9-e3b0-4f76-89f8-15f0f89a5a10}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 166; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {cc489f11-05ea-4b20-951f-0877ef0ab4af}, !- Handle + Zone Outpatient Reception A - Story ground Water-to-Air HP Clg Coil 34kBtu/hr 12.0EER, !- Name + {991af651-ceb8-46b5-a69f-4dd9b45a70ea}, !- Water Inlet Node Name + {b91b9a2a-f7e3-40ee-aeca-c5d5176eb248}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.623351486893841, !- Rated Air Flow Rate {m3/s} + 0.000219583204514566, !- Rated Water Flow Rate {m3/s} + 10481.5028689542, !- Rated Total Cooling Capacity {W} + 7795.12000360421, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {34ba8367-b238-485b-ad39-2787abfc0462}, !- Handle + Zone Outpatient Reception A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {e87b063c-aee5-473d-b787-965e8eadcc07}, !- Inlet Port + {991af651-ceb8-46b5-a69f-4dd9b45a70ea}; !- Outlet Port + +OS:Connection, + {e87b063c-aee5-473d-b787-965e8eadcc07}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 167, !- Outlet Port + {34ba8367-b238-485b-ad39-2787abfc0462}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {8ba66059-706c-458b-ac18-02b74d247baa}, !- Handle + Zone Outpatient Reception A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {b91b9a2a-f7e3-40ee-aeca-c5d5176eb248}, !- Inlet Port + {daf47e90-cd8c-46b8-827a-03b050aac28e}; !- Outlet Port + +OS:Connection, + {991af651-ceb8-46b5-a69f-4dd9b45a70ea}, !- Handle + {34ba8367-b238-485b-ad39-2787abfc0462}, !- Source Object + 3, !- Outlet Port + {cc489f11-05ea-4b20-951f-0877ef0ab4af}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b91b9a2a-f7e3-40ee-aeca-c5d5176eb248}, !- Handle + {cc489f11-05ea-4b20-951f-0877ef0ab4af}, !- Source Object + 3, !- Outlet Port + {8ba66059-706c-458b-ac18-02b74d247baa}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {daf47e90-cd8c-46b8-827a-03b050aac28e}, !- Handle + {8ba66059-706c-458b-ac18-02b74d247baa}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 167; !- Inlet Port + +OS:Fan:OnOff, + {c43c80b1-d467-4dc6-9295-87141b47832e}, !- Handle + Zone Outpatient Reception A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.623351486893841, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {c3896e53-4784-4628-8035-98ab99cfc24f}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {34b991a7-975f-4031-8230-ccc5de3f515d}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {c3896e53-4784-4628-8035-98ab99cfc24f}, !- Handle + Fan On Off Power Curve 81, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {34b991a7-975f-4031-8230-ccc5de3f515d}, !- Handle + Fan On Off Efficiency Curve 81, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {dc4ec378-f70e-4345-bd57-f6e66db0c641}, !- Handle + Zone Outpatient Reception A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {a2597ccf-c390-40d7-a743-891cfe392102}, !- Air Inlet Node Name + {889b7813-c4b1-44c1-8861-acdbe0181095}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.623351486893841, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.623351486893841, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.623351486893841, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {c43c80b1-d467-4dc6-9295-87141b47832e}, !- Supply Air Fan Name + {87d4053c-405f-416b-8591-de0a1f043da2}, !- Heating Coil Name + {cc489f11-05ea-4b20-951f-0877ef0ab4af}, !- Cooling Coil Name + {c60cf747-a6a1-49ca-8cb4-ec44ead6536b}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {1276b5c8-00fd-40e5-a0ab-9b669c87ebcc}, !- Handle + Zone Outpatient Reception A - Story ground WSHP Inlet Air Node, !- Name + {56f9c0a4-bfcb-4ba7-aeb7-480f52b72524}, !- Inlet Port + {a2597ccf-c390-40d7-a743-891cfe392102}; !- Outlet Port + +OS:Connection, + {56f9c0a4-bfcb-4ba7-aeb7-480f52b72524}, !- Handle + {9cfa685f-2489-4359-b8b8-fce6da709bfa}, !- Source Object + 2, !- Outlet Port + {1276b5c8-00fd-40e5-a0ab-9b669c87ebcc}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a2597ccf-c390-40d7-a743-891cfe392102}, !- Handle + {1276b5c8-00fd-40e5-a0ab-9b669c87ebcc}, !- Source Object + 3, !- Outlet Port + {dc4ec378-f70e-4345-bd57-f6e66db0c641}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {e4b6e949-081d-44c5-85f6-bbe33c36ac70}, !- Handle + Zone Outpatient Reception A - Story ground WSHP Outlet Air Node, !- Name + {889b7813-c4b1-44c1-8861-acdbe0181095}, !- Inlet Port + {cb1b5dbe-21ef-4608-8c89-cea9d2208110}; !- Outlet Port + +OS:Connection, + {cb1b5dbe-21ef-4608-8c89-cea9d2208110}, !- Handle + {e4b6e949-081d-44c5-85f6-bbe33c36ac70}, !- Source Object + 3, !- Outlet Port + {0ef8831c-cdd7-47e7-9231-e5402d65e1fb}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {889b7813-c4b1-44c1-8861-acdbe0181095}, !- Handle + {dc4ec378-f70e-4345-bd57-f6e66db0c641}, !- Source Object + 4, !- Outlet Port + {e4b6e949-081d-44c5-85f6-bbe33c36ac70}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {567dc267-9903-4767-93cc-786bb284ae3d}, !- Handle + Zone Outpatient Reception B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 18861.16794555, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {902b2d1a-a527-40a8-8915-1c12de8fbc37}, !- Handle + Zone Outpatient Reception B - Story ground Water-to-Air HP Htg Coil 117 Clg kBtu/hr 4.2COPH, !- Name + {9c7a9140-3436-4a57-b983-69cd3e58a9fb}, !- Water Inlet Node Name + {283963b7-f269-4114-8e7e-469b86e0a150}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 1.54783912395865, !- Rated Air Flow Rate {m3/s} + 0.00070254102987675, !- Rated Water Flow Rate {m3/s} + 31756.0674915726, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {4484d2f1-2232-4b78-aa10-13a677e3e341}, !- Handle + Zone Outpatient Reception B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {9d1595df-b239-4838-8122-97a61657281a}, !- Inlet Port + {9c7a9140-3436-4a57-b983-69cd3e58a9fb}; !- Outlet Port + +OS:Connection, + {9d1595df-b239-4838-8122-97a61657281a}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 168, !- Outlet Port + {4484d2f1-2232-4b78-aa10-13a677e3e341}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {08c967c7-2dcd-404e-9eea-a38e5d14a53c}, !- Handle + Zone Outpatient Reception B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {283963b7-f269-4114-8e7e-469b86e0a150}, !- Inlet Port + {4817aa5c-d57b-426c-bb24-15ce96d346a0}; !- Outlet Port + +OS:Connection, + {9c7a9140-3436-4a57-b983-69cd3e58a9fb}, !- Handle + {4484d2f1-2232-4b78-aa10-13a677e3e341}, !- Source Object + 3, !- Outlet Port + {902b2d1a-a527-40a8-8915-1c12de8fbc37}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {283963b7-f269-4114-8e7e-469b86e0a150}, !- Handle + {902b2d1a-a527-40a8-8915-1c12de8fbc37}, !- Source Object + 3, !- Outlet Port + {08c967c7-2dcd-404e-9eea-a38e5d14a53c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4817aa5c-d57b-426c-bb24-15ce96d346a0}, !- Handle + {08c967c7-2dcd-404e-9eea-a38e5d14a53c}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 168; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {0f45dce9-058b-4c97-b17f-7fcb6a78babd}, !- Handle + Zone Outpatient Reception B - Story ground Water-to-Air HP Clg Coil 117kBtu/hr 12.0EER, !- Name + {90cb5744-816c-4f9b-a0b2-9dfbe171ace5}, !- Water Inlet Node Name + {aed60423-f187-4c33-8f31-52bc6b75cb8b}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 1.54783912395865, !- Rated Air Flow Rate {m3/s} + 0.00070254102987675, !- Rated Water Flow Rate {m3/s} + 33534.8317576937, !- Rated Total Cooling Capacity {W} + 22277.5319127299, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {a285cdf6-521a-4a95-91e5-5323eff3b8cb}, !- Handle + Zone Outpatient Reception B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {63fac9c8-59fc-421b-ac3e-9a8868a70152}, !- Inlet Port + {90cb5744-816c-4f9b-a0b2-9dfbe171ace5}; !- Outlet Port + +OS:Connection, + {63fac9c8-59fc-421b-ac3e-9a8868a70152}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 169, !- Outlet Port + {a285cdf6-521a-4a95-91e5-5323eff3b8cb}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {0b9d5940-8b3d-4837-8936-4e918a9a7aa3}, !- Handle + Zone Outpatient Reception B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {aed60423-f187-4c33-8f31-52bc6b75cb8b}, !- Inlet Port + {286c476e-6ed1-4058-875b-d91d258de5cc}; !- Outlet Port + +OS:Connection, + {90cb5744-816c-4f9b-a0b2-9dfbe171ace5}, !- Handle + {a285cdf6-521a-4a95-91e5-5323eff3b8cb}, !- Source Object + 3, !- Outlet Port + {0f45dce9-058b-4c97-b17f-7fcb6a78babd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {aed60423-f187-4c33-8f31-52bc6b75cb8b}, !- Handle + {0f45dce9-058b-4c97-b17f-7fcb6a78babd}, !- Source Object + 3, !- Outlet Port + {0b9d5940-8b3d-4837-8936-4e918a9a7aa3}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {286c476e-6ed1-4058-875b-d91d258de5cc}, !- Handle + {0b9d5940-8b3d-4837-8936-4e918a9a7aa3}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 169; !- Inlet Port + +OS:Fan:OnOff, + {26d4da2c-d526-4603-921f-ae0846556d83}, !- Handle + Zone Outpatient Reception B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 1.54783912395865, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {d193d923-1adf-46b6-897e-597b54757e58}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {c3cc8a2d-8afe-4832-a3eb-eeea3b555707}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {d193d923-1adf-46b6-897e-597b54757e58}, !- Handle + Fan On Off Power Curve 82, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {c3cc8a2d-8afe-4832-a3eb-eeea3b555707}, !- Handle + Fan On Off Efficiency Curve 82, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {41b2cfd1-b4c6-4675-8e02-e53b0f7e12e1}, !- Handle + Zone Outpatient Reception B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {2c6675ad-269e-4436-ba7f-5b1941bb7aac}, !- Air Inlet Node Name + {67f37ed2-24c6-47fb-bc59-095d46a623d0}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 1.54783912395865, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 1.54783912395865, !- Supply Air Flow Rate During Heating Operation {m3/s} + 1.54783912395865, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {26d4da2c-d526-4603-921f-ae0846556d83}, !- Supply Air Fan Name + {902b2d1a-a527-40a8-8915-1c12de8fbc37}, !- Heating Coil Name + {0f45dce9-058b-4c97-b17f-7fcb6a78babd}, !- Cooling Coil Name + {567dc267-9903-4767-93cc-786bb284ae3d}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {8e57a00a-4cb7-40c9-b2b5-0508440a4470}, !- Handle + Zone Outpatient Reception B - Story ground WSHP Inlet Air Node, !- Name + {8e670dd9-0e69-4307-a5ba-cf9ca5370ee5}, !- Inlet Port + {2c6675ad-269e-4436-ba7f-5b1941bb7aac}; !- Outlet Port + +OS:Connection, + {8e670dd9-0e69-4307-a5ba-cf9ca5370ee5}, !- Handle + {e638255a-e85e-4ea9-a46d-de49c2e84d85}, !- Source Object + 2, !- Outlet Port + {8e57a00a-4cb7-40c9-b2b5-0508440a4470}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2c6675ad-269e-4436-ba7f-5b1941bb7aac}, !- Handle + {8e57a00a-4cb7-40c9-b2b5-0508440a4470}, !- Source Object + 3, !- Outlet Port + {41b2cfd1-b4c6-4675-8e02-e53b0f7e12e1}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {807a2886-1cd7-48ec-8f16-bd51bc64dd4d}, !- Handle + Zone Outpatient Reception B - Story ground WSHP Outlet Air Node, !- Name + {67f37ed2-24c6-47fb-bc59-095d46a623d0}, !- Inlet Port + {a528411e-4578-4046-b505-fd3c2f498d5c}; !- Outlet Port + +OS:Connection, + {a528411e-4578-4046-b505-fd3c2f498d5c}, !- Handle + {807a2886-1cd7-48ec-8f16-bd51bc64dd4d}, !- Source Object + 3, !- Outlet Port + {f34d022a-5fa3-49db-a0f2-ea1e52c6b28b}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {67f37ed2-24c6-47fb-bc59-095d46a623d0}, !- Handle + {41b2cfd1-b4c6-4675-8e02-e53b0f7e12e1}, !- Source Object + 4, !- Outlet Port + {807a2886-1cd7-48ec-8f16-bd51bc64dd4d}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {ab76a722-f27f-48dd-bb5b-2b5ce6cec98d}, !- Handle + Zone Outpatient Reception C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 4555.4023410335, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {63e552b1-2f79-455c-8933-027ba60585dc}, !- Handle + Zone Outpatient Reception C - Story ground Water-to-Air HP Htg Coil 24 Clg kBtu/hr 4.2COPH, !- Name + {ddd9a70e-17b4-48d2-9c1b-1bcb1080ee26}, !- Water Inlet Node Name + {81bcbb98-6923-4ffe-aff7-4843a6970561}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.40896377507655, !- Rated Air Flow Rate {m3/s} + 0.000153235541373404, !- Rated Water Flow Rate {m3/s} + 6926.51103212458, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {9f9097cb-0373-48c5-ab93-f6f35fde11c1}, !- Handle + Zone Outpatient Reception C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {cee333a8-d7ff-4a04-acbe-943c13ca7a9a}, !- Inlet Port + {ddd9a70e-17b4-48d2-9c1b-1bcb1080ee26}; !- Outlet Port + +OS:Connection, + {cee333a8-d7ff-4a04-acbe-943c13ca7a9a}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 170, !- Outlet Port + {9f9097cb-0373-48c5-ab93-f6f35fde11c1}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {5124f3b2-acfa-47f4-acdc-bce4fc445577}, !- Handle + Zone Outpatient Reception C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {81bcbb98-6923-4ffe-aff7-4843a6970561}, !- Inlet Port + {ba693578-e818-4722-a56f-5c67a9857206}; !- Outlet Port + +OS:Connection, + {ddd9a70e-17b4-48d2-9c1b-1bcb1080ee26}, !- Handle + {9f9097cb-0373-48c5-ab93-f6f35fde11c1}, !- Source Object + 3, !- Outlet Port + {63e552b1-2f79-455c-8933-027ba60585dc}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {81bcbb98-6923-4ffe-aff7-4843a6970561}, !- Handle + {63e552b1-2f79-455c-8933-027ba60585dc}, !- Source Object + 3, !- Outlet Port + {5124f3b2-acfa-47f4-acdc-bce4fc445577}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ba693578-e818-4722-a56f-5c67a9857206}, !- Handle + {5124f3b2-acfa-47f4-acdc-bce4fc445577}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 170; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {c0fbb844-ae3d-43f6-827d-c83b8073e349}, !- Handle + Zone Outpatient Reception C - Story ground Water-to-Air HP Clg Coil 24kBtu/hr 12.0EER, !- Name + {7b657907-52a2-4a6f-91eb-99e7b8f3d0f3}, !- Water Inlet Node Name + {7afb2505-7713-483e-be6d-1500ba2816d6}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.40896377507655, !- Rated Air Flow Rate {m3/s} + 0.000153235541373404, !- Rated Water Flow Rate {m3/s} + 7314.48823730297, !- Rated Total Cooling Capacity {W} + 5265.18564084625, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {562f4bde-c428-4093-b772-5b687e229eda}, !- Handle + Zone Outpatient Reception C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {dd1e7509-cbf9-4ba2-9674-3b7ea4f88f7c}, !- Inlet Port + {7b657907-52a2-4a6f-91eb-99e7b8f3d0f3}; !- Outlet Port + +OS:Connection, + {dd1e7509-cbf9-4ba2-9674-3b7ea4f88f7c}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 171, !- Outlet Port + {562f4bde-c428-4093-b772-5b687e229eda}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {a2dbd367-514d-45ff-a68e-ba87a3566c29}, !- Handle + Zone Outpatient Reception C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {7afb2505-7713-483e-be6d-1500ba2816d6}, !- Inlet Port + {e4149f04-5527-4ab5-9021-dc4b1f2097eb}; !- Outlet Port + +OS:Connection, + {7b657907-52a2-4a6f-91eb-99e7b8f3d0f3}, !- Handle + {562f4bde-c428-4093-b772-5b687e229eda}, !- Source Object + 3, !- Outlet Port + {c0fbb844-ae3d-43f6-827d-c83b8073e349}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7afb2505-7713-483e-be6d-1500ba2816d6}, !- Handle + {c0fbb844-ae3d-43f6-827d-c83b8073e349}, !- Source Object + 3, !- Outlet Port + {a2dbd367-514d-45ff-a68e-ba87a3566c29}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e4149f04-5527-4ab5-9021-dc4b1f2097eb}, !- Handle + {a2dbd367-514d-45ff-a68e-ba87a3566c29}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 171; !- Inlet Port + +OS:Fan:OnOff, + {78558682-8175-4533-aff8-3ba2c7d76a3e}, !- Handle + Zone Outpatient Reception C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.40896377507655, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {d00bcd29-a7ba-4326-a32e-1a61813b11e6}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {186318b1-9e2c-4b5a-bb7c-c8db665db27e}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {d00bcd29-a7ba-4326-a32e-1a61813b11e6}, !- Handle + Fan On Off Power Curve 83, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {186318b1-9e2c-4b5a-bb7c-c8db665db27e}, !- Handle + Fan On Off Efficiency Curve 83, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {0ff273e3-6798-4751-aa0d-145e2672d3c0}, !- Handle + Zone Outpatient Reception C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {42f6595e-f96e-4e74-988a-e4a54ea15858}, !- Air Inlet Node Name + {782b543b-d2b3-4c3e-a1db-81354a2c2ffe}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.40896377507655, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.40896377507655, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.40896377507655, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {78558682-8175-4533-aff8-3ba2c7d76a3e}, !- Supply Air Fan Name + {63e552b1-2f79-455c-8933-027ba60585dc}, !- Heating Coil Name + {c0fbb844-ae3d-43f6-827d-c83b8073e349}, !- Cooling Coil Name + {ab76a722-f27f-48dd-bb5b-2b5ce6cec98d}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {9bbfc848-151d-43bf-a07c-dee28a4f0f81}, !- Handle + Zone Outpatient Reception C - Story ground WSHP Inlet Air Node, !- Name + {6f3dc8db-f753-4cd2-a90a-e9ca2d8a6826}, !- Inlet Port + {42f6595e-f96e-4e74-988a-e4a54ea15858}; !- Outlet Port + +OS:Connection, + {6f3dc8db-f753-4cd2-a90a-e9ca2d8a6826}, !- Handle + {ef2de2ab-a265-45dc-a0c7-227ba5972b81}, !- Source Object + 2, !- Outlet Port + {9bbfc848-151d-43bf-a07c-dee28a4f0f81}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {42f6595e-f96e-4e74-988a-e4a54ea15858}, !- Handle + {9bbfc848-151d-43bf-a07c-dee28a4f0f81}, !- Source Object + 3, !- Outlet Port + {0ff273e3-6798-4751-aa0d-145e2672d3c0}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {ba9bfefb-ce9a-492a-927a-212923381467}, !- Handle + Zone Outpatient Reception C - Story ground WSHP Outlet Air Node, !- Name + {782b543b-d2b3-4c3e-a1db-81354a2c2ffe}, !- Inlet Port + {dcd1e8a0-18a2-41e3-b49d-1965b40817f7}; !- Outlet Port + +OS:Connection, + {dcd1e8a0-18a2-41e3-b49d-1965b40817f7}, !- Handle + {ba9bfefb-ce9a-492a-927a-212923381467}, !- Source Object + 3, !- Outlet Port + {0cccaa20-a420-41cd-b806-5eeb753bf331}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {782b543b-d2b3-4c3e-a1db-81354a2c2ffe}, !- Handle + {0ff273e3-6798-4751-aa0d-145e2672d3c0}, !- Source Object + 4, !- Outlet Port + {ba9bfefb-ce9a-492a-927a-212923381467}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {3c2c6608-8536-4db3-87c6-09066dd265e1}, !- Handle + Zone Outpatient Soil Work A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 670.78738493987, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {688a4035-e8d0-4c10-bd12-5b3ac75a73b9}, !- Handle + Zone Outpatient Soil Work A - Story ground Water-to-Air HP Htg Coil 4 Clg kBtu/hr 4.2COPH, !- Name + {bad36c53-7fd4-45fb-b113-bc15d4fc830c}, !- Water Inlet Node Name + {bcf62db6-3256-411a-8caa-255517647ad0}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0568816060154145, !- Rated Air Flow Rate {m3/s} + 2.49966330442554e-05, !- Rated Water Flow Rate {m3/s} + 1129.89097043159, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {27e3fbf5-8156-4a58-9364-cac822741399}, !- Handle + Zone Outpatient Soil Work A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {533f172e-4c98-4e6a-923c-3c1051fda272}, !- Inlet Port + {bad36c53-7fd4-45fb-b113-bc15d4fc830c}; !- Outlet Port + +OS:Connection, + {533f172e-4c98-4e6a-923c-3c1051fda272}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 172, !- Outlet Port + {27e3fbf5-8156-4a58-9364-cac822741399}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {7376c88d-17c3-4714-bfa5-836a7271b512}, !- Handle + Zone Outpatient Soil Work A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {bcf62db6-3256-411a-8caa-255517647ad0}, !- Inlet Port + {12954d6a-03e2-453e-b665-204b36f29c5d}; !- Outlet Port + +OS:Connection, + {bad36c53-7fd4-45fb-b113-bc15d4fc830c}, !- Handle + {27e3fbf5-8156-4a58-9364-cac822741399}, !- Source Object + 3, !- Outlet Port + {688a4035-e8d0-4c10-bd12-5b3ac75a73b9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bcf62db6-3256-411a-8caa-255517647ad0}, !- Handle + {688a4035-e8d0-4c10-bd12-5b3ac75a73b9}, !- Source Object + 3, !- Outlet Port + {7376c88d-17c3-4714-bfa5-836a7271b512}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {12954d6a-03e2-453e-b665-204b36f29c5d}, !- Handle + {7376c88d-17c3-4714-bfa5-836a7271b512}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 172; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {529921a6-8ccb-4379-b587-7e019b555de2}, !- Handle + Zone Outpatient Soil Work A - Story ground Water-to-Air HP Clg Coil 4kBtu/hr 11.2EER, !- Name + {9508fa2f-d354-4ec5-b1d7-49b8f7dead1e}, !- Water Inlet Node Name + {3d5642bd-de5e-4a80-af63-1edf1cbeb9f0}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0568816060154145, !- Rated Air Flow Rate {m3/s} + 2.49966330442554e-05, !- Rated Water Flow Rate {m3/s} + 1193.1799681436, !- Rated Total Cooling Capacity {W} + 801.343065768721, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {1c04cdc6-7768-4c20-84a1-42e678e0e12e}, !- Handle + Zone Outpatient Soil Work A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {407ac526-5a2d-40cd-b201-2935eab7d11d}, !- Inlet Port + {9508fa2f-d354-4ec5-b1d7-49b8f7dead1e}; !- Outlet Port + +OS:Connection, + {407ac526-5a2d-40cd-b201-2935eab7d11d}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 173, !- Outlet Port + {1c04cdc6-7768-4c20-84a1-42e678e0e12e}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {95457582-d423-4a37-8cb4-85df4ae8e200}, !- Handle + Zone Outpatient Soil Work A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {3d5642bd-de5e-4a80-af63-1edf1cbeb9f0}, !- Inlet Port + {04571621-bbff-4774-8c07-cb056f1085e5}; !- Outlet Port + +OS:Connection, + {9508fa2f-d354-4ec5-b1d7-49b8f7dead1e}, !- Handle + {1c04cdc6-7768-4c20-84a1-42e678e0e12e}, !- Source Object + 3, !- Outlet Port + {529921a6-8ccb-4379-b587-7e019b555de2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3d5642bd-de5e-4a80-af63-1edf1cbeb9f0}, !- Handle + {529921a6-8ccb-4379-b587-7e019b555de2}, !- Source Object + 3, !- Outlet Port + {95457582-d423-4a37-8cb4-85df4ae8e200}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {04571621-bbff-4774-8c07-cb056f1085e5}, !- Handle + {95457582-d423-4a37-8cb4-85df4ae8e200}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 173; !- Inlet Port + +OS:Fan:OnOff, + {7673f0ac-23cd-4edb-9fd8-f09bbed1b88d}, !- Handle + Zone Outpatient Soil Work A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0568816060154145, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {1d260f4c-9b8d-49ee-8298-67dde6a9885b}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {308a0142-d527-49b0-aa67-af45cdd03cf5}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {1d260f4c-9b8d-49ee-8298-67dde6a9885b}, !- Handle + Fan On Off Power Curve 84, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {308a0142-d527-49b0-aa67-af45cdd03cf5}, !- Handle + Fan On Off Efficiency Curve 84, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {91164776-d335-4832-81ae-6815d50020a3}, !- Handle + Zone Outpatient Soil Work A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {d6f41d77-de37-477c-b82d-baf4fb22db37}, !- Air Inlet Node Name + {febafb20-f83c-476f-8231-1f74ffd79339}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0568816060154145, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0568816060154145, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0568816060154145, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {7673f0ac-23cd-4edb-9fd8-f09bbed1b88d}, !- Supply Air Fan Name + {688a4035-e8d0-4c10-bd12-5b3ac75a73b9}, !- Heating Coil Name + {529921a6-8ccb-4379-b587-7e019b555de2}, !- Cooling Coil Name + {3c2c6608-8536-4db3-87c6-09066dd265e1}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {024961a5-93d7-4d6e-a3bd-d7dbf6fc26a6}, !- Handle + Zone Outpatient Soil Work A - Story ground WSHP Inlet Air Node, !- Name + {5f3196a5-62ae-45bd-8eab-f557342002dd}, !- Inlet Port + {d6f41d77-de37-477c-b82d-baf4fb22db37}; !- Outlet Port + +OS:Connection, + {5f3196a5-62ae-45bd-8eab-f557342002dd}, !- Handle + {8ba5d81e-a2f3-4980-a216-9954bfd1c923}, !- Source Object + 3, !- Outlet Port + {024961a5-93d7-4d6e-a3bd-d7dbf6fc26a6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d6f41d77-de37-477c-b82d-baf4fb22db37}, !- Handle + {024961a5-93d7-4d6e-a3bd-d7dbf6fc26a6}, !- Source Object + 3, !- Outlet Port + {91164776-d335-4832-81ae-6815d50020a3}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {c9d0836e-0159-4720-bf5c-38672c293ff3}, !- Handle + Zone Outpatient Soil Work A - Story ground WSHP Outlet Air Node, !- Name + {febafb20-f83c-476f-8231-1f74ffd79339}, !- Inlet Port + {b1839211-d3d1-4a15-b7db-0e62a9fe6586}; !- Outlet Port + +OS:Connection, + {b1839211-d3d1-4a15-b7db-0e62a9fe6586}, !- Handle + {c9d0836e-0159-4720-bf5c-38672c293ff3}, !- Source Object + 3, !- Outlet Port + {9b4871c3-385e-40a5-a88f-5e6b4583e407}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {febafb20-f83c-476f-8231-1f74ffd79339}, !- Handle + {91164776-d335-4832-81ae-6815d50020a3}, !- Source Object + 4, !- Outlet Port + {c9d0836e-0159-4720-bf5c-38672c293ff3}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {5307e775-c766-4d78-b56a-e60ab1c7bdc1}, !- Handle + Zone Outpatient Soil Work B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 5122.42277010367, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {b7449cb3-5a15-4e9b-9059-f57c0856b40a}, !- Handle + Zone Outpatient Soil Work B - Story ground Water-to-Air HP Htg Coil 32 Clg kBtu/hr 4.2COPH, !- Name + {9bab5a23-81de-45b3-948a-e295fb786ac2}, !- Water Inlet Node Name + {855374b7-64e4-4fa8-b0b2-e9ba48572261}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.459206839798916, !- Rated Air Flow Rate {m3/s} + 0.000202082727994018, !- Rated Water Flow Rate {m3/s} + 9134.48820232601, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {ee64f28c-ad0a-4146-805b-5e0da9548e5f}, !- Handle + Zone Outpatient Soil Work B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {b40d99f5-3bb7-44f9-b6aa-09658d58364d}, !- Inlet Port + {9bab5a23-81de-45b3-948a-e295fb786ac2}; !- Outlet Port + +OS:Connection, + {b40d99f5-3bb7-44f9-b6aa-09658d58364d}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 174, !- Outlet Port + {ee64f28c-ad0a-4146-805b-5e0da9548e5f}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {ba127efb-fdfb-4dd8-ad66-3f9240eeaf04}, !- Handle + Zone Outpatient Soil Work B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {855374b7-64e4-4fa8-b0b2-e9ba48572261}, !- Inlet Port + {c8ed0e42-2962-441c-8175-cf4f0f35ee15}; !- Outlet Port + +OS:Connection, + {9bab5a23-81de-45b3-948a-e295fb786ac2}, !- Handle + {ee64f28c-ad0a-4146-805b-5e0da9548e5f}, !- Source Object + 3, !- Outlet Port + {b7449cb3-5a15-4e9b-9059-f57c0856b40a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {855374b7-64e4-4fa8-b0b2-e9ba48572261}, !- Handle + {b7449cb3-5a15-4e9b-9059-f57c0856b40a}, !- Source Object + 3, !- Outlet Port + {ba127efb-fdfb-4dd8-ad66-3f9240eeaf04}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c8ed0e42-2962-441c-8175-cf4f0f35ee15}, !- Handle + {ba127efb-fdfb-4dd8-ad66-3f9240eeaf04}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 174; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {62aa3716-d9da-4e7f-a1d3-a315beab98e6}, !- Handle + Zone Outpatient Soil Work B - Story ground Water-to-Air HP Clg Coil 32kBtu/hr 12.0EER, !- Name + {192dcbc3-40de-4641-8dd0-3dc331d68fb1}, !- Water Inlet Node Name + {92b75272-4125-44f1-83d0-f89765902234}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.459206839798916, !- Rated Air Flow Rate {m3/s} + 0.000202082727994018, !- Rated Water Flow Rate {m3/s} + 9646.14164329171, !- Rated Total Cooling Capacity {W} + 6475.11094727088, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {625ac006-ecdf-4ebe-a0ab-8c534464f260}, !- Handle + Zone Outpatient Soil Work B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {b1d6f964-fb4b-4211-9226-eb70b1be3244}, !- Inlet Port + {192dcbc3-40de-4641-8dd0-3dc331d68fb1}; !- Outlet Port + +OS:Connection, + {b1d6f964-fb4b-4211-9226-eb70b1be3244}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 175, !- Outlet Port + {625ac006-ecdf-4ebe-a0ab-8c534464f260}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {b0093deb-be68-4b02-a07e-74c30d2a4de8}, !- Handle + Zone Outpatient Soil Work B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {92b75272-4125-44f1-83d0-f89765902234}, !- Inlet Port + {308ef414-f58f-4fc2-b68c-8a96b11d732a}; !- Outlet Port + +OS:Connection, + {192dcbc3-40de-4641-8dd0-3dc331d68fb1}, !- Handle + {625ac006-ecdf-4ebe-a0ab-8c534464f260}, !- Source Object + 3, !- Outlet Port + {62aa3716-d9da-4e7f-a1d3-a315beab98e6}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {92b75272-4125-44f1-83d0-f89765902234}, !- Handle + {62aa3716-d9da-4e7f-a1d3-a315beab98e6}, !- Source Object + 3, !- Outlet Port + {b0093deb-be68-4b02-a07e-74c30d2a4de8}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {308ef414-f58f-4fc2-b68c-8a96b11d732a}, !- Handle + {b0093deb-be68-4b02-a07e-74c30d2a4de8}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 175; !- Inlet Port + +OS:Fan:OnOff, + {b4056238-6ec2-4d97-8505-82dbb076b04b}, !- Handle + Zone Outpatient Soil Work B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.459206839798916, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {c7d0f6ce-4fd9-45e3-ac7f-1e32d5ef1e7d}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {0eff9505-7f13-4002-895a-232ba6fa070b}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {c7d0f6ce-4fd9-45e3-ac7f-1e32d5ef1e7d}, !- Handle + Fan On Off Power Curve 85, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {0eff9505-7f13-4002-895a-232ba6fa070b}, !- Handle + Fan On Off Efficiency Curve 85, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {4592786c-a85d-45b1-b57e-8613f15fc31f}, !- Handle + Zone Outpatient Soil Work B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {dfa1b7fe-0a03-49a3-9392-79638133450e}, !- Air Inlet Node Name + {4217d7eb-a684-458b-8e18-ae0a8b75137c}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.459206839798916, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.459206839798916, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.459206839798916, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {b4056238-6ec2-4d97-8505-82dbb076b04b}, !- Supply Air Fan Name + {b7449cb3-5a15-4e9b-9059-f57c0856b40a}, !- Heating Coil Name + {62aa3716-d9da-4e7f-a1d3-a315beab98e6}, !- Cooling Coil Name + {5307e775-c766-4d78-b56a-e60ab1c7bdc1}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {ad44223b-5f63-43fe-837d-31f4c12b3320}, !- Handle + Zone Outpatient Soil Work B - Story ground WSHP Inlet Air Node, !- Name + {379d56c2-f5e5-4629-a145-8ac3790ccc59}, !- Inlet Port + {dfa1b7fe-0a03-49a3-9392-79638133450e}; !- Outlet Port + +OS:Connection, + {379d56c2-f5e5-4629-a145-8ac3790ccc59}, !- Handle + {731cd018-035e-4bb0-8ecc-424bfaec08ea}, !- Source Object + 3, !- Outlet Port + {ad44223b-5f63-43fe-837d-31f4c12b3320}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {dfa1b7fe-0a03-49a3-9392-79638133450e}, !- Handle + {ad44223b-5f63-43fe-837d-31f4c12b3320}, !- Source Object + 3, !- Outlet Port + {4592786c-a85d-45b1-b57e-8613f15fc31f}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {89f8733e-fac4-44c7-aa03-afb28b84e7e7}, !- Handle + Zone Outpatient Soil Work B - Story ground WSHP Outlet Air Node, !- Name + {4217d7eb-a684-458b-8e18-ae0a8b75137c}, !- Inlet Port + {7b6ff32f-1fde-47c0-9300-ad5ea52f39c4}; !- Outlet Port + +OS:Connection, + {7b6ff32f-1fde-47c0-9300-ad5ea52f39c4}, !- Handle + {89f8733e-fac4-44c7-aa03-afb28b84e7e7}, !- Source Object + 3, !- Outlet Port + {795f8027-57b8-4abe-b36d-bf5a95b479e9}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {4217d7eb-a684-458b-8e18-ae0a8b75137c}, !- Handle + {4592786c-a85d-45b1-b57e-8613f15fc31f}, !- Source Object + 4, !- Outlet Port + {89f8733e-fac4-44c7-aa03-afb28b84e7e7}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {d32ed91a-03db-4d3b-a694-cbff793cac3f}, !- Handle + Zone Outpatient Soil Work C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 670.787384940145, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {39115cc4-c304-4c38-877b-8c2d5650f416}, !- Handle + Zone Outpatient Soil Work C - Story ground Water-to-Air HP Htg Coil 4 Clg kBtu/hr 4.2COPH, !- Name + {20fc62f1-efc8-4d10-afb9-0767cfe10adf}, !- Water Inlet Node Name + {5201e20d-62ac-4501-a68e-3e3f2943ab14}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0568816060162331, !- Rated Air Flow Rate {m3/s} + 2.49966330445319e-05, !- Rated Water Flow Rate {m3/s} + 1129.89097044408, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {547b8906-5b2d-445f-a7e3-2fea87ba0680}, !- Handle + Zone Outpatient Soil Work C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {496fd66d-3715-426d-961d-b04b192e6cd5}, !- Inlet Port + {20fc62f1-efc8-4d10-afb9-0767cfe10adf}; !- Outlet Port + +OS:Connection, + {496fd66d-3715-426d-961d-b04b192e6cd5}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 176, !- Outlet Port + {547b8906-5b2d-445f-a7e3-2fea87ba0680}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {1abcb06b-c438-4a8e-8000-bc654e64e45d}, !- Handle + Zone Outpatient Soil Work C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {5201e20d-62ac-4501-a68e-3e3f2943ab14}, !- Inlet Port + {44d3c2cc-2879-4619-8477-f665c1782633}; !- Outlet Port + +OS:Connection, + {20fc62f1-efc8-4d10-afb9-0767cfe10adf}, !- Handle + {547b8906-5b2d-445f-a7e3-2fea87ba0680}, !- Source Object + 3, !- Outlet Port + {39115cc4-c304-4c38-877b-8c2d5650f416}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {5201e20d-62ac-4501-a68e-3e3f2943ab14}, !- Handle + {39115cc4-c304-4c38-877b-8c2d5650f416}, !- Source Object + 3, !- Outlet Port + {1abcb06b-c438-4a8e-8000-bc654e64e45d}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {44d3c2cc-2879-4619-8477-f665c1782633}, !- Handle + {1abcb06b-c438-4a8e-8000-bc654e64e45d}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 176; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {2469b01c-1a6f-4c50-a253-ee9130f40900}, !- Handle + Zone Outpatient Soil Work C - Story ground Water-to-Air HP Clg Coil 4kBtu/hr 11.2EER, !- Name + {23317efd-aa21-4ade-ab54-2b80ce375d75}, !- Water Inlet Node Name + {75e38255-93b7-4c4a-b2ca-6c322474e7ff}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0568816060162331, !- Rated Air Flow Rate {m3/s} + 2.49966330445319e-05, !- Rated Water Flow Rate {m3/s} + 1193.17996815679, !- Rated Total Cooling Capacity {W} + 801.34306578025, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {106f0d48-36db-4166-8c0a-138c910ad4ec}, !- Handle + Zone Outpatient Soil Work C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {35989bec-4cd6-4680-8823-ff476d8c59d5}, !- Inlet Port + {23317efd-aa21-4ade-ab54-2b80ce375d75}; !- Outlet Port + +OS:Connection, + {35989bec-4cd6-4680-8823-ff476d8c59d5}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 177, !- Outlet Port + {106f0d48-36db-4166-8c0a-138c910ad4ec}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {158b471e-443e-4239-854e-635f36311fdb}, !- Handle + Zone Outpatient Soil Work C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {75e38255-93b7-4c4a-b2ca-6c322474e7ff}, !- Inlet Port + {c133415e-b595-413a-b5d7-9add67babcca}; !- Outlet Port + +OS:Connection, + {23317efd-aa21-4ade-ab54-2b80ce375d75}, !- Handle + {106f0d48-36db-4166-8c0a-138c910ad4ec}, !- Source Object + 3, !- Outlet Port + {2469b01c-1a6f-4c50-a253-ee9130f40900}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {75e38255-93b7-4c4a-b2ca-6c322474e7ff}, !- Handle + {2469b01c-1a6f-4c50-a253-ee9130f40900}, !- Source Object + 3, !- Outlet Port + {158b471e-443e-4239-854e-635f36311fdb}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c133415e-b595-413a-b5d7-9add67babcca}, !- Handle + {158b471e-443e-4239-854e-635f36311fdb}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 177; !- Inlet Port + +OS:Fan:OnOff, + {c6104038-856c-49eb-9818-4f64a38942b5}, !- Handle + Zone Outpatient Soil Work C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0568816060162331, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {b466af07-44a3-466c-a814-ede70fffce4f}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {28942c04-abba-44e1-828e-0b6b3796942f}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {b466af07-44a3-466c-a814-ede70fffce4f}, !- Handle + Fan On Off Power Curve 86, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {28942c04-abba-44e1-828e-0b6b3796942f}, !- Handle + Fan On Off Efficiency Curve 86, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {9d319d92-9302-4e34-98fa-c01f88126e14}, !- Handle + Zone Outpatient Soil Work C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {927ccbd1-ec87-4e86-981b-d8e529369883}, !- Air Inlet Node Name + {3b9935db-33ab-4a36-b3f4-0d0d3c226f52}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0568816060162331, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0568816060162331, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0568816060162331, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {c6104038-856c-49eb-9818-4f64a38942b5}, !- Supply Air Fan Name + {39115cc4-c304-4c38-877b-8c2d5650f416}, !- Heating Coil Name + {2469b01c-1a6f-4c50-a253-ee9130f40900}, !- Cooling Coil Name + {d32ed91a-03db-4d3b-a694-cbff793cac3f}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {0797645f-4aaf-4ce5-955f-d75f48533632}, !- Handle + Zone Outpatient Soil Work C - Story ground WSHP Inlet Air Node, !- Name + {4bb2fd02-de6f-453d-a771-3480c9de4e9e}, !- Inlet Port + {927ccbd1-ec87-4e86-981b-d8e529369883}; !- Outlet Port + +OS:Connection, + {4bb2fd02-de6f-453d-a771-3480c9de4e9e}, !- Handle + {090d4401-04e2-4253-b891-d05da5f8e55d}, !- Source Object + 3, !- Outlet Port + {0797645f-4aaf-4ce5-955f-d75f48533632}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {927ccbd1-ec87-4e86-981b-d8e529369883}, !- Handle + {0797645f-4aaf-4ce5-955f-d75f48533632}, !- Source Object + 3, !- Outlet Port + {9d319d92-9302-4e34-98fa-c01f88126e14}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {8b9c2c10-6466-4413-ae54-428ad0b61182}, !- Handle + Zone Outpatient Soil Work C - Story ground WSHP Outlet Air Node, !- Name + {3b9935db-33ab-4a36-b3f4-0d0d3c226f52}, !- Inlet Port + {18940423-a683-42e5-ac2c-1d93a029e9e2}; !- Outlet Port + +OS:Connection, + {18940423-a683-42e5-ac2c-1d93a029e9e2}, !- Handle + {8b9c2c10-6466-4413-ae54-428ad0b61182}, !- Source Object + 3, !- Outlet Port + {0f710fea-085e-48ef-816c-284dc0664bcc}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {3b9935db-33ab-4a36-b3f4-0d0d3c226f52}, !- Handle + {9d319d92-9302-4e34-98fa-c01f88126e14}, !- Source Object + 4, !- Outlet Port + {8b9c2c10-6466-4413-ae54-428ad0b61182}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {1b910de5-a13e-4428-83ac-2c44b4256be8}, !- Handle + Zone Outpatient Stair A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 824.031737952394, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {18a09397-0ef9-4fe0-8ff2-071a71fef099}, !- Handle + Zone Outpatient Stair A - Story ground Water-to-Air HP Htg Coil 2 Clg kBtu/hr 4.2COPH, !- Name + {6692909f-0258-4fbd-993b-57780dd1af3d}, !- Water Inlet Node Name + {bc0c43cc-10d8-4dc1-ad83-aa27b20b7356}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0433655053254322, !- Rated Air Flow Rate {m3/s} + 1.3617329038715e-05, !- Rated Water Flow Rate {m3/s} + 615.526782947111, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {f159e82d-49e2-481a-8aef-e9e9c316d680}, !- Handle + Zone Outpatient Stair A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {418114d3-652b-4d27-a499-f3c56bbaf066}, !- Inlet Port + {6692909f-0258-4fbd-993b-57780dd1af3d}; !- Outlet Port + +OS:Connection, + {418114d3-652b-4d27-a499-f3c56bbaf066}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 178, !- Outlet Port + {f159e82d-49e2-481a-8aef-e9e9c316d680}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {39ca0591-bed5-4500-bf31-4d9d41fda1b4}, !- Handle + Zone Outpatient Stair A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {bc0c43cc-10d8-4dc1-ad83-aa27b20b7356}, !- Inlet Port + {f2e6ad7a-87cb-49ff-b1a3-d51653ca8132}; !- Outlet Port + +OS:Connection, + {6692909f-0258-4fbd-993b-57780dd1af3d}, !- Handle + {f159e82d-49e2-481a-8aef-e9e9c316d680}, !- Source Object + 3, !- Outlet Port + {18a09397-0ef9-4fe0-8ff2-071a71fef099}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bc0c43cc-10d8-4dc1-ad83-aa27b20b7356}, !- Handle + {18a09397-0ef9-4fe0-8ff2-071a71fef099}, !- Source Object + 3, !- Outlet Port + {39ca0591-bed5-4500-bf31-4d9d41fda1b4}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f2e6ad7a-87cb-49ff-b1a3-d51653ca8132}, !- Handle + {39ca0591-bed5-4500-bf31-4d9d41fda1b4}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 178; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {42558ec5-8da8-40a4-8ee7-99cc2f8b8d2b}, !- Handle + Zone Outpatient Stair A - Story ground Water-to-Air HP Clg Coil 2kBtu/hr 11.2EER, !- Name + {6ff1bf38-33f7-4964-99ad-d86ab099f40d}, !- Water Inlet Node Name + {62860da7-5802-47c4-98dd-3dab7374e3e5}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0433655053254322, !- Rated Air Flow Rate {m3/s} + 1.3617329038715e-05, !- Rated Water Flow Rate {m3/s} + 650.004510601435, !- Rated Total Cooling Capacity {W} + 517.277341401559, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {d32852f5-e592-4296-8b30-2dfc58e4d110}, !- Handle + Zone Outpatient Stair A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {5e7562a4-d696-491d-8c22-98c15326c8cb}, !- Inlet Port + {6ff1bf38-33f7-4964-99ad-d86ab099f40d}; !- Outlet Port + +OS:Connection, + {5e7562a4-d696-491d-8c22-98c15326c8cb}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 179, !- Outlet Port + {d32852f5-e592-4296-8b30-2dfc58e4d110}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {f583c555-654a-4047-be88-a269e021fad3}, !- Handle + Zone Outpatient Stair A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {62860da7-5802-47c4-98dd-3dab7374e3e5}, !- Inlet Port + {1b84907b-028b-47ee-a67d-d16692e698d5}; !- Outlet Port + +OS:Connection, + {6ff1bf38-33f7-4964-99ad-d86ab099f40d}, !- Handle + {d32852f5-e592-4296-8b30-2dfc58e4d110}, !- Source Object + 3, !- Outlet Port + {42558ec5-8da8-40a4-8ee7-99cc2f8b8d2b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {62860da7-5802-47c4-98dd-3dab7374e3e5}, !- Handle + {42558ec5-8da8-40a4-8ee7-99cc2f8b8d2b}, !- Source Object + 3, !- Outlet Port + {f583c555-654a-4047-be88-a269e021fad3}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1b84907b-028b-47ee-a67d-d16692e698d5}, !- Handle + {f583c555-654a-4047-be88-a269e021fad3}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 179; !- Inlet Port + +OS:Fan:OnOff, + {d7f4bdcb-aca6-45c5-823d-796e1ceaaa28}, !- Handle + Zone Outpatient Stair A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0433655053254322, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {520d19a5-e629-4b0a-b881-e6141f4df468}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {e72e899f-d970-42b3-9c98-8b2fc37a8169}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {520d19a5-e629-4b0a-b881-e6141f4df468}, !- Handle + Fan On Off Power Curve 87, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {e72e899f-d970-42b3-9c98-8b2fc37a8169}, !- Handle + Fan On Off Efficiency Curve 87, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {8d57d6a8-9932-435a-ad7d-3b4dcb970d76}, !- Handle + Zone Outpatient Stair A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {2afe110d-24bc-487c-8b13-57d32660f477}, !- Air Inlet Node Name + {c4bdeacc-adf1-418a-9ae6-afc0dc60463f}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0433655053254322, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0433655053254322, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0433655053254322, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {d7f4bdcb-aca6-45c5-823d-796e1ceaaa28}, !- Supply Air Fan Name + {18a09397-0ef9-4fe0-8ff2-071a71fef099}, !- Heating Coil Name + {42558ec5-8da8-40a4-8ee7-99cc2f8b8d2b}, !- Cooling Coil Name + {1b910de5-a13e-4428-83ac-2c44b4256be8}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {a5b66303-0581-4af6-a9c9-74906a82e1ac}, !- Handle + Zone Outpatient Stair A - Story ground WSHP Inlet Air Node, !- Name + {19e374f8-1dbc-46b8-aeec-dba9ea8a67eb}, !- Inlet Port + {2afe110d-24bc-487c-8b13-57d32660f477}; !- Outlet Port + +OS:Connection, + {19e374f8-1dbc-46b8-aeec-dba9ea8a67eb}, !- Handle + {afbae12c-84ea-485a-acec-cc8496e88f25}, !- Source Object + 2, !- Outlet Port + {a5b66303-0581-4af6-a9c9-74906a82e1ac}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2afe110d-24bc-487c-8b13-57d32660f477}, !- Handle + {a5b66303-0581-4af6-a9c9-74906a82e1ac}, !- Source Object + 3, !- Outlet Port + {8d57d6a8-9932-435a-ad7d-3b4dcb970d76}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {651c2c8b-73d4-43b5-9d36-e2438d78ba05}, !- Handle + Zone Outpatient Stair A - Story ground WSHP Outlet Air Node, !- Name + {c4bdeacc-adf1-418a-9ae6-afc0dc60463f}, !- Inlet Port + {b0f413f6-839e-4f5c-82a3-d0fca08019f7}; !- Outlet Port + +OS:Connection, + {b0f413f6-839e-4f5c-82a3-d0fca08019f7}, !- Handle + {651c2c8b-73d4-43b5-9d36-e2438d78ba05}, !- Source Object + 3, !- Outlet Port + {15825351-6da8-430c-b16c-af56bee5aae5}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c4bdeacc-adf1-418a-9ae6-afc0dc60463f}, !- Handle + {8d57d6a8-9932-435a-ad7d-3b4dcb970d76}, !- Source Object + 4, !- Outlet Port + {651c2c8b-73d4-43b5-9d36-e2438d78ba05}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {01b9d4b4-c3d3-4728-b076-dea3865bcbb7}, !- Handle + Zone Outpatient Stair B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 6089.32228365956, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {f6f95461-8787-4e1c-845c-ffb2b20f802e}, !- Handle + Zone Outpatient Stair B - Story ground Water-to-Air HP Htg Coil 17 Clg kBtu/hr 4.2COPH, !- Name + {c598735d-ab43-48e9-9597-0e088d2558af}, !- Water Inlet Node Name + {64643b3c-5527-4c14-af79-80bf8ba2e2d2}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.346420355690103, !- Rated Air Flow Rate {m3/s} + 0.00010883099771505, !- Rated Water Flow Rate {m3/s} + 4919.34899406606, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {17333863-0442-456d-ada0-183b9ec53512}, !- Handle + Zone Outpatient Stair B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {61ab6683-dc27-4ac3-b8d4-9ece82c825b0}, !- Inlet Port + {c598735d-ab43-48e9-9597-0e088d2558af}; !- Outlet Port + +OS:Connection, + {61ab6683-dc27-4ac3-b8d4-9ece82c825b0}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 180, !- Outlet Port + {17333863-0442-456d-ada0-183b9ec53512}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {f3d03ebb-2d4c-459d-b67f-2f610445800a}, !- Handle + Zone Outpatient Stair B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {64643b3c-5527-4c14-af79-80bf8ba2e2d2}, !- Inlet Port + {57d0dbf0-2dcc-4bb4-a8a0-0e5d1032d65a}; !- Outlet Port + +OS:Connection, + {c598735d-ab43-48e9-9597-0e088d2558af}, !- Handle + {17333863-0442-456d-ada0-183b9ec53512}, !- Source Object + 3, !- Outlet Port + {f6f95461-8787-4e1c-845c-ffb2b20f802e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {64643b3c-5527-4c14-af79-80bf8ba2e2d2}, !- Handle + {f6f95461-8787-4e1c-845c-ffb2b20f802e}, !- Source Object + 3, !- Outlet Port + {f3d03ebb-2d4c-459d-b67f-2f610445800a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {57d0dbf0-2dcc-4bb4-a8a0-0e5d1032d65a}, !- Handle + {f3d03ebb-2d4c-459d-b67f-2f610445800a}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 180; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {d8759c1c-f198-4e40-83ee-06ade171bdc9}, !- Handle + Zone Outpatient Stair B - Story ground Water-to-Air HP Clg Coil 17kBtu/hr 12.0EER, !- Name + {1a1c78cf-6ffb-4124-b3ec-9fa91abb8188}, !- Water Inlet Node Name + {9bad6cad-8284-495f-bc6d-0b68975ba8d8}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.346420355690103, !- Rated Air Flow Rate {m3/s} + 0.00010883099771505, !- Rated Water Flow Rate {m3/s} + 5194.89829517349, !- Rated Total Cooling Capacity {W} + 4132.93400228648, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {82d8f3ca-2ba3-48fa-bbf5-1d431bba266e}, !- Handle + Zone Outpatient Stair B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {2b48e94f-357a-4933-87b4-bb1bae136edd}, !- Inlet Port + {1a1c78cf-6ffb-4124-b3ec-9fa91abb8188}; !- Outlet Port + +OS:Connection, + {2b48e94f-357a-4933-87b4-bb1bae136edd}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 181, !- Outlet Port + {82d8f3ca-2ba3-48fa-bbf5-1d431bba266e}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {4cf21784-c1d1-427b-96aa-86af86dcfa4b}, !- Handle + Zone Outpatient Stair B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {9bad6cad-8284-495f-bc6d-0b68975ba8d8}, !- Inlet Port + {dcfeb3e6-e076-4662-ab13-ec17aa70db23}; !- Outlet Port + +OS:Connection, + {1a1c78cf-6ffb-4124-b3ec-9fa91abb8188}, !- Handle + {82d8f3ca-2ba3-48fa-bbf5-1d431bba266e}, !- Source Object + 3, !- Outlet Port + {d8759c1c-f198-4e40-83ee-06ade171bdc9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9bad6cad-8284-495f-bc6d-0b68975ba8d8}, !- Handle + {d8759c1c-f198-4e40-83ee-06ade171bdc9}, !- Source Object + 3, !- Outlet Port + {4cf21784-c1d1-427b-96aa-86af86dcfa4b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {dcfeb3e6-e076-4662-ab13-ec17aa70db23}, !- Handle + {4cf21784-c1d1-427b-96aa-86af86dcfa4b}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 181; !- Inlet Port + +OS:Fan:OnOff, + {77ca3a61-6211-4486-89cd-4ba53070c28d}, !- Handle + Zone Outpatient Stair B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.346420355690103, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {cf65e4c8-7258-412f-a936-4d6a0a27364a}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {104ab1c7-d1c8-476e-b9e3-67bb400200e7}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {cf65e4c8-7258-412f-a936-4d6a0a27364a}, !- Handle + Fan On Off Power Curve 88, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {104ab1c7-d1c8-476e-b9e3-67bb400200e7}, !- Handle + Fan On Off Efficiency Curve 88, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {def8a652-7c28-45dd-bef2-ad674e6261d9}, !- Handle + Zone Outpatient Stair B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {b89272bb-bc92-4e97-bd7d-8606dcfd4dca}, !- Air Inlet Node Name + {2db0dcaf-bf20-41c4-8e26-b10a5968ccb7}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.346420355690103, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.346420355690103, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.346420355690103, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {77ca3a61-6211-4486-89cd-4ba53070c28d}, !- Supply Air Fan Name + {f6f95461-8787-4e1c-845c-ffb2b20f802e}, !- Heating Coil Name + {d8759c1c-f198-4e40-83ee-06ade171bdc9}, !- Cooling Coil Name + {01b9d4b4-c3d3-4728-b076-dea3865bcbb7}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {3dfbeca4-f57f-47e9-9ab4-abe61999c90e}, !- Handle + Zone Outpatient Stair B - Story ground WSHP Inlet Air Node, !- Name + {e052e3ff-847a-41c4-9e85-2e7d8bad30e3}, !- Inlet Port + {b89272bb-bc92-4e97-bd7d-8606dcfd4dca}; !- Outlet Port + +OS:Connection, + {e052e3ff-847a-41c4-9e85-2e7d8bad30e3}, !- Handle + {b1c0f678-3c53-4677-86c8-08b9ad1e9b6e}, !- Source Object + 2, !- Outlet Port + {3dfbeca4-f57f-47e9-9ab4-abe61999c90e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {b89272bb-bc92-4e97-bd7d-8606dcfd4dca}, !- Handle + {3dfbeca4-f57f-47e9-9ab4-abe61999c90e}, !- Source Object + 3, !- Outlet Port + {def8a652-7c28-45dd-bef2-ad674e6261d9}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {0c5afdb6-a633-49f7-91a7-e4faf24e82e8}, !- Handle + Zone Outpatient Stair B - Story ground WSHP Outlet Air Node, !- Name + {2db0dcaf-bf20-41c4-8e26-b10a5968ccb7}, !- Inlet Port + {a05b81c8-d771-489c-bd69-2cc7bb149e53}; !- Outlet Port + +OS:Connection, + {a05b81c8-d771-489c-bd69-2cc7bb149e53}, !- Handle + {0c5afdb6-a633-49f7-91a7-e4faf24e82e8}, !- Source Object + 3, !- Outlet Port + {d0e7f804-5997-460e-b706-fa37e9b4ea96}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {2db0dcaf-bf20-41c4-8e26-b10a5968ccb7}, !- Handle + {def8a652-7c28-45dd-bef2-ad674e6261d9}, !- Source Object + 4, !- Outlet Port + {0c5afdb6-a633-49f7-91a7-e4faf24e82e8}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {618fc3eb-1732-45ee-8548-57aeca1c8c3c}, !- Handle + Zone Outpatient Stair C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 824.031737952572, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {f17a26d0-c890-4bc2-b8fa-72e1f4d18aa4}, !- Handle + Zone Outpatient Stair C - Story ground Water-to-Air HP Htg Coil 2 Clg kBtu/hr 4.2COPH, !- Name + {da999669-6e8f-4df0-8e8f-84fdf1f23fc6}, !- Water Inlet Node Name + {e7b59e6c-6a20-4f82-b999-e7f6e0672e96}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0433655053254076, !- Rated Air Flow Rate {m3/s} + 1.36173290387076e-05, !- Rated Water Flow Rate {m3/s} + 615.526782946772, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {1a6cbbc4-084c-4bda-8f7d-7662fe36062e}, !- Handle + Zone Outpatient Stair C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {92d1250c-b773-4933-ae27-34a425584eb0}, !- Inlet Port + {da999669-6e8f-4df0-8e8f-84fdf1f23fc6}; !- Outlet Port + +OS:Connection, + {92d1250c-b773-4933-ae27-34a425584eb0}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 182, !- Outlet Port + {1a6cbbc4-084c-4bda-8f7d-7662fe36062e}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {ede9c93e-65b2-47b2-aee5-934ccca26670}, !- Handle + Zone Outpatient Stair C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {e7b59e6c-6a20-4f82-b999-e7f6e0672e96}, !- Inlet Port + {f541c4f9-d08e-4645-a18b-1b2177ca69b6}; !- Outlet Port + +OS:Connection, + {da999669-6e8f-4df0-8e8f-84fdf1f23fc6}, !- Handle + {1a6cbbc4-084c-4bda-8f7d-7662fe36062e}, !- Source Object + 3, !- Outlet Port + {f17a26d0-c890-4bc2-b8fa-72e1f4d18aa4}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e7b59e6c-6a20-4f82-b999-e7f6e0672e96}, !- Handle + {f17a26d0-c890-4bc2-b8fa-72e1f4d18aa4}, !- Source Object + 3, !- Outlet Port + {ede9c93e-65b2-47b2-aee5-934ccca26670}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f541c4f9-d08e-4645-a18b-1b2177ca69b6}, !- Handle + {ede9c93e-65b2-47b2-aee5-934ccca26670}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 182; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {8082c017-1535-453e-b671-3559a8208031}, !- Handle + Zone Outpatient Stair C - Story ground Water-to-Air HP Clg Coil 2kBtu/hr 11.2EER, !- Name + {b68bf50a-4666-4ab6-adba-3e28f7f55fe1}, !- Water Inlet Node Name + {d1b305f0-11d4-4ed5-903e-779a1aca7414}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0433655053254076, !- Rated Air Flow Rate {m3/s} + 1.36173290387076e-05, !- Rated Water Flow Rate {m3/s} + 650.004510601078, !- Rated Total Cooling Capacity {W} + 517.277341401266, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {82da93ea-c621-4a09-a4d2-76c455b3edd1}, !- Handle + Zone Outpatient Stair C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {a1d4a284-f94c-4926-939c-09e7ce8e4711}, !- Inlet Port + {b68bf50a-4666-4ab6-adba-3e28f7f55fe1}; !- Outlet Port + +OS:Connection, + {a1d4a284-f94c-4926-939c-09e7ce8e4711}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 183, !- Outlet Port + {82da93ea-c621-4a09-a4d2-76c455b3edd1}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {a343d17e-9c24-4103-8a3f-4e1c6ce13e8c}, !- Handle + Zone Outpatient Stair C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {d1b305f0-11d4-4ed5-903e-779a1aca7414}, !- Inlet Port + {4babe7b1-ca32-4417-bc15-517c375bec5e}; !- Outlet Port + +OS:Connection, + {b68bf50a-4666-4ab6-adba-3e28f7f55fe1}, !- Handle + {82da93ea-c621-4a09-a4d2-76c455b3edd1}, !- Source Object + 3, !- Outlet Port + {8082c017-1535-453e-b671-3559a8208031}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {d1b305f0-11d4-4ed5-903e-779a1aca7414}, !- Handle + {8082c017-1535-453e-b671-3559a8208031}, !- Source Object + 3, !- Outlet Port + {a343d17e-9c24-4103-8a3f-4e1c6ce13e8c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4babe7b1-ca32-4417-bc15-517c375bec5e}, !- Handle + {a343d17e-9c24-4103-8a3f-4e1c6ce13e8c}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 183; !- Inlet Port + +OS:Fan:OnOff, + {1fb3b17e-d700-48b6-a01f-5d04bc0af296}, !- Handle + Zone Outpatient Stair C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0433655053254076, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {bc3ab136-9094-4605-87e8-20ca7e154f8d}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {c02378e2-37b8-4481-8754-ecbdcb91e3a2}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {bc3ab136-9094-4605-87e8-20ca7e154f8d}, !- Handle + Fan On Off Power Curve 89, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {c02378e2-37b8-4481-8754-ecbdcb91e3a2}, !- Handle + Fan On Off Efficiency Curve 89, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {2a2aac32-51cf-412f-a048-938c8a2a904c}, !- Handle + Zone Outpatient Stair C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {a1b4e690-0d1e-4875-a3cc-2a79be300226}, !- Air Inlet Node Name + {fb0d28af-b7bb-4464-9373-8865e04d2d93}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0433655053254076, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0433655053254076, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0433655053254076, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {1fb3b17e-d700-48b6-a01f-5d04bc0af296}, !- Supply Air Fan Name + {f17a26d0-c890-4bc2-b8fa-72e1f4d18aa4}, !- Heating Coil Name + {8082c017-1535-453e-b671-3559a8208031}, !- Cooling Coil Name + {618fc3eb-1732-45ee-8548-57aeca1c8c3c}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {e0c5a576-e448-45d1-97d5-6859655dab6a}, !- Handle + Zone Outpatient Stair C - Story ground WSHP Inlet Air Node, !- Name + {8d79702c-a948-4367-acd5-e51d518515db}, !- Inlet Port + {a1b4e690-0d1e-4875-a3cc-2a79be300226}; !- Outlet Port + +OS:Connection, + {8d79702c-a948-4367-acd5-e51d518515db}, !- Handle + {b36608ca-c873-4050-8ea2-03c1358a2665}, !- Source Object + 2, !- Outlet Port + {e0c5a576-e448-45d1-97d5-6859655dab6a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a1b4e690-0d1e-4875-a3cc-2a79be300226}, !- Handle + {e0c5a576-e448-45d1-97d5-6859655dab6a}, !- Source Object + 3, !- Outlet Port + {2a2aac32-51cf-412f-a048-938c8a2a904c}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {0d33c715-3825-4902-85fc-cd7407677301}, !- Handle + Zone Outpatient Stair C - Story ground WSHP Outlet Air Node, !- Name + {fb0d28af-b7bb-4464-9373-8865e04d2d93}, !- Inlet Port + {24a67da5-4fa8-4930-b603-16bf44d0e448}; !- Outlet Port + +OS:Connection, + {24a67da5-4fa8-4930-b603-16bf44d0e448}, !- Handle + {0d33c715-3825-4902-85fc-cd7407677301}, !- Source Object + 3, !- Outlet Port + {ee0790da-9ae0-40aa-ae34-447f7aaa2ffd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {fb0d28af-b7bb-4464-9373-8865e04d2d93}, !- Handle + {2a2aac32-51cf-412f-a048-938c8a2a904c}, !- Source Object + 4, !- Outlet Port + {0d33c715-3825-4902-85fc-cd7407677301}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {2b172593-d72b-49f0-aea7-ed0d00f2ae9c}, !- Handle + Zone Outpatient Toilet A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 1043.67589896359, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {9d04ada4-c5da-46f1-bfe2-15b19aad53c2}, !- Handle + Zone Outpatient Toilet A - Story ground Water-to-Air HP Htg Coil 3 Clg kBtu/hr 4.2COPH, !- Name + {b8abde38-523b-4f2e-a6b9-307b26f46625}, !- Water Inlet Node Name + {00a7f4cf-0ec9-4779-9e3b-48570a5169a8}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0568812951970486, !- Rated Air Flow Rate {m3/s} + 1.78651951405364e-05, !- Rated Water Flow Rate {m3/s} + 807.537664714783, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {f7b0f57d-671a-4aad-a5fe-6fab5dbdbf51}, !- Handle + Zone Outpatient Toilet A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {1bd0b9ff-f2e2-4f49-b532-dc56074a24a0}, !- Inlet Port + {b8abde38-523b-4f2e-a6b9-307b26f46625}; !- Outlet Port + +OS:Connection, + {1bd0b9ff-f2e2-4f49-b532-dc56074a24a0}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 184, !- Outlet Port + {f7b0f57d-671a-4aad-a5fe-6fab5dbdbf51}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {16339aa0-c7d5-4cb6-99c7-eb51e94c005e}, !- Handle + Zone Outpatient Toilet A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {00a7f4cf-0ec9-4779-9e3b-48570a5169a8}, !- Inlet Port + {f9c5586e-8c49-4cac-b908-71d790ae037e}; !- Outlet Port + +OS:Connection, + {b8abde38-523b-4f2e-a6b9-307b26f46625}, !- Handle + {f7b0f57d-671a-4aad-a5fe-6fab5dbdbf51}, !- Source Object + 3, !- Outlet Port + {9d04ada4-c5da-46f1-bfe2-15b19aad53c2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {00a7f4cf-0ec9-4779-9e3b-48570a5169a8}, !- Handle + {9d04ada4-c5da-46f1-bfe2-15b19aad53c2}, !- Source Object + 3, !- Outlet Port + {16339aa0-c7d5-4cb6-99c7-eb51e94c005e}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f9c5586e-8c49-4cac-b908-71d790ae037e}, !- Handle + {16339aa0-c7d5-4cb6-99c7-eb51e94c005e}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 184; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {d83935bc-788f-409d-a2a3-7f18709d3fa8}, !- Handle + Zone Outpatient Toilet A - Story ground Water-to-Air HP Clg Coil 3kBtu/hr 11.2EER, !- Name + {51656490-0684-4c3f-b2c6-54100730179a}, !- Water Inlet Node Name + {eebef033-e904-4f43-8ead-655802cfe30d}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0568812951970486, !- Rated Air Flow Rate {m3/s} + 1.78651951405364e-05, !- Rated Water Flow Rate {m3/s} + 852.770568377138, !- Rated Total Cooling Capacity {W} + 678.550985201947, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {27b4ee73-181d-4006-9f8a-0f91417acea9}, !- Handle + Zone Outpatient Toilet A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {986c13a1-5c88-40c5-84ce-80229bb5965c}, !- Inlet Port + {51656490-0684-4c3f-b2c6-54100730179a}; !- Outlet Port + +OS:Connection, + {986c13a1-5c88-40c5-84ce-80229bb5965c}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 185, !- Outlet Port + {27b4ee73-181d-4006-9f8a-0f91417acea9}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {2e3c3803-fc9b-4d57-9ccd-8b1a4d37e934}, !- Handle + Zone Outpatient Toilet A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {eebef033-e904-4f43-8ead-655802cfe30d}, !- Inlet Port + {42f48ec6-20d3-416b-a145-3b05dd580506}; !- Outlet Port + +OS:Connection, + {51656490-0684-4c3f-b2c6-54100730179a}, !- Handle + {27b4ee73-181d-4006-9f8a-0f91417acea9}, !- Source Object + 3, !- Outlet Port + {d83935bc-788f-409d-a2a3-7f18709d3fa8}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {eebef033-e904-4f43-8ead-655802cfe30d}, !- Handle + {d83935bc-788f-409d-a2a3-7f18709d3fa8}, !- Source Object + 3, !- Outlet Port + {2e3c3803-fc9b-4d57-9ccd-8b1a4d37e934}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {42f48ec6-20d3-416b-a145-3b05dd580506}, !- Handle + {2e3c3803-fc9b-4d57-9ccd-8b1a4d37e934}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 185; !- Inlet Port + +OS:Fan:OnOff, + {925ffabc-6a28-43af-8021-868e682a9fe5}, !- Handle + Zone Outpatient Toilet A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0568812951970486, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {785664ac-ab68-4862-9524-4f0e151889cd}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {5937b847-31fa-4916-bef6-d6b86071ed9f}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {785664ac-ab68-4862-9524-4f0e151889cd}, !- Handle + Fan On Off Power Curve 90, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {5937b847-31fa-4916-bef6-d6b86071ed9f}, !- Handle + Fan On Off Efficiency Curve 90, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {c56ab0b7-c1c3-494f-884d-154ee3d81db3}, !- Handle + Zone Outpatient Toilet A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {bc20e6d9-7697-46c3-9aef-a278f425d344}, !- Air Inlet Node Name + {93cdf721-9435-4302-8286-042911867083}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0568812951970486, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0568812951970486, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0568812951970486, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {925ffabc-6a28-43af-8021-868e682a9fe5}, !- Supply Air Fan Name + {9d04ada4-c5da-46f1-bfe2-15b19aad53c2}, !- Heating Coil Name + {d83935bc-788f-409d-a2a3-7f18709d3fa8}, !- Cooling Coil Name + {2b172593-d72b-49f0-aea7-ed0d00f2ae9c}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {b99b72f5-4f71-47c2-8503-fc8c95957452}, !- Handle + Zone Outpatient Toilet A - Story ground WSHP Inlet Air Node, !- Name + {05c8c441-8ea8-4a5c-bd61-a403ce410c71}, !- Inlet Port + {bc20e6d9-7697-46c3-9aef-a278f425d344}; !- Outlet Port + +OS:Connection, + {05c8c441-8ea8-4a5c-bd61-a403ce410c71}, !- Handle + {76e6fe05-94a7-439d-896b-956c58659b98}, !- Source Object + 3, !- Outlet Port + {b99b72f5-4f71-47c2-8503-fc8c95957452}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bc20e6d9-7697-46c3-9aef-a278f425d344}, !- Handle + {b99b72f5-4f71-47c2-8503-fc8c95957452}, !- Source Object + 3, !- Outlet Port + {c56ab0b7-c1c3-494f-884d-154ee3d81db3}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {de59b2d9-03cc-4f4f-a00f-b9d6afe058db}, !- Handle + Zone Outpatient Toilet A - Story ground WSHP Outlet Air Node, !- Name + {93cdf721-9435-4302-8286-042911867083}, !- Inlet Port + {fe480a9e-61a3-4bdf-8a0e-326fb8d43dd4}; !- Outlet Port + +OS:Connection, + {fe480a9e-61a3-4bdf-8a0e-326fb8d43dd4}, !- Handle + {de59b2d9-03cc-4f4f-a00f-b9d6afe058db}, !- Source Object + 3, !- Outlet Port + {1b2a0b80-61ca-47c5-9648-6eb1513632a0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {93cdf721-9435-4302-8286-042911867083}, !- Handle + {c56ab0b7-c1c3-494f-884d-154ee3d81db3}, !- Source Object + 4, !- Outlet Port + {de59b2d9-03cc-4f4f-a00f-b9d6afe058db}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {9f0d23ac-58eb-41c0-b92e-1836947a6deb}, !- Handle + Zone Outpatient Toilet B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 7685.47706362385, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {fe168090-4e32-40e6-ab72-fb95fe563404}, !- Handle + Zone Outpatient Toilet B - Story ground Water-to-Air HP Htg Coil 24 Clg kBtu/hr 4.2COPH, !- Name + {f7687498-fa8c-4f05-86b3-31fc140139d8}, !- Water Inlet Node Name + {4d101f26-7146-40e6-9f85-a79b441a6c4d}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.452571924984467, !- Rated Air Flow Rate {m3/s} + 0.000142224847913886, !- Rated Water Flow Rate {m3/s} + 6428.80867772854, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {d29b9df3-3a27-4df2-ba48-30ef06d1d81c}, !- Handle + Zone Outpatient Toilet B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {aaa91df1-cb2c-4c59-bfd8-571dde3ee232}, !- Inlet Port + {f7687498-fa8c-4f05-86b3-31fc140139d8}; !- Outlet Port + +OS:Connection, + {aaa91df1-cb2c-4c59-bfd8-571dde3ee232}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 186, !- Outlet Port + {d29b9df3-3a27-4df2-ba48-30ef06d1d81c}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {defa9c68-d0e2-49c7-9d76-83f2cec147cd}, !- Handle + Zone Outpatient Toilet B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {4d101f26-7146-40e6-9f85-a79b441a6c4d}, !- Inlet Port + {c00bfde7-1186-4f5c-93db-00715b4e4d6c}; !- Outlet Port + +OS:Connection, + {f7687498-fa8c-4f05-86b3-31fc140139d8}, !- Handle + {d29b9df3-3a27-4df2-ba48-30ef06d1d81c}, !- Source Object + 3, !- Outlet Port + {fe168090-4e32-40e6-ab72-fb95fe563404}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4d101f26-7146-40e6-9f85-a79b441a6c4d}, !- Handle + {fe168090-4e32-40e6-ab72-fb95fe563404}, !- Source Object + 3, !- Outlet Port + {defa9c68-d0e2-49c7-9d76-83f2cec147cd}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {c00bfde7-1186-4f5c-93db-00715b4e4d6c}, !- Handle + {defa9c68-d0e2-49c7-9d76-83f2cec147cd}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 186; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {46cc6fd2-4327-4b47-9c9d-0982bb704084}, !- Handle + Zone Outpatient Toilet B - Story ground Water-to-Air HP Clg Coil 24kBtu/hr 12.0EER, !- Name + {46d4107a-8ff2-4f6c-a22c-894658227347}, !- Water Inlet Node Name + {3c9a3e25-3949-4e7d-8778-c27ecc436c54}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.452571924984467, !- Rated Air Flow Rate {m3/s} + 0.000142224847913886, !- Rated Water Flow Rate {m3/s} + 6788.90789822262, !- Rated Total Cooling Capacity {W} + 5400.01248545379, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {536f29f3-45cb-4280-a329-93ea2c4cceea}, !- Handle + Zone Outpatient Toilet B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {6d19f5c9-8826-4320-921f-3b32e49230f2}, !- Inlet Port + {46d4107a-8ff2-4f6c-a22c-894658227347}; !- Outlet Port + +OS:Connection, + {6d19f5c9-8826-4320-921f-3b32e49230f2}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 187, !- Outlet Port + {536f29f3-45cb-4280-a329-93ea2c4cceea}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {5b4ebc1e-6ddc-49a8-8f4a-200bc03702c4}, !- Handle + Zone Outpatient Toilet B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {3c9a3e25-3949-4e7d-8778-c27ecc436c54}, !- Inlet Port + {69e56afd-a297-4500-8197-5285c8c873c7}; !- Outlet Port + +OS:Connection, + {46d4107a-8ff2-4f6c-a22c-894658227347}, !- Handle + {536f29f3-45cb-4280-a329-93ea2c4cceea}, !- Source Object + 3, !- Outlet Port + {46cc6fd2-4327-4b47-9c9d-0982bb704084}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {3c9a3e25-3949-4e7d-8778-c27ecc436c54}, !- Handle + {46cc6fd2-4327-4b47-9c9d-0982bb704084}, !- Source Object + 3, !- Outlet Port + {5b4ebc1e-6ddc-49a8-8f4a-200bc03702c4}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {69e56afd-a297-4500-8197-5285c8c873c7}, !- Handle + {5b4ebc1e-6ddc-49a8-8f4a-200bc03702c4}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 187; !- Inlet Port + +OS:Fan:OnOff, + {02419266-d8d0-461b-bab3-9bfec8b54a31}, !- Handle + Zone Outpatient Toilet B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.452571924984467, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {9ef6c3d7-d880-4688-b6c1-2daa44eda065}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {7e1359ac-8ebb-4b45-82a8-88d8e70ff145}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {9ef6c3d7-d880-4688-b6c1-2daa44eda065}, !- Handle + Fan On Off Power Curve 91, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {7e1359ac-8ebb-4b45-82a8-88d8e70ff145}, !- Handle + Fan On Off Efficiency Curve 91, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {c50202f4-25d7-4389-977d-b40c9fbefe33}, !- Handle + Zone Outpatient Toilet B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {debd0b6a-cac4-4488-be73-360e115b6165}, !- Air Inlet Node Name + {456ed437-02b9-4e18-a4c8-216892f966aa}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.452571924984467, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.452571924984467, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.452571924984467, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {02419266-d8d0-461b-bab3-9bfec8b54a31}, !- Supply Air Fan Name + {fe168090-4e32-40e6-ab72-fb95fe563404}, !- Heating Coil Name + {46cc6fd2-4327-4b47-9c9d-0982bb704084}, !- Cooling Coil Name + {9f0d23ac-58eb-41c0-b92e-1836947a6deb}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {52931fa4-a4b8-4629-9f3c-3fa21c4a60a7}, !- Handle + Zone Outpatient Toilet B - Story ground WSHP Inlet Air Node, !- Name + {55c0991c-449b-4749-a671-2974f9288cb8}, !- Inlet Port + {debd0b6a-cac4-4488-be73-360e115b6165}; !- Outlet Port + +OS:Connection, + {55c0991c-449b-4749-a671-2974f9288cb8}, !- Handle + {23d9aeaf-7320-419a-8af6-a1227ea2757b}, !- Source Object + 3, !- Outlet Port + {52931fa4-a4b8-4629-9f3c-3fa21c4a60a7}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {debd0b6a-cac4-4488-be73-360e115b6165}, !- Handle + {52931fa4-a4b8-4629-9f3c-3fa21c4a60a7}, !- Source Object + 3, !- Outlet Port + {c50202f4-25d7-4389-977d-b40c9fbefe33}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {4b82e5f3-fdac-4944-9274-3901227f84bf}, !- Handle + Zone Outpatient Toilet B - Story ground WSHP Outlet Air Node, !- Name + {456ed437-02b9-4e18-a4c8-216892f966aa}, !- Inlet Port + {17c599ed-bd04-4e82-862c-7c963f11e9f5}; !- Outlet Port + +OS:Connection, + {17c599ed-bd04-4e82-862c-7c963f11e9f5}, !- Handle + {4b82e5f3-fdac-4944-9274-3901227f84bf}, !- Source Object + 3, !- Outlet Port + {bdecbe97-1b00-44e6-b87f-205a51b8c011}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {456ed437-02b9-4e18-a4c8-216892f966aa}, !- Handle + {c50202f4-25d7-4389-977d-b40c9fbefe33}, !- Source Object + 4, !- Outlet Port + {4b82e5f3-fdac-4944-9274-3901227f84bf}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {3a2980dc-275d-4904-af97-ded3594bffe7}, !- Handle + Zone Outpatient Toilet C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 1043.67589896333, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {dd9c1858-13be-42a6-9aa3-3f49be410ccc}, !- Handle + Zone Outpatient Toilet C - Story ground Water-to-Air HP Htg Coil 3 Clg kBtu/hr 4.2COPH, !- Name + {6913c88c-362c-4ff9-9b63-08bd5e22792f}, !- Water Inlet Node Name + {409b83ef-67b1-4c73-a282-8fe387efc0c8}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0568812951970017, !- Rated Air Flow Rate {m3/s} + 1.78651951405222e-05, !- Rated Water Flow Rate {m3/s} + 807.537664714138, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {117ebfb3-952e-4b7d-b3a8-7d1dfa88fc85}, !- Handle + Zone Outpatient Toilet C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {e4da714f-d30f-4ff1-900b-0c716b593a88}, !- Inlet Port + {6913c88c-362c-4ff9-9b63-08bd5e22792f}; !- Outlet Port + +OS:Connection, + {e4da714f-d30f-4ff1-900b-0c716b593a88}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 188, !- Outlet Port + {117ebfb3-952e-4b7d-b3a8-7d1dfa88fc85}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {9557c07e-83d0-4c6d-9f50-439786f144be}, !- Handle + Zone Outpatient Toilet C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {409b83ef-67b1-4c73-a282-8fe387efc0c8}, !- Inlet Port + {7b49cbaa-665c-447b-bca0-570305aaf22b}; !- Outlet Port + +OS:Connection, + {6913c88c-362c-4ff9-9b63-08bd5e22792f}, !- Handle + {117ebfb3-952e-4b7d-b3a8-7d1dfa88fc85}, !- Source Object + 3, !- Outlet Port + {dd9c1858-13be-42a6-9aa3-3f49be410ccc}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {409b83ef-67b1-4c73-a282-8fe387efc0c8}, !- Handle + {dd9c1858-13be-42a6-9aa3-3f49be410ccc}, !- Source Object + 3, !- Outlet Port + {9557c07e-83d0-4c6d-9f50-439786f144be}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {7b49cbaa-665c-447b-bca0-570305aaf22b}, !- Handle + {9557c07e-83d0-4c6d-9f50-439786f144be}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 188; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {ae812240-2c1b-4904-af27-161b5e447220}, !- Handle + Zone Outpatient Toilet C - Story ground Water-to-Air HP Clg Coil 3kBtu/hr 11.2EER, !- Name + {8de2cf09-9182-4ebd-a1e9-2b0b7734cbc2}, !- Water Inlet Node Name + {994a406b-aaa3-4aca-8af1-d1a5c5783555}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.0568812951970017, !- Rated Air Flow Rate {m3/s} + 1.78651951405222e-05, !- Rated Water Flow Rate {m3/s} + 852.770568376456, !- Rated Total Cooling Capacity {W} + 678.550985201387, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {f5eb99f1-3022-4a0f-b868-7993acab3557}, !- Handle + Zone Outpatient Toilet C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {f4eb4aee-2a85-430c-8c63-7234023eab0d}, !- Inlet Port + {8de2cf09-9182-4ebd-a1e9-2b0b7734cbc2}; !- Outlet Port + +OS:Connection, + {f4eb4aee-2a85-430c-8c63-7234023eab0d}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 189, !- Outlet Port + {f5eb99f1-3022-4a0f-b868-7993acab3557}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {8d784fd8-923e-42b2-9f5d-925c0f695e67}, !- Handle + Zone Outpatient Toilet C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {994a406b-aaa3-4aca-8af1-d1a5c5783555}, !- Inlet Port + {e4bf2253-c778-4eb9-96f3-88529fc46552}; !- Outlet Port + +OS:Connection, + {8de2cf09-9182-4ebd-a1e9-2b0b7734cbc2}, !- Handle + {f5eb99f1-3022-4a0f-b868-7993acab3557}, !- Source Object + 3, !- Outlet Port + {ae812240-2c1b-4904-af27-161b5e447220}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {994a406b-aaa3-4aca-8af1-d1a5c5783555}, !- Handle + {ae812240-2c1b-4904-af27-161b5e447220}, !- Source Object + 3, !- Outlet Port + {8d784fd8-923e-42b2-9f5d-925c0f695e67}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {e4bf2253-c778-4eb9-96f3-88529fc46552}, !- Handle + {8d784fd8-923e-42b2-9f5d-925c0f695e67}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 189; !- Inlet Port + +OS:Fan:OnOff, + {15c71815-d345-47b3-8f86-91765db2cf64}, !- Handle + Zone Outpatient Toilet C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.0568812951970017, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {f7e411eb-6d02-4626-8082-436909d50e1b}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {fe483d29-5697-416a-858f-183224a919c9}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {f7e411eb-6d02-4626-8082-436909d50e1b}, !- Handle + Fan On Off Power Curve 92, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {fe483d29-5697-416a-858f-183224a919c9}, !- Handle + Fan On Off Efficiency Curve 92, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {ad256a1a-96f4-4769-bead-7183eb5d4175}, !- Handle + Zone Outpatient Toilet C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {9e26f162-4973-4760-8371-db38177aad6f}, !- Air Inlet Node Name + {af7d7515-0a7e-437e-b0fb-9301c4dcc7e6}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.0568812951970017, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.0568812951970017, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.0568812951970017, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {15c71815-d345-47b3-8f86-91765db2cf64}, !- Supply Air Fan Name + {dd9c1858-13be-42a6-9aa3-3f49be410ccc}, !- Heating Coil Name + {ae812240-2c1b-4904-af27-161b5e447220}, !- Cooling Coil Name + {3a2980dc-275d-4904-af97-ded3594bffe7}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {280bbe45-98c9-4e02-9b53-5f5ad0ad7009}, !- Handle + Zone Outpatient Toilet C - Story ground WSHP Inlet Air Node, !- Name + {44c924e6-b188-472a-a444-a0734281323e}, !- Inlet Port + {9e26f162-4973-4760-8371-db38177aad6f}; !- Outlet Port + +OS:Connection, + {44c924e6-b188-472a-a444-a0734281323e}, !- Handle + {f1e0312d-5b6a-4a73-bb6c-d58d51b89500}, !- Source Object + 3, !- Outlet Port + {280bbe45-98c9-4e02-9b53-5f5ad0ad7009}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9e26f162-4973-4760-8371-db38177aad6f}, !- Handle + {280bbe45-98c9-4e02-9b53-5f5ad0ad7009}, !- Source Object + 3, !- Outlet Port + {ad256a1a-96f4-4769-bead-7183eb5d4175}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {ea292bcc-c509-4404-ba3f-4ece5867482a}, !- Handle + Zone Outpatient Toilet C - Story ground WSHP Outlet Air Node, !- Name + {af7d7515-0a7e-437e-b0fb-9301c4dcc7e6}, !- Inlet Port + {5fb67329-cf0d-47f5-8bbb-b5fe3898bad0}; !- Outlet Port + +OS:Connection, + {5fb67329-cf0d-47f5-8bbb-b5fe3898bad0}, !- Handle + {ea292bcc-c509-4404-ba3f-4ece5867482a}, !- Source Object + 3, !- Outlet Port + {6193002e-0af9-4b54-b4bc-f409da914e8a}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {af7d7515-0a7e-437e-b0fb-9301c4dcc7e6}, !- Handle + {ad256a1a-96f4-4769-bead-7183eb5d4175}, !- Source Object + 4, !- Outlet Port + {ea292bcc-c509-4404-ba3f-4ece5867482a}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {07a8a7b7-f66f-474c-852d-2070d5512487}, !- Handle + Zone Outpatient Xray A - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 1450.47063118079, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {2d566b31-a5cc-4be3-abef-424457de60fa}, !- Handle + Zone Outpatient Xray A - Story ground Water-to-Air HP Htg Coil 9 Clg kBtu/hr 4.2COPH, !- Name + {39a4b11b-f3d5-4652-9a8b-9dfb7561adbf}, !- Water Inlet Node Name + {6525ec03-cf8e-42f6-8cfc-2cb6b492a6e7}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.109985539256023, !- Rated Air Flow Rate {m3/s} + 4.64607925053477e-05, !- Rated Water Flow Rate {m3/s} + 2100.10803606817, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {e98978c8-1434-4d9c-9d71-5afb3562dd15}, !- Handle + Zone Outpatient Xray A - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {4e95c1a1-8e33-4857-a2b4-a9b8ac4068da}, !- Inlet Port + {39a4b11b-f3d5-4652-9a8b-9dfb7561adbf}; !- Outlet Port + +OS:Connection, + {4e95c1a1-8e33-4857-a2b4-a9b8ac4068da}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 190, !- Outlet Port + {e98978c8-1434-4d9c-9d71-5afb3562dd15}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {1697a37d-a248-4bfd-9c2c-a47efd0f8063}, !- Handle + Zone Outpatient Xray A - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {6525ec03-cf8e-42f6-8cfc-2cb6b492a6e7}, !- Inlet Port + {dfbefb7d-e4f8-4a28-92c0-c6af7567d74c}; !- Outlet Port + +OS:Connection, + {39a4b11b-f3d5-4652-9a8b-9dfb7561adbf}, !- Handle + {e98978c8-1434-4d9c-9d71-5afb3562dd15}, !- Source Object + 3, !- Outlet Port + {2d566b31-a5cc-4be3-abef-424457de60fa}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {6525ec03-cf8e-42f6-8cfc-2cb6b492a6e7}, !- Handle + {2d566b31-a5cc-4be3-abef-424457de60fa}, !- Source Object + 3, !- Outlet Port + {1697a37d-a248-4bfd-9c2c-a47efd0f8063}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {dfbefb7d-e4f8-4a28-92c0-c6af7567d74c}, !- Handle + {1697a37d-a248-4bfd-9c2c-a47efd0f8063}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 190; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {d3bb8d1f-3f17-4669-91b1-076206dd0c81}, !- Handle + Zone Outpatient Xray A - Story ground Water-to-Air HP Clg Coil 9kBtu/hr 11.2EER, !- Name + {7a8a8249-5e8f-4adc-973d-cd7fd54fe70e}, !- Water Inlet Node Name + {63373c07-80a9-4612-83da-bfbfeea45ba8}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.109985539256023, !- Rated Air Flow Rate {m3/s} + 4.64607925053477e-05, !- Rated Water Flow Rate {m3/s} + 2217.7421584463, !- Rated Total Cooling Capacity {W} + 1511.84007981411, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {e970b550-3edf-4893-8af7-3484502d14e1}, !- Handle + Zone Outpatient Xray A - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {e9de403a-3a34-4357-86d2-5c9ab3b5a5ec}, !- Inlet Port + {7a8a8249-5e8f-4adc-973d-cd7fd54fe70e}; !- Outlet Port + +OS:Connection, + {e9de403a-3a34-4357-86d2-5c9ab3b5a5ec}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 191, !- Outlet Port + {e970b550-3edf-4893-8af7-3484502d14e1}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {ebf6eaa9-85cc-48fc-a928-1784d1cb18f0}, !- Handle + Zone Outpatient Xray A - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {63373c07-80a9-4612-83da-bfbfeea45ba8}, !- Inlet Port + {8b658ef4-b5dd-467e-80ba-d2867a61561e}; !- Outlet Port + +OS:Connection, + {7a8a8249-5e8f-4adc-973d-cd7fd54fe70e}, !- Handle + {e970b550-3edf-4893-8af7-3484502d14e1}, !- Source Object + 3, !- Outlet Port + {d3bb8d1f-3f17-4669-91b1-076206dd0c81}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {63373c07-80a9-4612-83da-bfbfeea45ba8}, !- Handle + {d3bb8d1f-3f17-4669-91b1-076206dd0c81}, !- Source Object + 3, !- Outlet Port + {ebf6eaa9-85cc-48fc-a928-1784d1cb18f0}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8b658ef4-b5dd-467e-80ba-d2867a61561e}, !- Handle + {ebf6eaa9-85cc-48fc-a928-1784d1cb18f0}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 191; !- Inlet Port + +OS:Fan:OnOff, + {218b8f9a-ae5e-436b-9f84-d05bf7775df3}, !- Handle + Zone Outpatient Xray A - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.109985539256023, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {b94d6f51-d076-4c11-b636-8dfc1ef576b3}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {7883e70d-11d6-4fdd-bb94-c0a5eecae7af}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {b94d6f51-d076-4c11-b636-8dfc1ef576b3}, !- Handle + Fan On Off Power Curve 93, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {7883e70d-11d6-4fdd-bb94-c0a5eecae7af}, !- Handle + Fan On Off Efficiency Curve 93, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {0f146c3a-846d-4b82-862f-f1ea632daf56}, !- Handle + Zone Outpatient Xray A - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {ca369e8f-7e6e-4b15-b0aa-29a90ee34321}, !- Air Inlet Node Name + {6acbca5d-b856-41b4-ba8f-3e7c6c3ea831}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.109985539256023, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.109985539256023, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.109985539256023, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {218b8f9a-ae5e-436b-9f84-d05bf7775df3}, !- Supply Air Fan Name + {2d566b31-a5cc-4be3-abef-424457de60fa}, !- Heating Coil Name + {d3bb8d1f-3f17-4669-91b1-076206dd0c81}, !- Cooling Coil Name + {07a8a7b7-f66f-474c-852d-2070d5512487}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {a678f051-7108-4d9c-b27f-bc7c67ddb84b}, !- Handle + Zone Outpatient Xray A - Story ground WSHP Inlet Air Node, !- Name + {e1ca7626-c070-442b-ae06-2d84ea1f98e4}, !- Inlet Port + {ca369e8f-7e6e-4b15-b0aa-29a90ee34321}; !- Outlet Port + +OS:Connection, + {e1ca7626-c070-442b-ae06-2d84ea1f98e4}, !- Handle + {13a157f0-bc52-4fbb-8d06-9eb43607881d}, !- Source Object + 2, !- Outlet Port + {a678f051-7108-4d9c-b27f-bc7c67ddb84b}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {ca369e8f-7e6e-4b15-b0aa-29a90ee34321}, !- Handle + {a678f051-7108-4d9c-b27f-bc7c67ddb84b}, !- Source Object + 3, !- Outlet Port + {0f146c3a-846d-4b82-862f-f1ea632daf56}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {a5c36602-4729-4dec-94b4-0bb57309f935}, !- Handle + Zone Outpatient Xray A - Story ground WSHP Outlet Air Node, !- Name + {6acbca5d-b856-41b4-ba8f-3e7c6c3ea831}, !- Inlet Port + {23744a4b-19b1-47c7-b0ea-a418aa123e49}; !- Outlet Port + +OS:Connection, + {23744a4b-19b1-47c7-b0ea-a418aa123e49}, !- Handle + {a5c36602-4729-4dec-94b4-0bb57309f935}, !- Source Object + 3, !- Outlet Port + {c4d968cf-8147-49ad-adad-62afba2016ea}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {6acbca5d-b856-41b4-ba8f-3e7c6c3ea831}, !- Handle + {0f146c3a-846d-4b82-862f-f1ea632daf56}, !- Source Object + 4, !- Outlet Port + {a5c36602-4729-4dec-94b4-0bb57309f935}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {623eb50d-1ff2-4b12-917d-55ab6defc916}, !- Handle + Zone Outpatient Xray B - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 10863.7615658564, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {415727b2-0c17-4d16-bf1c-1facb29905c2}, !- Handle + Zone Outpatient Xray B - Story ground Water-to-Air HP Htg Coil 68 Clg kBtu/hr 4.2COPH, !- Name + {e3097eb9-6fa9-4c3c-a9bf-2b5187fae003}, !- Water Inlet Node Name + {8473054d-0090-4ce7-91fa-11b15f7685af}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.875696517681842, !- Rated Air Flow Rate {m3/s} + 0.000371914272635243, !- Rated Water Flow Rate {m3/s} + 16811.1672352515, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {2c56ded0-e518-463f-a5e3-52300f9d8f97}, !- Handle + Zone Outpatient Xray B - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {7d07adfb-8466-4acc-b53d-467a95619904}, !- Inlet Port + {e3097eb9-6fa9-4c3c-a9bf-2b5187fae003}; !- Outlet Port + +OS:Connection, + {7d07adfb-8466-4acc-b53d-467a95619904}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 192, !- Outlet Port + {2c56ded0-e518-463f-a5e3-52300f9d8f97}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {ab67209f-c53b-4589-8d88-db12a069d605}, !- Handle + Zone Outpatient Xray B - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {8473054d-0090-4ce7-91fa-11b15f7685af}, !- Inlet Port + {9390408e-7159-46ca-82ee-2c160f3e0864}; !- Outlet Port + +OS:Connection, + {e3097eb9-6fa9-4c3c-a9bf-2b5187fae003}, !- Handle + {2c56ded0-e518-463f-a5e3-52300f9d8f97}, !- Source Object + 3, !- Outlet Port + {415727b2-0c17-4d16-bf1c-1facb29905c2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8473054d-0090-4ce7-91fa-11b15f7685af}, !- Handle + {415727b2-0c17-4d16-bf1c-1facb29905c2}, !- Source Object + 3, !- Outlet Port + {ab67209f-c53b-4589-8d88-db12a069d605}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9390408e-7159-46ca-82ee-2c160f3e0864}, !- Handle + {ab67209f-c53b-4589-8d88-db12a069d605}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 192; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {af27ceeb-923d-4e61-8ee7-2dd5368dbe27}, !- Handle + Zone Outpatient Xray B - Story ground Water-to-Air HP Clg Coil 68kBtu/hr 12.0EER, !- Name + {641feed5-f05f-4a68-810a-efe526f2c060}, !- Water Inlet Node Name + {04804808-0500-4e6a-a728-b12993ff1611}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.875696517681842, !- Rated Air Flow Rate {m3/s} + 0.000371914272635243, !- Rated Water Flow Rate {m3/s} + 17752.8173170127, !- Rated Total Cooling Capacity {W} + 12076.3300815266, !- Rated Sensible Cooling Capacity {W} + 4.1327873205303, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {34d0b395-dce0-4a0e-97c7-936b50017c48}, !- Handle + Zone Outpatient Xray B - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {5c694d4b-e391-48e0-b8ee-cb6df7563a2c}, !- Inlet Port + {641feed5-f05f-4a68-810a-efe526f2c060}; !- Outlet Port + +OS:Connection, + {5c694d4b-e391-48e0-b8ee-cb6df7563a2c}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 193, !- Outlet Port + {34d0b395-dce0-4a0e-97c7-936b50017c48}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {283db828-11ef-4d01-9efa-53814ab9f197}, !- Handle + Zone Outpatient Xray B - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {04804808-0500-4e6a-a728-b12993ff1611}, !- Inlet Port + {02881b3e-4185-40f6-a215-2486224f6969}; !- Outlet Port + +OS:Connection, + {641feed5-f05f-4a68-810a-efe526f2c060}, !- Handle + {34d0b395-dce0-4a0e-97c7-936b50017c48}, !- Source Object + 3, !- Outlet Port + {af27ceeb-923d-4e61-8ee7-2dd5368dbe27}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {04804808-0500-4e6a-a728-b12993ff1611}, !- Handle + {af27ceeb-923d-4e61-8ee7-2dd5368dbe27}, !- Source Object + 3, !- Outlet Port + {283db828-11ef-4d01-9efa-53814ab9f197}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {02881b3e-4185-40f6-a215-2486224f6969}, !- Handle + {283db828-11ef-4d01-9efa-53814ab9f197}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 193; !- Inlet Port + +OS:Fan:OnOff, + {0f0b7705-31df-4bd8-a1e8-a2f4c9d915c8}, !- Handle + Zone Outpatient Xray B - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.875696517681842, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {b9aeba1d-3e16-4016-bcd6-0491ac953ac5}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {2b598663-87df-48d5-bbcf-40eafc323f62}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {b9aeba1d-3e16-4016-bcd6-0491ac953ac5}, !- Handle + Fan On Off Power Curve 94, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {2b598663-87df-48d5-bbcf-40eafc323f62}, !- Handle + Fan On Off Efficiency Curve 94, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {26c3aab6-c62b-4b2e-aae2-707c970d8d4e}, !- Handle + Zone Outpatient Xray B - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {a0d70604-22fd-4092-a620-0a758ab6edf1}, !- Air Inlet Node Name + {e0eac6ac-4370-47e8-acde-ae079eeee198}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.875696517681842, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.875696517681842, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.875696517681842, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {0f0b7705-31df-4bd8-a1e8-a2f4c9d915c8}, !- Supply Air Fan Name + {415727b2-0c17-4d16-bf1c-1facb29905c2}, !- Heating Coil Name + {af27ceeb-923d-4e61-8ee7-2dd5368dbe27}, !- Cooling Coil Name + {623eb50d-1ff2-4b12-917d-55ab6defc916}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {45714def-3c61-4aab-bc90-8cba8d768a96}, !- Handle + Zone Outpatient Xray B - Story ground WSHP Inlet Air Node, !- Name + {a78376a2-4a10-4df5-ba59-f7ad789e7b5a}, !- Inlet Port + {a0d70604-22fd-4092-a620-0a758ab6edf1}; !- Outlet Port + +OS:Connection, + {a78376a2-4a10-4df5-ba59-f7ad789e7b5a}, !- Handle + {11fa6cfa-3b00-4c54-88d7-5414c82b371e}, !- Source Object + 2, !- Outlet Port + {45714def-3c61-4aab-bc90-8cba8d768a96}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {a0d70604-22fd-4092-a620-0a758ab6edf1}, !- Handle + {45714def-3c61-4aab-bc90-8cba8d768a96}, !- Source Object + 3, !- Outlet Port + {26c3aab6-c62b-4b2e-aae2-707c970d8d4e}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {01ad82c8-f242-4799-a080-847bc7d78d74}, !- Handle + Zone Outpatient Xray B - Story ground WSHP Outlet Air Node, !- Name + {e0eac6ac-4370-47e8-acde-ae079eeee198}, !- Inlet Port + {accf4f28-e93c-4077-9aff-f70dac02750f}; !- Outlet Port + +OS:Connection, + {accf4f28-e93c-4077-9aff-f70dac02750f}, !- Handle + {01ad82c8-f242-4799-a080-847bc7d78d74}, !- Source Object + 3, !- Outlet Port + {45a1ccd6-fc52-412a-b79c-67af6c62a56a}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {e0eac6ac-4370-47e8-acde-ae079eeee198}, !- Handle + {26c3aab6-c62b-4b2e-aae2-707c970d8d4e}, !- Source Object + 4, !- Outlet Port + {01ad82c8-f242-4799-a080-847bc7d78d74}, !- Target Object + 2; !- Inlet Port + +OS:Coil:Heating:Electric, + {8794e371-96cc-4c65-9e0d-644f89790a48}, !- Handle + Zone Outpatient Xray C - Story ground Supplemental Htg Coil, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 1, !- Efficiency + 1450.47063118082, !- Nominal Capacity {W} + , !- Air Inlet Node Name + ; !- Air Outlet Node Name + +OS:Coil:Heating:WaterToAirHeatPump:EquationFit, + {6e0fd6f9-63cc-40db-a3d2-a32d19f176eb}, !- Handle + Zone Outpatient Xray C - Story ground Water-to-Air HP Htg Coil 9 Clg kBtu/hr 4.2COPH, !- Name + {0ff02047-9113-46e2-8dd1-4ac1d01eae60}, !- Water Inlet Node Name + {46c69de0-b04d-41f4-8b85-5daa80c6369a}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.109985539256021, !- Rated Air Flow Rate {m3/s} + 4.6460792505347e-05, !- Rated Water Flow Rate {m3/s} + 2100.10803606814, !- Rated Heating Capacity {W} + 4.2, !- Rated Heating Coefficient of Performance {W/W} + 20, !- Rated Entering Water Temperature {C} + 20, !- Rated Entering Air Dry-Bulb Temperature {C} + 1, !- Ratio of Rated Heating Capacity to Rated Cooling Capacity + {b3aa29de-4f9f-41fc-973f-dc47a05d483d}, !- Heating Capacity Curve Name + {8de06865-c68a-4847-945e-4191be04afc5}, !- Heating Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}; !- Part Load Fraction Correlation Curve Name + +OS:Node, + {f3fd291f-2d5e-48ba-b843-d8c9e5cf6f24}, !- Handle + Zone Outpatient Xray C - Story ground Water-to-Air HP Htg Coil Inlet Water Node, !- Name + {8cd93dc8-3a3f-469d-9d74-b3932e96ec62}, !- Inlet Port + {0ff02047-9113-46e2-8dd1-4ac1d01eae60}; !- Outlet Port + +OS:Connection, + {8cd93dc8-3a3f-469d-9d74-b3932e96ec62}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 194, !- Outlet Port + {f3fd291f-2d5e-48ba-b843-d8c9e5cf6f24}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {99209b34-68db-4739-800b-859ee8618a2f}, !- Handle + Zone Outpatient Xray C - Story ground Water-to-Air HP Htg Coil Outlet Water Node, !- Name + {46c69de0-b04d-41f4-8b85-5daa80c6369a}, !- Inlet Port + {0b55bc90-2a84-477b-a693-316049d37e74}; !- Outlet Port + +OS:Connection, + {0ff02047-9113-46e2-8dd1-4ac1d01eae60}, !- Handle + {f3fd291f-2d5e-48ba-b843-d8c9e5cf6f24}, !- Source Object + 3, !- Outlet Port + {6e0fd6f9-63cc-40db-a3d2-a32d19f176eb}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {46c69de0-b04d-41f4-8b85-5daa80c6369a}, !- Handle + {6e0fd6f9-63cc-40db-a3d2-a32d19f176eb}, !- Source Object + 3, !- Outlet Port + {99209b34-68db-4739-800b-859ee8618a2f}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {0b55bc90-2a84-477b-a693-316049d37e74}, !- Handle + {99209b34-68db-4739-800b-859ee8618a2f}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 194; !- Inlet Port + +OS:Coil:Cooling:WaterToAirHeatPump:EquationFit, + {14ce4113-0a35-4dcf-846d-8cda5d1aa887}, !- Handle + Zone Outpatient Xray C - Story ground Water-to-Air HP Clg Coil 9kBtu/hr 11.2EER, !- Name + {2af94d60-dcba-45f3-971d-5ee38222ed5c}, !- Water Inlet Node Name + {64bc0ec0-93e5-4a68-b21c-74c72684bd17}, !- Water Outlet Node Name + , !- Air Inlet Node Name + , !- Air Outlet Node Name + 0.109985539256021, !- Rated Air Flow Rate {m3/s} + 4.6460792505347e-05, !- Rated Water Flow Rate {m3/s} + 2217.74215844626, !- Rated Total Cooling Capacity {W} + 1511.84007981408, !- Rated Sensible Cooling Capacity {W} + 3.86635907491919, !- Rated Cooling Coefficient of Performance {W/W} + 30, !- Rated Entering Water Temperature {C} + 27, !- Rated Entering Air Dry-Bulb Temperature {C} + 19, !- Rated Entering Air Wet-Bulb Temperature {C} + {bcf61a10-b3f9-40de-898d-27857814e569}, !- Total Cooling Capacity Curve Name + {3c16d536-f607-4e35-b750-ae63977d8e02}, !- Sensible Cooling Capacity Curve Name + {d5416dc6-8a9c-4d04-9cec-38c14dddb343}, !- Cooling Power Consumption Curve Name + {6cc20bf2-3708-44df-9628-0d702aad9fb0}, !- Part Load Fraction Correlation Curve Name + , !- Nominal Time for Condensate Removal to Begin {s} + , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 2.5, !- Maximum Cycling Rate {cycles/hr} + 60, !- Latent Capacity Time Constant {s} + 60; !- Fan Delay Time {s} + +OS:Node, + {0a659ce0-2200-491f-828f-071100397a61}, !- Handle + Zone Outpatient Xray C - Story ground Water-to-Air HP Clg Coil Inlet Water Node, !- Name + {742e348f-18f4-4f7b-b088-65e9232f0dd6}, !- Inlet Port + {2af94d60-dcba-45f3-971d-5ee38222ed5c}; !- Outlet Port + +OS:Connection, + {742e348f-18f4-4f7b-b088-65e9232f0dd6}, !- Handle + {73e38d74-8501-4435-8e73-ae5ba694abf4}, !- Source Object + 195, !- Outlet Port + {0a659ce0-2200-491f-828f-071100397a61}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {11f4844b-6154-4af6-bbb5-2a1a90d082b9}, !- Handle + Zone Outpatient Xray C - Story ground Water-to-Air HP Clg Coil Outlet Water Node, !- Name + {64bc0ec0-93e5-4a68-b21c-74c72684bd17}, !- Inlet Port + {f5013310-dd76-4c8e-ae10-5b9561da602c}; !- Outlet Port + +OS:Connection, + {2af94d60-dcba-45f3-971d-5ee38222ed5c}, !- Handle + {0a659ce0-2200-491f-828f-071100397a61}, !- Source Object + 3, !- Outlet Port + {14ce4113-0a35-4dcf-846d-8cda5d1aa887}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {64bc0ec0-93e5-4a68-b21c-74c72684bd17}, !- Handle + {14ce4113-0a35-4dcf-846d-8cda5d1aa887}, !- Source Object + 3, !- Outlet Port + {11f4844b-6154-4af6-bbb5-2a1a90d082b9}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f5013310-dd76-4c8e-ae10-5b9561da602c}, !- Handle + {11f4844b-6154-4af6-bbb5-2a1a90d082b9}, !- Source Object + 3, !- Outlet Port + {b3268e7e-32f3-497d-8ccc-3478f06d9c84}, !- Target Object + 195; !- Inlet Port + +OS:Fan:OnOff, + {d81e374d-58d4-4a3a-8108-9d78ea8a4317}, !- Handle + Zone Outpatient Xray C - Story ground WSHP Fan, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + 0.1595, !- Fan Total Efficiency + 331.2882503, !- Pressure Rise {Pa} + 0.109985539256021, !- Maximum Flow Rate {m3/s} + 0.29, !- Motor Efficiency + 1, !- Motor In Airstream Fraction + , !- Air Inlet Node Name + , !- Air Outlet Node Name + {31a3e8ff-32d0-4f00-b60a-137fef24af20}, !- Fan Power Ratio Function of Speed Ratio Curve Name + {a560a7ce-349f-4581-8585-4f78060ee4f3}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name + ; !- End-Use Subcategory + +OS:Curve:Exponent, + {31a3e8ff-32d0-4f00-b60a-137fef24af20}, !- Handle + Fan On Off Power Curve 95, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 Constant + 0, !- Coefficient3 Constant + 0, !- Minimum Value of x + 1, !- Maximum Value of x + , !- Minimum Curve Output + , !- Maximum Curve Output + , !- Input Unit Type for X + ; !- Output Unit Type + +OS:Curve:Cubic, + {a560a7ce-349f-4581-8585-4f78060ee4f3}, !- Handle + Fan On Off Efficiency Curve 95, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:ZoneHVAC:WaterToAirHeatPump, + {f3aa6c01-5af1-4d40-b1ed-aafca0eacac2}, !- Handle + Zone Outpatient Xray C - Story ground WSHP, !- Name + {4a2afb53-d7da-4694-8c2d-2ed4453da140}, !- Availability Schedule Name + {55918fa8-450f-430d-938a-38fd5fffda0e}, !- Air Inlet Node Name + {994fa9cb-cd20-4b07-b0dd-da97753ac863}, !- Air Outlet Node Name + , !- Outdoor Air Mixer Name + 0.109985539256021, !- Supply Air Flow Rate During Cooling Operation {m3/s} + 0.109985539256021, !- Supply Air Flow Rate During Heating Operation {m3/s} + 0.109985539256021, !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s} + Yes, !- No Load Supply Air Flow Rate Control Set To Low Speed + 0, !- Outdoor Air Flow Rate During Cooling Operation {m3/s} + 0, !- Outdoor Air Flow Rate During Heating Operation {m3/s} + 0, !- Outdoor Air Flow Rate When No Cooling or Heating is Needed {m3/s} + {d81e374d-58d4-4a3a-8108-9d78ea8a4317}, !- Supply Air Fan Name + {6e0fd6f9-63cc-40db-a3d2-a32d19f176eb}, !- Heating Coil Name + {14ce4113-0a35-4dcf-846d-8cda5d1aa887}, !- Cooling Coil Name + {8794e371-96cc-4c65-9e0d-644f89790a48}, !- Supplemental Heating Coil Name + 40, !- Maximum Supply Air Temperature from Supplemental Heater {C} + , !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C} + , !- Outdoor Dry-Bulb Temperature Sensor Node Name + , !- Fan Placement + , !- Supply Air Fan Operating Mode Schedule Name + ; !- Availability Manager List Name + +OS:Node, + {5704eacc-aa43-4508-b867-3c1e225756eb}, !- Handle + Zone Outpatient Xray C - Story ground WSHP Inlet Air Node, !- Name + {f1360d6c-4e06-4be3-a55c-fe569c2d178f}, !- Inlet Port + {55918fa8-450f-430d-938a-38fd5fffda0e}; !- Outlet Port + +OS:Connection, + {f1360d6c-4e06-4be3-a55c-fe569c2d178f}, !- Handle + {6212b48f-63d4-46d4-96a8-3a4ccb3dd97a}, !- Source Object + 2, !- Outlet Port + {5704eacc-aa43-4508-b867-3c1e225756eb}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {55918fa8-450f-430d-938a-38fd5fffda0e}, !- Handle + {5704eacc-aa43-4508-b867-3c1e225756eb}, !- Source Object + 3, !- Outlet Port + {f3aa6c01-5af1-4d40-b1ed-aafca0eacac2}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {6d9f75b2-2097-450c-a6d5-10a6b8494331}, !- Handle + Zone Outpatient Xray C - Story ground WSHP Outlet Air Node, !- Name + {994fa9cb-cd20-4b07-b0dd-da97753ac863}, !- Inlet Port + {a5633068-05bd-4a4e-ae58-98b92ffdd8ee}; !- Outlet Port + +OS:Connection, + {a5633068-05bd-4a4e-ae58-98b92ffdd8ee}, !- Handle + {6d9f75b2-2097-450c-a6d5-10a6b8494331}, !- Source Object + 3, !- Outlet Port + {d2f868fb-ea1d-4156-abe0-674af0b04b1c}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {994fa9cb-cd20-4b07-b0dd-da97753ac863}, !- Handle + {f3aa6c01-5af1-4d40-b1ed-aafca0eacac2}, !- Source Object + 4, !- Outlet Port + {6d9f75b2-2097-450c-a6d5-10a6b8494331}, !- Target Object + 2; !- Inlet Port + +OS:Schedule:Ruleset, + {27ad5c7c-4d32-4387-8fd8-b6dc3f03a616}, !- Handle + Building Hours of Operation NonResidential, !- Name + {6c1b19f7-b679-401a-afd0-e157867cbb0e}, !- Schedule Type Limits Name + {a76d4ec3-487a-4765-a572-4c95967353e0}, !- Default Day Schedule Name + {97c04e4a-0de8-496f-93fd-b6e960122f3a}, !- Summer Design Day Schedule Name + {f823602c-30c5-4ed6-8edf-67adbfce4761}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {a76d4ec3-487a-4765-a572-4c95967353e0}, !- Handle + Building Hours of Operation NonResidential Default, !- Name + {6c1b19f7-b679-401a-afd0-e157867cbb0e}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 10, !- Hour 1 + 15, !- Minute 1 + 0, !- Value Until Time 1 + 16, !- Hour 2 + 15, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:AdditionalProperties, + {5938fc22-3b1f-4dc2-a60b-aa68dc63b527}, !- Handle + {27ad5c7c-4d32-4387-8fd8-b6dc3f03a616}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 957.42520458265335, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 96, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-10-22 22:40:35 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-10-22 22:40:35 UTC; !- Feature Value 4 + +OS:Schedule:Day, + {f823602c-30c5-4ed6-8edf-67adbfce4761}, !- Handle + Building Hours of Operation NonResidential Winter Design Day, !- Name + {6c1b19f7-b679-401a-afd0-e157867cbb0e}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {97c04e4a-0de8-496f-93fd-b6e960122f3a}, !- Handle + Building Hours of Operation NonResidential Summer Design Day, !- Name + {6c1b19f7-b679-401a-afd0-e157867cbb0e}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Rule, + {c133e8bc-b131-422d-afb3-87f5f4e70937}, !- Handle + Schedule Rule 13, !- Name + {27ad5c7c-4d32-4387-8fd8-b6dc3f03a616}, !- Schedule Ruleset Name + 1, !- Rule Order + {2883f52d-08ea-407c-8b9c-3585db159087}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 6, !- Start Day + 12, !- End Month + 29; !- End Day + +OS:Schedule:Day, + {2883f52d-08ea-407c-8b9c-3585db159087}, !- Handle + Schedule Day 26, !- Name + {6c1b19f7-b679-401a-afd0-e157867cbb0e}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 9, !- Hour 1 + 45, !- Minute 1 + 0, !- Value Until Time 1 + 16, !- Hour 2 + 15, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Rule, + {0e841941-cb80-42b0-9174-33d170962578}, !- Handle + Schedule Rule 14, !- Name + {27ad5c7c-4d32-4387-8fd8-b6dc3f03a616}, !- Schedule Ruleset Name + 0, !- Rule Order + {494e0d72-990d-436e-8df0-945cc034239d}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Day, + {494e0d72-990d-436e-8df0-945cc034239d}, !- Handle + Schedule Day 27, !- Name + {6c1b19f7-b679-401a-afd0-e157867cbb0e}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 9, !- Hour 1 + 45, !- Minute 1 + 0, !- Value Until Time 1 + 16, !- Hour 2 + 15, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:DefaultScheduleSet, + {588c91b5-3cb0-409d-8487-e837b16855e0}, !- Handle + Building Default Schedule Set, !- Name + {27ad5c7c-4d32-4387-8fd8-b6dc3f03a616}, !- Hours of Operation Schedule Name + , !- Number of People Schedule Name + , !- People Activity Level Schedule Name + , !- Lighting Schedule Name + , !- Electric Equipment Schedule Name + , !- Gas Equipment Schedule Name + , !- Hot Water Equipment Schedule Name + , !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name + +OS:AdditionalProperties, + {f30671bf-fd66-48ef-b0f9-5fe419cc38fd}, !- Handle + {1cc59b6c-25f9-4ecb-a78e-db9e913cfc91}, !- Object Name + param_sch_ver, !- Feature Name 1 + String, !- Feature Data Type 1 + 0.0.1, !- Feature Value 1 + param_sch_floor, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.050000000000000003, !- Feature Value 2 + param_sch_ceiling, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0.90000000000000002; !- Feature Value 3 + +OS:AdditionalProperties, + {fda17b40-59db-4ee4-afd3-64e71836a9c8}, !- Handle + {092ea8d7-0c3f-4e54-aa04-6a48611c9deb}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_start - 3.0 ~ 0.1 | hoo_start - 1.0 ~ 0.3 | hoo_start - 0.5 ~ 0.3 | hoo_start + 0.5 ~ 0.6 | hoo_start + 1.5 ~ 0.9 | hoo_end - 3.0 ~ 0.9 | hoo_end - 1.0 ~ 0.6 | hoo_end + 1.0 ~ 0.3 | hoo_end + 3.0 ~ 0.1, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + typical_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {8448cc28-d3ea-443c-aa18-368219f4b81a}, !- Handle + {fa329e44-495a-4b5f-b5d7-6fc2d3bcc775}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_start ~ val_flr ~ 0.1 | hoo_end ~ 0.1 ~ val_flr, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + minimal_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {de582527-6323-4a85-bc2f-f7e13a49e558}, !- Handle + {86a67b46-e1e5-4a76-9765-5a5f6f30929b}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_start - 1.0 ~ 0.1 | hoo_start + 1.0 ~ 0.3 | hoo_start + 3.0 ~ 0.4 | mid - 0.5 ~ 0.4 | hoo_end - 3.0 ~ 0.3 | hoo_end - 2.0 ~ 0.3 | hoo_end + 2.0 ~ 0.1, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + medium_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {9b85f895-2616-4fe9-8ff5-570a3f34edcb}, !- Handle + {bc63eff9-7025-422b-9f3f-299f156c2b95}, !- Object Name + param_sch_ver, !- Feature Name 1 + String, !- Feature Data Type 1 + 0.0.1, !- Feature Value 1 + param_sch_floor, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.29999999999999999, !- Feature Value 2 + param_sch_ceiling, !- Feature Name 3 + Double, !- Feature Data Type 3 + 1; !- Feature Value 3 + +OS:AdditionalProperties, + {d43cee1a-047d-47a7-9b30-420f3c144686}, !- Handle + {86df08e7-5758-4419-823a-772709ecc497}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_start - 3.0 ~ 0.3 | hoo_start - 1.0 ~ 0.5 | hoo_start + 1.0 ~ 1.0 | hoo_end - 3.0 ~ 1.0 | hoo_end - 1.0 ~ 0.5 | hoo_end + 1.0 ~ 0.3, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + typical_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {f65a327d-e2ed-4781-81cd-1f98e125658a}, !- Handle + {a0e600be-0f67-4992-90ac-15e5c411010f}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_start ~ val_flr ~ 0.5 | hoo_end ~ 0.5 ~ val_flr, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + minimal_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {8a15f402-9dfb-499a-ba63-49a5966f06d3}, !- Handle + {b2e29cf0-be8e-4930-8c2c-928540a42a9a}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_start - 1.0 ~ 0.3 | hoo_start + 1.0 ~ 0.5 | hoo_start + 3.0 ~ 0.8 | mid - 0.5 ~ 0.8 | hoo_end - 3.0 ~ 0.5 | hoo_end - 2.0 ~ 0.5 | hoo_end + 2.0 ~ 0.3, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + medium_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {200e66e7-bff3-4d2a-b10a-726e2b4fe36a}, !- Handle + {c33bb4b8-6a9b-460a-93f9-4d72b3ec6154}, !- Object Name + param_sch_ver, !- Feature Name 1 + String, !- Feature Data Type 1 + 0.0.1, !- Feature Value 1 + param_sch_floor, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0, !- Feature Value 2 + param_sch_ceiling, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0.90000000000000002; !- Feature Value 3 + +OS:AdditionalProperties, + {e5c8eef9-c7cc-4d1d-8c15-d80a1e1abcf8}, !- Handle + {b0640a8c-8711-4b91-8e89-4008471147ee}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_start - 3.0 ~ 0.05 | hoo_start - 1.0 ~ 0.2 | hoo_start - 0.5 ~ 0.2 | hoo_start + 0.5 ~ 0.5 | hoo_start + 1.5 ~ 0.9 | hoo_end - 3.0 ~ 0.9 | hoo_end - 1.0 ~ 0.5 | hoo_end + 1.0 ~ 0.2 | hoo_end + 3.0 ~ 0.05, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + typical_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {f2d9e178-549f-4fa4-a086-dd9179ab6834}, !- Handle + {bd976fb7-20a8-4b31-985a-18bdf5fdc490}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_start ~ val_flr ~ 0.05 | hoo_end ~ 0.05 ~ val_flr, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + minimal_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {c5ceace1-7044-4257-afca-719a483b196c}, !- Handle + {88e69f36-344b-472a-90d2-ca62d66f9d49}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_start - 1.0 ~ 0.05 | hoo_start + 1.0 ~ 0.2 | hoo_start + 3.0 ~ 0.3 | mid - 0.5 ~ 0.3 | hoo_end - 3.0 ~ 0.2 | hoo_end - 2.0 ~ 0.2 | hoo_end + 2.0 ~ 0.05, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + medium_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {0f23c8a9-5cba-4eda-8723-fe30d615c68c}, !- Handle + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- Object Name + param_sch_ver, !- Feature Name 1 + String, !- Feature Data Type 1 + 0.0.1, !- Feature Value 1 + param_sch_floor, !- Feature Name 2 + Double, !- Feature Data Type 2 + 120, !- Feature Value 2 + param_sch_ceiling, !- Feature Name 3 + Double, !- Feature Data Type 3 + 120; !- Feature Value 3 + +OS:Schedule:Rule, + {088369ea-54ae-4fb2-8d14-a7f7c2c93d6b}, !- Handle + Schedule Rule 15, !- Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- Schedule Ruleset Name + 1, !- Rule Order + {5a16382b-e59b-4fdb-9853-60cc31ebe47e}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 6, !- Start Day + 12, !- End Month + 29; !- End Day + +OS:Schedule:Day, + {5a16382b-e59b-4fdb-9853-60cc31ebe47e}, !- Handle + Outpatient Activity Default 1, !- Name + {cd37eae1-ef04-45e1-ac7c-f85a9c973f19}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 20, !- Hour 1 + 15, !- Minute 1 + 120, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 120; !- Value Until Time 2 + +OS:Schedule:Rule, + {a0ce1951-8a0d-45e5-84b4-90c384a4ce47}, !- Handle + Schedule Rule 16, !- Name + {1ae5cb30-73ee-4bcc-824a-1ef4378fbade}, !- Schedule Ruleset Name + 0, !- Rule Order + {53941bca-8c45-453d-8de4-1483bdb8263e}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Day, + {53941bca-8c45-453d-8de4-1483bdb8263e}, !- Handle + Outpatient Activity Default 2, !- Name + {cd37eae1-ef04-45e1-ac7c-f85a9c973f19}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 23, !- Hour 1 + 15, !- Minute 1 + 120, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 120; !- Value Until Time 2 + +OS:AdditionalProperties, + {6e483d68-7034-4042-9a18-3a3196defc66}, !- Handle + {10c7b2d6-4f91-41c4-9b68-b7e5d3c30473}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_end + 4.0 ~ val_flr ~ val_flr, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + typical_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {c5afa0a3-6c9e-4619-ae6a-150987085428}, !- Handle + {53941bca-8c45-453d-8de4-1483bdb8263e}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_end + 7.0 ~ val_flr ~ val_flr, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + minimal_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {ccec5ab4-5fe3-46d9-9b40-c594bf076a30}, !- Handle + {5a16382b-e59b-4fdb-9853-60cc31ebe47e}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_end + 4.0 ~ val_flr ~ val_flr, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + minimal_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {93825b3d-22cb-4be8-9ea1-ee577519864d}, !- Handle + {9cfa7b9e-a7bb-4182-a7bc-52ebd5e6e02c}, !- Object Name + param_sch_ver, !- Feature Name 1 + String, !- Feature Data Type 1 + 0.0.1, !- Feature Value 1 + param_sch_floor, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0.01, !- Feature Value 2 + param_sch_ceiling, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0.95999999999999996; !- Feature Value 3 + +OS:Schedule:Rule, + {f15a3fad-3f26-4b01-9946-6e1a2b418dc8}, !- Handle + Schedule Rule 17, !- Name + {9cfa7b9e-a7bb-4182-a7bc-52ebd5e6e02c}, !- Schedule Ruleset Name + 0, !- Rule Order + {ff42cc01-277a-425c-99b7-05ddf4a59eb3}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 6, !- Start Day + 12, !- End Month + 29; !- End Day + +OS:Schedule:Day, + {ff42cc01-277a-425c-99b7-05ddf4a59eb3}, !- Handle + Outpatient Radiology Equip Default 1, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 8, !- Hour 1 + 45, !- Minute 1 + 0.01, !- Value Until Time 1 + 14, !- Hour 2 + 15, !- Minute 2 + 0.96, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0.01; !- Value Until Time 3 + +OS:AdditionalProperties, + {35387848-1c25-4729-ad1c-7461870ff799}, !- Handle + {053af880-881f-4f0d-9fb6-d7bb62769c07}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_start ~ val_flr ~ val_clg | hoo_end - 2.0 ~ val_clg ~ val_flr, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + typical_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {9e67d5ad-0017-49b2-934f-d823e8420405}, !- Handle + {ff42cc01-277a-425c-99b7-05ddf4a59eb3}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_start - 1.0 ~ val_flr ~ val_clg | hoo_end - 2.0 ~ val_clg ~ val_flr, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + maximum_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {1014482c-8a47-4674-b6db-ec66ff04eca9}, !- Handle + {f2b01fd8-45aa-449d-b290-050083199c51}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_end + 7.0 ~ val_flr ~ val_flr, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + minimal_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {bf773781-071a-461a-9b27-57d8325576b3}, !- Handle + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Object Name + param_sch_ver, !- Feature Name 1 + String, !- Feature Data Type 1 + 0.0.1, !- Feature Value 1 + param_sch_floor, !- Feature Name 2 + Double, !- Feature Data Type 2 + 18.300000000000001, !- Feature Value 2 + param_sch_ceiling, !- Feature Name 3 + Double, !- Feature Data Type 3 + 21.100000000000001; !- Feature Value 3 + +OS:Schedule:Rule, + {61fe6c23-b81a-405a-9a92-9b7056bf1cd7}, !- Handle + Schedule Rule 18, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Schedule Ruleset Name + 1, !- Rule Order + {576570fc-24e6-4b71-bc8a-922754a79ab2}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 6, !- Start Day + 12, !- End Month + 29; !- End Day + +OS:Schedule:Day, + {576570fc-24e6-4b71-bc8a-922754a79ab2}, !- Handle + Outpatient HtgSetp Wknd Day 1, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 16, !- Hour 1 + 15, !- Minute 1 + 18.3, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 18.3; !- Value Until Time 2 + +OS:Schedule:Rule, + {b0fb56a7-61f8-402a-83ae-fc369e0be3c2}, !- Handle + Schedule Rule 19, !- Name + {e18d5bb1-6a51-45b4-b04b-1f243bb62e27}, !- Schedule Ruleset Name + 0, !- Rule Order + {d0b2da27-076a-48f1-adec-255b4026d810}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Day, + {d0b2da27-076a-48f1-adec-255b4026d810}, !- Handle + Outpatient HtgSetp Wknd Day 2, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 16, !- Hour 1 + 15, !- Minute 1 + 18.3, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 18.3; !- Value Until Time 2 + +OS:AdditionalProperties, + {7708888e-a0e0-4af9-b6b8-49be1fe07ba9}, !- Handle + {4080103b-31ce-4a63-a526-77a4d4dace8d}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_start + 0 ~ val_flr ~ val_clg | hoo_end + 0 ~ val_clg ~ val_flr, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + typical_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {6cd097fd-1194-45e2-bda6-7c5ef3b40fe6}, !- Handle + {d0b2da27-076a-48f1-adec-255b4026d810}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_end + 0 ~ val_flr ~ val_flr, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + minimal_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {e6b4961a-97a1-41ac-aa52-e79e9fefa5c5}, !- Handle + {576570fc-24e6-4b71-bc8a-922754a79ab2}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_end + 0 ~ val_flr ~ val_flr, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + minimal_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {c2ce5e94-f0bb-4a15-bf35-53ef61aa9bb7}, !- Handle + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}, !- Object Name + param_sch_ver, !- Feature Name 1 + String, !- Feature Data Type 1 + 0.0.1, !- Feature Value 1 + param_sch_floor, !- Feature Name 2 + Double, !- Feature Data Type 2 + 22.199999999999999, !- Feature Value 2 + param_sch_ceiling, !- Feature Name 3 + Double, !- Feature Data Type 3 + 25; !- Feature Value 3 + +OS:Schedule:Rule, + {632816cb-d021-4a6c-9366-40ad59a4dbcd}, !- Handle + Schedule Rule 11, !- Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}, !- Schedule Ruleset Name + 1, !- Rule Order + {3e2b8faa-ab43-499e-a42b-1b03b754e127}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 6, !- Start Day + 12, !- End Month + 29; !- End Day + +OS:Schedule:Day, + {3e2b8faa-ab43-499e-a42b-1b03b754e127}, !- Handle + Outpatient ClgSetp Wknd Day 1, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 16, !- Hour 1 + 15, !- Minute 1 + 25, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 25; !- Value Until Time 2 + +OS:Schedule:Rule, + {b521450e-abb4-4958-a232-4a8544f09f49}, !- Handle + Schedule Rule 20, !- Name + {9bf9ffc9-d5ae-4a64-836b-4da65eb3de3d}, !- Schedule Ruleset Name + 0, !- Rule Order + {0a61b751-ecb1-4c10-9169-2196547cdbef}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Day, + {0a61b751-ecb1-4c10-9169-2196547cdbef}, !- Handle + Outpatient ClgSetp Wknd Day 2, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 16, !- Hour 1 + 15, !- Minute 1 + 25, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 25; !- Value Until Time 2 + +OS:AdditionalProperties, + {ebed7467-48c3-4781-b4a7-f39dbc31834c}, !- Handle + {49dbe0a6-1041-4abd-baf9-40ed14ec7352}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_start + 0 ~ val_clg ~ val_flr | hoo_end + 0 ~ val_flr ~ val_clg, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + typical_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {020d37e8-e0c9-4cbb-8e1f-e893624bf355}, !- Handle + {0a61b751-ecb1-4c10-9169-2196547cdbef}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_end + 0 ~ val_clg ~ val_clg, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + maximum_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {40f6d644-4f99-4ee4-a506-357788752eee}, !- Handle + {3e2b8faa-ab43-499e-a42b-1b03b754e127}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_end + 0 ~ val_clg ~ val_clg, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + maximum_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {a6e6d46e-710f-413d-9279-b323fef8207e}, !- Handle + {344183c5-2e2a-423f-8a28-cbe281d02aba}, !- Object Name + param_sch_ver, !- Feature Name 1 + String, !- Feature Data Type 1 + 0.0.1, !- Feature Value 1 + param_sch_floor, !- Feature Name 2 + Double, !- Feature Data Type 2 + 18.300000000000001, !- Feature Value 2 + param_sch_ceiling, !- Feature Name 3 + Double, !- Feature Data Type 3 + 18.300000000000001; !- Feature Value 3 + +OS:Schedule:Rule, + {931db71e-0465-4c5e-b6c6-83a7f63d7719}, !- Handle + Schedule Rule 12, !- Name + {344183c5-2e2a-423f-8a28-cbe281d02aba}, !- Schedule Ruleset Name + 1, !- Rule Order + {bf46df5d-fad1-4964-ab67-032537743ebf}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 6, !- Start Day + 12, !- End Month + 29; !- End Day + +OS:Schedule:Day, + {bf46df5d-fad1-4964-ab67-032537743ebf}, !- Handle + Outpatient OR HtgSetp Default 1, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 16, !- Hour 1 + 15, !- Minute 1 + 18.3, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 18.3; !- Value Until Time 2 + +OS:Schedule:Rule, + {eccdc7ec-60b6-4ed5-8377-b075a6a85b0c}, !- Handle + Schedule Rule 21, !- Name + {344183c5-2e2a-423f-8a28-cbe281d02aba}, !- Schedule Ruleset Name + 0, !- Rule Order + {9119ff13-68a3-44fd-beee-3597c7d79b36}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Day, + {9119ff13-68a3-44fd-beee-3597c7d79b36}, !- Handle + Outpatient OR HtgSetp Default 2, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 16, !- Hour 1 + 15, !- Minute 1 + 18.3, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 18.3; !- Value Until Time 2 + +OS:AdditionalProperties, + {7de330be-ca63-45b2-ae3a-245ed0cd2b88}, !- Handle + {bb573ed3-b2a6-4bb5-8733-9dae293ed1f5}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_end + 0 ~ val_flr ~ val_flr, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + typical_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {837e8e7f-00b8-41de-9fe8-e7459c6e145a}, !- Handle + {9119ff13-68a3-44fd-beee-3597c7d79b36}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_end + 0 ~ val_flr ~ val_flr, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + minimal_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {c40678db-cfdd-4f87-b55f-9273b7efb9ca}, !- Handle + {bf46df5d-fad1-4964-ab67-032537743ebf}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_end + 0 ~ val_flr ~ val_flr, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + minimal_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {272b6786-da78-4266-9ec2-342e49940706}, !- Handle + {6dbd9860-f404-4816-8860-74dc79b5dcbe}, !- Object Name + param_sch_ver, !- Feature Name 1 + String, !- Feature Data Type 1 + 0.0.1, !- Feature Value 1 + param_sch_floor, !- Feature Name 2 + Double, !- Feature Data Type 2 + 18.300000000000001, !- Feature Value 2 + param_sch_ceiling, !- Feature Name 3 + Double, !- Feature Data Type 3 + 22.199999999999999; !- Feature Value 3 + +OS:Schedule:Rule, + {1af1e86d-5978-4f2e-99e2-c48193810a19}, !- Handle + Schedule Rule 22, !- Name + {6dbd9860-f404-4816-8860-74dc79b5dcbe}, !- Schedule Ruleset Name + 1, !- Rule Order + {893c3b72-a7aa-4252-a7a4-794d84825328}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 6, !- Start Day + 12, !- End Month + 29; !- End Day + +OS:Schedule:Day, + {893c3b72-a7aa-4252-a7a4-794d84825328}, !- Handle + Outpatient OR ClgSetp Default 1, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 9, !- Hour 1 + 45, !- Minute 1 + 22.2, !- Value Until Time 1 + 16, !- Hour 2 + 15, !- Minute 2 + 18.3, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 22.2; !- Value Until Time 3 + +OS:Schedule:Rule, + {12b0e4a8-b8ec-41be-b45c-bd1b776a9734}, !- Handle + Schedule Rule 23, !- Name + {6dbd9860-f404-4816-8860-74dc79b5dcbe}, !- Schedule Ruleset Name + 0, !- Rule Order + {3f95bc1e-bca9-47ea-b800-ac894417f47a}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Day, + {3f95bc1e-bca9-47ea-b800-ac894417f47a}, !- Handle + Outpatient OR ClgSetp Default 2, !- Name + {c89e8835-286d-4748-b745-8ec8fc48a714}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 9, !- Hour 1 + 45, !- Minute 1 + 22.2, !- Value Until Time 1 + 16, !- Hour 2 + 15, !- Minute 2 + 18.3, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 22.2; !- Value Until Time 3 + +OS:AdditionalProperties, + {515cceb3-5443-46c9-8f2a-1fac6b58d09d}, !- Handle + {1306941e-958d-418f-9ba2-623ecf9e74f9}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_start + 0 ~ val_clg ~ val_flr | hoo_end + 0 ~ val_flr ~ val_clg, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + typical_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {9c83e267-3ffc-4dee-95a1-090f174561be}, !- Handle + {3f95bc1e-bca9-47ea-b800-ac894417f47a}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_start + 0 ~ val_clg ~ val_flr | hoo_end + 0 ~ val_flr ~ val_clg, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + minimal_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {c381d0c2-1b1d-41ac-a452-c8292df3a543}, !- Handle + {893c3b72-a7aa-4252-a7a4-794d84825328}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + hoo_start + 0 ~ val_clg ~ val_flr | hoo_end + 0 ~ val_flr ~ val_clg, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + minimal_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {edf3fccb-74ce-451d-9d1e-6f5a30a80a20}, !- Handle + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Object Name + param_sch_ver, !- Feature Name 1 + String, !- Feature Data Type 1 + 0.0.1, !- Feature Value 1 + param_sch_floor, !- Feature Name 2 + Double, !- Feature Data Type 2 + 1, !- Feature Value 2 + param_sch_ceiling, !- Feature Name 3 + Double, !- Feature Data Type 3 + 1; !- Feature Value 3 + +OS:Schedule:Rule, + {cad0fd64-3dd6-439e-8e40-ae5c624e9ed0}, !- Handle + Schedule Rule 24, !- Name + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Schedule Ruleset Name + 1, !- Rule Order + {45d6c5c7-e591-4608-bbf9-73975262607c}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 6, !- Start Day + 12, !- End Month + 29; !- End Day + +OS:Schedule:Day, + {45d6c5c7-e591-4608-bbf9-73975262607c}, !- Handle + OutPatientHealthCare Hours_of_operation Default 1, !- Name + {6c1b19f7-b679-401a-afd0-e157867cbb0e}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Rule, + {147e44a9-6b9e-4b64-9308-37124a82b7db}, !- Handle + Schedule Rule 25, !- Name + {e9214b2f-3004-4c0e-a978-4294573afaeb}, !- Schedule Ruleset Name + 0, !- Rule Order + {c4948d51-bf79-424b-b7b5-579ccb293afc}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Day, + {c4948d51-bf79-424b-b7b5-579ccb293afc}, !- Handle + OutPatientHealthCare Hours_of_operation Default 2, !- Name + {6c1b19f7-b679-401a-afd0-e157867cbb0e}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:AdditionalProperties, + {8058dce8-afa5-4446-8e7f-894aa5835839}, !- Handle + {951bb5cd-c456-4344-bac8-d5b761f1e647}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + 24.0 ~ val_flr ~ val_flr, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + typical_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {1f3273b9-7512-429c-a9bd-c64ef4d9e068}, !- Handle + {c4948d51-bf79-424b-b7b5-579ccb293afc}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + 24.0 ~ val_flr ~ val_flr, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + minimal_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {f394249b-12b6-442f-b1d9-a6409e09f08d}, !- Handle + {45d6c5c7-e591-4608-bbf9-73975262607c}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + 24.0 ~ val_flr ~ val_flr, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + minimal_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {a1e2ee89-a4f0-4260-87d5-ad06ff9cb2c7}, !- Handle + {ebe7f794-1482-407a-89e2-33352fe18368}, !- Object Name + param_sch_ver, !- Feature Name 1 + String, !- Feature Data Type 1 + 0.0.1, !- Feature Value 1 + param_sch_floor, !- Feature Name 2 + Double, !- Feature Data Type 2 + 0, !- Feature Value 2 + param_sch_ceiling, !- Feature Name 3 + Double, !- Feature Data Type 3 + 0.81999999999999995; !- Feature Value 3 + +OS:Schedule:Rule, + {a702baab-a03f-4cd7-91ef-eaf30d0870e8}, !- Handle + Schedule Rule 26, !- Name + {ebe7f794-1482-407a-89e2-33352fe18368}, !- Schedule Ruleset Name + 0, !- Rule Order + {fdff2f6b-12c2-430e-b1b6-c59170736d7c}, !- Day Schedule Name + Yes; !- Apply Sunday + +OS:Schedule:Day, + {fdff2f6b-12c2-430e-b1b6-c59170736d7c}, !- Handle + OutPatientHealthCare BLDG_SWH_SCH_Pre2004 Default 1, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + No, !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 17, !- Hour 2 + 0, !- Minute 2 + 0.01, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:AdditionalProperties, + {af354114-7c19-44dc-8d8f-50ecabef5233}, !- Handle + {e0dea272-d743-4615-b67e-30750ed8af92}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + 6.5 ~ 0.01 | 7.5 ~ 0.17 | 8.5 ~ 0.58 | 9.5 ~ 0.66 | 10.5 ~ 0.78 | 11.5 ~ 0.82 | 12.5 ~ 0.71 | 13.5 ~ 0.82 | 14.5 ~ 0.78 | 15.5 ~ 0.74 | 16.5 ~ 0.63 | 17.5 ~ 0.41 | 18.5 ~ 0.18 | 20.5 ~ 0.18 | 21.5 ~ 0.1 | 22.5 ~ 0.01, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + typical_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {132293c0-b45f-4bdb-82ea-afd37e3cb806}, !- Handle + {fdff2f6b-12c2-430e-b1b6-c59170736d7c}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + 8.0 ~ val_flr ~ 0.01 | 17.0 ~ 0.01 ~ val_flr, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + minimal_operation; !- Feature Value 4 + +OS:AdditionalProperties, + {c277aad4-eee8-4cf0-bdae-4dc9b3755581}, !- Handle + {a65a91df-7f81-42f9-ad63-e0424d50ca2f}, !- Object Name + param_day_profile, !- Feature Name 1 + String, !- Feature Data Type 1 + 7.5 ~ 0.01 | 8.5 ~ 0.2 | 9.5 ~ 0.28 | 10.5 ~ 0.3 | 11.0 ~ 0.3 | 13.0 ~ 0.24 | 15.0 ~ 0.23 | 16.5 ~ 0.23 | 17.5 ~ 0.1 | 18.5 ~ 0.01, !- Feature Value 1 + param_day_secondary_logic, !- Feature Name 2 + String, !- Feature Data Type 2 + , !- Feature Value 2 + param_day_secondary_logic_arg_val, !- Feature Name 3 + String, !- Feature Data Type 3 + , !- Feature Value 3 + param_day_tag, !- Feature Name 4 + String, !- Feature Data Type 4 + medium_operation; !- Feature Value 4 + +OS:Schedule:Ruleset, + {c1e3bfe6-7c14-4422-a0f7-ae32114b3cbe}, !- Handle + 96 Zone DOAS Occ Sch, !- Name + , !- Schedule Type Limits Name + {cd3ee045-7de9-4c2a-af0e-9b812a5966f5}, !- Default Day Schedule Name + {6c47fbd3-859e-4a3c-b473-635b75045038}, !- Summer Design Day Schedule Name + {2dc35a4f-f0ae-4845-9c92-7e4a9895a88a}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {cd3ee045-7de9-4c2a-af0e-9b812a5966f5}, !- Handle + 96 Zone DOAS Occ Sch Default, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 18, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:AdditionalProperties, + {d65107e8-a955-48e0-a1d0-8fa870738fc6}, !- Handle + {c1e3bfe6-7c14-4422-a0f7-ae32114b3cbe}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 957.42520458265335, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 81, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-10-22 22:41:51 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-10-22 22:41:51 UTC; !- Feature Value 4 + +OS:Schedule:Day, + {2dc35a4f-f0ae-4845-9c92-7e4a9895a88a}, !- Handle + 96 Zone DOAS Occ Sch Winter Design Day, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {6c47fbd3-859e-4a3c-b473-635b75045038}, !- Handle + 96 Zone DOAS Occ Sch Summer Design Day, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Rule, + {b9b61411-23e5-422b-81be-9c594c47d0e0}, !- Handle + Schedule Rule 10, !- Name + {c1e3bfe6-7c14-4422-a0f7-ae32114b3cbe}, !- Schedule Ruleset Name + 1, !- Rule Order + {9349647d-ee7f-424f-a006-b69455433948}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 6, !- Start Day + 12, !- End Month + 29; !- End Day + +OS:Schedule:Day, + {9349647d-ee7f-424f-a006-b69455433948}, !- Handle + Schedule Day 28, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 10, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 15, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Rule, + {497dd81f-16b1-434a-8d63-e0a50709e047}, !- Handle + Schedule Rule 27, !- Name + {c1e3bfe6-7c14-4422-a0f7-ae32114b3cbe}, !- Schedule Ruleset Name + 0, !- Rule Order + {29637fa0-5465-42aa-9ec7-50ff442b49d2}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Day, + {29637fa0-5465-42aa-9ec7-50ff442b49d2}, !- Handle + Schedule Day 29, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:AdditionalProperties, + {d84b6bfb-2a69-4ee6-965e-637255ca042e}, !- Handle + {70a54128-0485-4c1d-94ba-7564f1a1774f}; !- Object Name + +OS:Curve:Biquadratic, + {8cf9e7ef-f3ac-4656-bccb-2dc9b96dddb4}, !- Handle + ChlrWtrPosDispPathAAllQRatio_fTchwsTcwsSI, !- Name + 0.96744, !- Coefficient1 Constant + 0.037082, !- Coefficient2 x + 0.000434, !- Coefficient3 x**2 + -0.005837, !- Coefficient4 y + -4.9e-05, !- Coefficient5 y**2 + -0.000274, !- Coefficient6 x*y + 4.44, !- Minimum Value of x + 12.22, !- Maximum Value of x + 15.56, !- Minimum Value of y + 29.44, !- Maximum Value of y + 0.89, !- Minimum Curve Output + 1.33; !- Maximum Curve Output + +OS:Curve:Biquadratic, + {567b07dc-c251-4873-a4b2-94265458145d}, !- Handle + ChlrWtrPosDispPathAAllEIRRatio_fTchwsTcwsSI, !- Name + 0.665307, !- Coefficient1 Constant + -0.009339, !- Coefficient2 x + 0.000483, !- Coefficient3 x**2 + 0.009492, !- Coefficient4 y + 0.000544, !- Coefficient5 y**2 + -0.000864, !- Coefficient6 x*y + 4.44, !- Minimum Value of x + 12.22, !- Maximum Value of x + 15.56, !- Minimum Value of y + 29.44, !- Maximum Value of y + 0.74, !- Minimum Curve Output + 1.27; !- Maximum Curve Output + +OS:Curve:Quadratic, + {2e7051e6-69c8-4be9-b9ee-617dc6af311b}, !- Handle + ChlrWtrCentPathAAllEIRRatio_fQRatio, !- Name + 0.222149, !- Coefficient1 Constant + 0.503156, !- Coefficient2 x + 0.256905, !- Coefficient3 x**2 + 0.1, !- Minimum Value of x + 1, !- Maximum Value of x + 0.28; !- Minimum Curve Output + +OS:Curve:Cubic, + {353f28f4-9aae-45d9-931e-e142ef9ce700}, !- Handle + Boiler Constant Efficiency Curve, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Coefficient4 x**3 + 0, !- Minimum Value of x + 1; !- Maximum Value of x + +OS:OutputControl:ReportingTolerances, + {dc66122f-d387-493c-bd7b-6c1051496a7d}, !- Handle + 0.555555555555556, !- Tolerance for Time Heating Setpoint Not Met {deltaC} + 0.555555555555556; !- Tolerance for Time Cooling Setpoint Not Met {deltaC} + +OS:Schedule:Ruleset, + {0cea9b00-bdfe-4667-95f0-6de6dbd53496}, !- Handle + Economizer Max OA Fraction 70 pct, !- Name + , !- Schedule Type Limits Name + {c7997b1a-54d9-445d-86f8-f6172d774a4d}; !- Default Day Schedule Name + +OS:Schedule:Day, + {c7997b1a-54d9-445d-86f8-f6172d774a4d}, !- Handle + Economizer Max OA Fraction 70 pct Default, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0.7; !- Value Until Time 1 + +OS:AdditionalProperties, + {e2046cd5-dc96-4ade-b928-8ddfcf5a7db6}, !- Handle + {c912bf90-f212-44be-bcc8-1e25d4bd9d5f}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + patient_exam, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_patient_room; !- Feature Value 2 + +OS:AdditionalProperties, + {267cc922-65a3-44f3-a3ac-db87a2e358b9}, !- Handle + {bcd0ccb4-07a2-483e-8764-49c9a286542d}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + imaging_control, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_imaging_equipment_control_room; !- Feature Value 2 + +OS:AdditionalProperties, + {2cc6db4a-6895-4427-b7f1-32cbe46c5c26}, !- Handle + {e67caa29-7f43-467d-9e61-3b46df30c822}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + healthcare_lounge_breakroom, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_lounge_breakroom; !- Feature Value 2 + +OS:AdditionalProperties, + {54c08e7a-2f63-4c91-8350-6b368904835a}, !- Handle + {132d8eeb-89bc-4975-9e9d-32758ae60fe3}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + patient_exam, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_patient_room; !- Feature Value 2 + +OS:AdditionalProperties, + {45ae5eb8-aa3c-4668-9639-eae1605ccc92}, !- Handle + {c886771f-d399-4984-b712-aefe78a14e4c}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + office_enclosed_less_than_250ft2, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + office_enclosed_less_than_250ft2; !- Feature Value 2 + +OS:AdditionalProperties, + {fd19306f-1856-4a91-8053-5572ffd7d08e}, !- Handle + {3ed95ffb-bc8e-4422-ae67-017cf6f15a1e}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + dining_area_all_other, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + dining_areas_all_other; !- Feature Value 2 + +OS:AdditionalProperties, + {41dc629d-c6be-4f9a-bfb3-540c1c5cdcea}, !- Handle + {29b4ce0c-01c2-4306-a68e-383950b76114}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + healthcare_storage_active_50ft2_to_1000ft2, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_storage; !- Feature Value 2 + +OS:AdditionalProperties, + {6ba7f0b4-42b5-4b68-989a-d79a9c726c3c}, !- Handle + {6e2bb69a-5a51-4d2e-a996-f562611bd2cb}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + healthcare_corridor, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_corridor; !- Feature Value 2 + +OS:AdditionalProperties, + {ad966d0d-2885-4838-a404-f0c447c14291}, !- Handle + {c0c1e222-fa00-4a79-91b3-309953f143b4}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + electrical_mechanical, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + electrical_mechanical; !- Feature Value 2 + +OS:AdditionalProperties, + {9232903b-f6e0-4061-b4fe-fc2a956abfe0}, !- Handle + {36ea0a66-256f-4bab-bd07-1a8541fc24fb}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + healthcare_corridor, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_corridor; !- Feature Value 2 + +OS:AdditionalProperties, + {4ab841f7-319a-4f99-9173-993e91f76e48}, !- Handle + {830595d2-f1c6-4a4f-adab-f4229419a49b}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + lobby_all_other, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + lobby_all_other; !- Feature Value 2 + +OS:AdditionalProperties, + {e6073960-4d5d-485c-aec4-0756ebcce4f9}, !- Handle + {117f4d87-7bb7-4e81-9561-b5cd18d45f9d}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + healthcare_storage_active_50ft2_to_1000ft2, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_storage; !- Feature Value 2 + +OS:AdditionalProperties, + {eea0019c-4b6e-4c85-8f21-8703a74fd60e}, !- Handle + {8699ada1-ecd3-452b-951b-33b0abe847f3}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + imaging, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_imaging; !- Feature Value 2 + +OS:AdditionalProperties, + {1e61b671-6a9d-4455-8e36-998c3de7815b}, !- Handle + {4b9df3de-a3d0-4438-acca-986ad88544a1}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + server_room, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + copy_print_room; !- Feature Value 2 + +OS:AdditionalProperties, + {ed641546-0301-4536-9a41-d73b731d131b}, !- Handle + {186554b7-5d4c-463b-8382-6d118c7366be}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + office_enclosed_less_than_250ft2, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + office_enclosed_less_than_250ft2; !- Feature Value 2 + +OS:AdditionalProperties, + {ebf1c7f1-ea04-4afa-848d-c003281c68e4}, !- Handle + {2d20a7e4-e28e-45fe-b57b-4ce2154fb88e}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + physical_therapy, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_physical_therapy; !- Feature Value 2 + +OS:AdditionalProperties, + {8425607e-36e1-4f48-aef4-524b11642bcd}, !- Handle + {7b20985f-3aeb-492d-93f8-a179c637cd44}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + healthcare_storage_active_50ft2_to_1000ft2, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_storage; !- Feature Value 2 + +OS:AdditionalProperties, + {b4605793-aacc-4ea4-965e-a82c6ef552d0}, !- Handle + {2ddb316f-6ad1-4b05-9092-190cb98dab70}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + electrical_mechanical, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + electrical_mechanical; !- Feature Value 2 + +OS:AdditionalProperties, + {ad07951f-1b61-41e1-b654-3c957d2b59a5}, !- Handle + {864ed981-cdc7-451f-8bef-1ea81ff2d854}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + emergency_room, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_emergency_room; !- Feature Value 2 + +OS:AdditionalProperties, + {c68e50d7-fe39-4c24-9eda-2b353af6614b}, !- Handle + {8c151d9d-16aa-4372-a68e-592d90c257bc}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + patient_exam, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_patient_room; !- Feature Value 2 + +OS:AdditionalProperties, + {b0e290dc-705e-4a83-aa1b-08d6e0d7e180}, !- Handle + {92312da1-9ed9-4fea-82b7-d1ae297e9d8a}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + patient_room, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_patient_room; !- Feature Value 2 + +OS:AdditionalProperties, + {c53afb26-89ee-43fb-9768-aff46c04acf4}, !- Handle + {5b09c434-c361-4e51-b3be-21b2f3d26cc3}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + nurse_station, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_nurse_station; !- Feature Value 2 + +OS:AdditionalProperties, + {35995749-e5b6-4ac9-bf91-3718d65ef1f8}, !- Handle + {a0d541c6-3262-49a8-96cb-668f335a0ac4}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + mri, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_imaging; !- Feature Value 2 + +OS:AdditionalProperties, + {9ce27174-471c-440d-a956-08de56a08f7b}, !- Handle + {55e9e53a-8be5-42d7-b81b-a3ad93018a1a}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + healthcare_lounge_breakroom, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_lounge_breakroom; !- Feature Value 2 + +OS:AdditionalProperties, + {aeb435d2-6633-4ec8-9136-ab117350f853}, !- Handle + {d0eedb12-8aab-42b8-8864-4ef144c40d57}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + patient_exam, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_patient_room; !- Feature Value 2 + +OS:AdditionalProperties, + {b04e2534-42c2-4121-87d9-9d5df4847575}, !- Handle + {5fb014fb-6043-4a5b-b056-a124c49bf50e}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + operating_room, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_operating_room; !- Feature Value 2 + +OS:AdditionalProperties, + {9ed75148-29e7-4227-a26a-71e6f7a12890}, !- Handle + {93b236bb-87a7-4e13-8625-9c2aa92c03be}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + conference_meeting_multipurpose, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + conference_meeting_multipurpose; !- Feature Value 2 + +OS:AdditionalProperties, + {3e76af75-745f-4ea6-b3ae-554ab30a3689}, !- Handle + {10a9958c-5712-4449-9d93-940c14d4492e}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + restroom, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + restroom; !- Feature Value 2 + +OS:AdditionalProperties, + {3c554d1d-b300-4f8b-b9dc-babf8f11eb26}, !- Handle + {171a2876-5f59-46c1-9438-827411e98017}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + recovery, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + healthcare_recovery; !- Feature Value 2 + +OS:AdditionalProperties, + {25fc4903-6241-49d1-8e48-783892bb3b46}, !- Handle + {b0858a9c-8d82-4ec2-b1e5-e4c1bbd82d0e}, !- Object Name + prototype_space_type, !- Feature Name 1 + String, !- Feature Data Type 1 + lobby_all_other, !- Feature Value 1 + prototype_lighting_space_type, !- Feature Name 2 + String, !- Feature Data Type 2 + lobby_all_other; !- Feature Value 2 + +OS:Lights:Definition, + {7f6b2d61-454f-4ce3-9630-3bc0d6d14368}, !- Handle + Outpatient Exam - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 2.13817878022128, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {df7b2ba8-0a9f-4d81-b26c-d6a55af685eb}, !- Handle + {7f6b2d61-454f-4ce3-9630-3bc0d6d14368}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {13f7ef4a-5da6-4f68-9f14-edb8d0bb336d}, !- Handle + Outpatient Exam - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {7f6b2d61-454f-4ce3-9630-3bc0d6d14368}, !- Lights Definition Name + {c912bf90-f212-44be-bcc8-1e25d4bd9d5f}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {5e473259-f863-4d89-a99e-129fab1e3cdf}, !- Handle + Outpatient Exam - ComStock DOE Ref Pre-1980 Task Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 2.96280354465471, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {f275accd-dc5e-4b28-b6e8-8c62634a0c1d}, !- Handle + {5e473259-f863-4d89-a99e-129fab1e3cdf}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp general purpose, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + task; !- Feature Value 2 + +OS:Lights, + {c1b83325-fad7-49ea-8e9a-70f3df1ecae9}, !- Handle + Outpatient Exam - ComStock DOE Ref Pre-1980 Task Lighting, !- Name + {5e473259-f863-4d89-a99e-129fab1e3cdf}, !- Lights Definition Name + {c912bf90-f212-44be-bcc8-1e25d4bd9d5f}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {e59176d5-40e0-4161-8163-f9f4cdd882d9}, !- Handle + Outpatient MRI_Control - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 6.46869616388805, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {0b62c93b-b89c-4c62-9a59-cae6ee6a3ebd}, !- Handle + {e59176d5-40e0-4161-8163-f9f4cdd882d9}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {8320257e-af69-4658-aad8-c278ad677dc4}, !- Handle + Outpatient MRI_Control - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {e59176d5-40e0-4161-8163-f9f4cdd882d9}, !- Lights Definition Name + {bcd0ccb4-07a2-483e-8764-49c9a286542d}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {16cfafd8-1236-40f8-b2a6-afe96fa9d585}, !- Handle + Outpatient Lounge - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 2.66140642171394, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {13d99b0e-8f68-4b77-87de-83b137bdcfb6}, !- Handle + {16cfafd8-1236-40f8-b2a6-afe96fa9d585}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {b08a7e82-68e5-436d-8c8a-b21de441827f}, !- Handle + Outpatient Lounge - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {16cfafd8-1236-40f8-b2a6-afe96fa9d585}, !- Lights Definition Name + {e67caa29-7f43-467d-9e61-3b46df30c822}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {680023a3-aaa2-4135-b1c5-04abe3693657}, !- Handle + Outpatient Lounge - ComStock DOE Ref Pre-1980 Wall Wash Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 0.725508667792935, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {b221ef19-c04f-43cc-b6cf-462e02e79bb2}, !- Handle + {680023a3-aaa2-4135-b1c5-04abe3693657}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED directional, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + wall_wash; !- Feature Value 2 + +OS:Lights, + {5d61cb72-8102-480b-922e-48b2ab705a6e}, !- Handle + Outpatient Lounge - ComStock DOE Ref Pre-1980 Wall Wash Lighting, !- Name + {680023a3-aaa2-4135-b1c5-04abe3693657}, !- Lights Definition Name + {e67caa29-7f43-467d-9e61-3b46df30c822}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {e60d1b21-eb3e-42cb-9809-d7197d676252}, !- Handle + Outpatient CleanWork - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 2.13817878022128, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {8b85ea83-fd99-4bd8-9d84-9bf01dc40124}, !- Handle + {e60d1b21-eb3e-42cb-9809-d7197d676252}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {28df87f3-58ee-46de-8702-e749e8cd4c81}, !- Handle + Outpatient CleanWork - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {e60d1b21-eb3e-42cb-9809-d7197d676252}, !- Lights Definition Name + {132d8eeb-89bc-4975-9e9d-32758ae60fe3}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {2f311093-3b16-4415-9510-c6cfa39cc6c7}, !- Handle + Outpatient CleanWork - ComStock DOE Ref Pre-1980 Task Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 2.96280354465471, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {75eb6e89-d3b0-411e-8961-e568f8bc7393}, !- Handle + {2f311093-3b16-4415-9510-c6cfa39cc6c7}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp general purpose, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + task; !- Feature Value 2 + +OS:Lights, + {da1c7f87-05bd-4281-a36c-dcf9ee6705b3}, !- Handle + Outpatient CleanWork - ComStock DOE Ref Pre-1980 Task Lighting, !- Name + {2f311093-3b16-4415-9510-c6cfa39cc6c7}, !- Lights Definition Name + {132d8eeb-89bc-4975-9e9d-32758ae60fe3}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {c765855c-66c8-4462-96c8-d9d7a994f821}, !- Handle + Outpatient Office - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 6.1023254860334, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {607bd765-1c44-4473-b74e-117ba2c0ea7c}, !- Handle + {c765855c-66c8-4462-96c8-d9d7a994f821}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {4598794f-4f65-4b32-9d43-c1ae74273c0f}, !- Handle + Outpatient Office - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {c765855c-66c8-4462-96c8-d9d7a994f821}, !- Lights Definition Name + {c886771f-d399-4984-b712-aefe78a14e4c}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {f35ff33c-ea3c-4d97-9174-131eafe13b5d}, !- Handle + Outpatient Cafe - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 3.18489121507076, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {94e3c002-31c1-4a34-9dde-3edcbc3f7b89}, !- Handle + {f35ff33c-ea3c-4d97-9174-131eafe13b5d}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {467fe9d0-4f14-41ac-95e1-04cdefb28d26}, !- Handle + Outpatient Cafe - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {f35ff33c-ea3c-4d97-9174-131eafe13b5d}, !- Lights Definition Name + {3ed95ffb-bc8e-4422-ae67-017cf6f15a1e}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {0e0cd143-9d1b-4f19-a9d7-70b2aa1514e1}, !- Handle + Outpatient Cafe - ComStock DOE Ref Pre-1980 Task Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 0.179901728563522, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {905cfe32-dedf-41c6-b369-fa66e92ce696}, !- Handle + {0e0cd143-9d1b-4f19-a9d7-70b2aa1514e1}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp general purpose, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + task; !- Feature Value 2 + +OS:Lights, + {97944cb7-97c7-4069-9401-1930f04ed6d4}, !- Handle + Outpatient Cafe - ComStock DOE Ref Pre-1980 Task Lighting, !- Name + {0e0cd143-9d1b-4f19-a9d7-70b2aa1514e1}, !- Lights Definition Name + {3ed95ffb-bc8e-4422-ae67-017cf6f15a1e}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {d913d011-b505-4c8d-9cc5-d0684e1b2c27}, !- Handle + Outpatient Cafe - ComStock DOE Ref Pre-1980 Wall Wash Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 0.727256881450267, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {b5c37340-2a36-46f4-9f70-faab606e6359}, !- Handle + {d913d011-b505-4c8d-9cc5-d0684e1b2c27}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED directional, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + wall_wash; !- Feature Value 2 + +OS:Lights, + {fe079890-9433-4eb0-a206-187c53bbecf0}, !- Handle + Outpatient Cafe - ComStock DOE Ref Pre-1980 Wall Wash Lighting, !- Name + {d913d011-b505-4c8d-9cc5-d0684e1b2c27}, !- Lights Definition Name + {3ed95ffb-bc8e-4422-ae67-017cf6f15a1e}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {6e47be5c-5ad5-4f92-87c7-501159555cff}, !- Handle + Outpatient Janitor - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 3.73275581916163, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {fb979b93-46a9-4313-97c0-714f2cc3913f}, !- Handle + {6e47be5c-5ad5-4f92-87c7-501159555cff}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {a6eeefd4-6b38-4586-b9d9-eddc2f9072d2}, !- Handle + Outpatient Janitor - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {6e47be5c-5ad5-4f92-87c7-501159555cff}, !- Lights Definition Name + {29b4ce0c-01c2-4306-a68e-383950b76114}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {d312795c-7112-439d-a07e-325f894ba15e}, !- Handle + Outpatient Hall - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.32947100997127, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {3cc1fb7e-6631-4c3d-abbc-8a7c97058128}, !- Handle + {d312795c-7112-439d-a07e-325f894ba15e}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {9ebab132-8a81-4993-aa7e-f51b6831f915}, !- Handle + Outpatient Hall - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {d312795c-7112-439d-a07e-325f894ba15e}, !- Lights Definition Name + {6e2bb69a-5a51-4d2e-a996-f562611bd2cb}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {17142540-77aa-47da-9095-b5cc7f2d5bf9}, !- Handle + Outpatient Hall - ComStock DOE Ref Pre-1980 Wall Wash Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 0.839142555519539, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {23008fc5-f851-4429-84a0-caed5ec7de6e}, !- Handle + {17142540-77aa-47da-9095-b5cc7f2d5bf9}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED directional, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + wall_wash; !- Feature Value 2 + +OS:Lights, + {912b8d1c-b8a3-4147-86ee-c86b97872fa7}, !- Handle + Outpatient Hall - ComStock DOE Ref Pre-1980 Wall Wash Lighting, !- Name + {17142540-77aa-47da-9095-b5cc7f2d5bf9}, !- Lights Definition Name + {6e2bb69a-5a51-4d2e-a996-f562611bd2cb}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {66b49190-a73b-405e-b489-d7ddedf2e944}, !- Handle + Outpatient ElevatorPumpRoom - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 3.55487857757505, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {589d24bd-9f39-4380-b816-589f91935e6a}, !- Handle + {66b49190-a73b-405e-b489-d7ddedf2e944}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {f4a028d7-b932-448d-871d-aaefc88cd453}, !- Handle + Outpatient ElevatorPumpRoom - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {66b49190-a73b-405e-b489-d7ddedf2e944}, !- Lights Definition Name + {c0c1e222-fa00-4a79-91b3-309953f143b4}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {d8de38e9-b119-4714-954b-e74fde8f4d59}, !- Handle + Outpatient ElevatorPumpRoom - ComStock DOE Ref Pre-1980 Task Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 0.569567415937951, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {9ad7d812-cb23-4168-9cac-76afd7bb61fe}, !- Handle + {d8de38e9-b119-4714-954b-e74fde8f4d59}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp general purpose, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + task; !- Feature Value 2 + +OS:Lights, + {f7e59e3d-a4a4-4f6d-9f2b-5f0d6f3d74b8}, !- Handle + Outpatient ElevatorPumpRoom - ComStock DOE Ref Pre-1980 Task Lighting, !- Name + {d8de38e9-b119-4714-954b-e74fde8f4d59}, !- Lights Definition Name + {c0c1e222-fa00-4a79-91b3-309953f143b4}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {3b720973-d5a2-4069-b4ee-91f8d2d311af}, !- Handle + Outpatient Stair - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.32947100997127, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {d3a709a9-e224-4884-a624-75c75adeba78}, !- Handle + {3b720973-d5a2-4069-b4ee-91f8d2d311af}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {306464f4-d149-40b7-b553-cb8ffdb60377}, !- Handle + Outpatient Stair - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {3b720973-d5a2-4069-b4ee-91f8d2d311af}, !- Lights Definition Name + {36ea0a66-256f-4bab-bd07-1a8541fc24fb}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {1f2247ac-dbf7-4752-943a-4d73354bfcd1}, !- Handle + Outpatient Stair - ComStock DOE Ref Pre-1980 Wall Wash Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 0.839142555519539, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {3935b5af-f9f7-4727-9496-f99a806dd906}, !- Handle + {1f2247ac-dbf7-4752-943a-4d73354bfcd1}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED directional, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + wall_wash; !- Feature Value 2 + +OS:Lights, + {4a5b71dd-9e9c-4da3-b989-d7e0b11e99c8}, !- Handle + Outpatient Stair - ComStock DOE Ref Pre-1980 Wall Wash Lighting, !- Name + {1f2247ac-dbf7-4752-943a-4d73354bfcd1}, !- Lights Definition Name + {36ea0a66-256f-4bab-bd07-1a8541fc24fb}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {f8e677cc-245a-4bff-ab95-2c1ff3f8a9e9}, !- Handle + Outpatient Lobby - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 1.74481306384859, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {b3f75d2f-6bce-4698-ba71-a2b7e85ead80}, !- Handle + {f8e677cc-245a-4bff-ab95-2c1ff3f8a9e9}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {d496b88a-9cfd-4beb-ad29-3823f774afc3}, !- Handle + Outpatient Lobby - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {f8e677cc-245a-4bff-ab95-2c1ff3f8a9e9}, !- Lights Definition Name + {830595d2-f1c6-4a4f-adab-f4229419a49b}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {de33c7e1-2c1d-4400-b9bd-6b1db5d6a10e}, !- Handle + Outpatient Lobby - ComStock DOE Ref Pre-1980 Task Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 0.190877164916568, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {7bbd5c3f-c146-4ed5-83e5-e9cba02b2dc9}, !- Handle + {de33c7e1-2c1d-4400-b9bd-6b1db5d6a10e}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp general purpose, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + task; !- Feature Value 2 + +OS:Lights, + {5f80422d-cf57-4406-871e-e5d74a6bbf11}, !- Handle + Outpatient Lobby - ComStock DOE Ref Pre-1980 Task Lighting, !- Name + {de33c7e1-2c1d-4400-b9bd-6b1db5d6a10e}, !- Lights Definition Name + {830595d2-f1c6-4a4f-adab-f4229419a49b}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {5f8ee199-2884-45b2-b2f0-cd4982dc0ab8}, !- Handle + Outpatient Lobby - ComStock DOE Ref Pre-1980 Wall Wash Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 0.533707525412509, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {447dbbca-2a43-45a3-9b19-3ef7d3a7921d}, !- Handle + {5f8ee199-2884-45b2-b2f0-cd4982dc0ab8}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED directional, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + wall_wash; !- Feature Value 2 + +OS:Lights, + {88ca61f5-5845-4a78-af6c-3cb34f91e1a9}, !- Handle + Outpatient Lobby - ComStock DOE Ref Pre-1980 Wall Wash Lighting, !- Name + {5f8ee199-2884-45b2-b2f0-cd4982dc0ab8}, !- Lights Definition Name + {830595d2-f1c6-4a4f-adab-f4229419a49b}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {5b6972d8-7977-4586-a8b1-1faf96ece91b}, !- Handle + Outpatient MedGas - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 3.73275581916163, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {614235e9-932b-4962-81b3-8baebf700243}, !- Handle + {5b6972d8-7977-4586-a8b1-1faf96ece91b}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {57bb6e87-4076-4dfc-ba1a-45b6bb1b3d5d}, !- Handle + Outpatient MedGas - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {5b6972d8-7977-4586-a8b1-1faf96ece91b}, !- Lights Definition Name + {117f4d87-7bb7-4e81-9561-b5cd18d45f9d}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {ae76e9b0-c71c-47e6-93cc-4549d6c6becb}, !- Handle + Outpatient Xray - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.61550212774715, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {92eaa6ec-0040-4b75-a2fc-be36939ec07d}, !- Handle + {ae76e9b0-c71c-47e6-93cc-4549d6c6becb}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {3e9c2dc1-6f45-4dba-9d2d-a9ec447ab634}, !- Handle + Outpatient Xray - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {ae76e9b0-c71c-47e6-93cc-4549d6c6becb}, !- Lights Definition Name + {8699ada1-ecd3-452b-951b-33b0abe847f3}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {fbeb624d-a717-44a7-94fe-5a15c9430dbc}, !- Handle + Outpatient IT_Room - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.61550212774715, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {55e4d081-03bf-43e0-97e1-7c58fbaf1b8f}, !- Handle + {fbeb624d-a717-44a7-94fe-5a15c9430dbc}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {dce8b92d-b1e9-4d1d-8591-cd9f31b5c862}, !- Handle + Outpatient IT_Room - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {fbeb624d-a717-44a7-94fe-5a15c9430dbc}, !- Lights Definition Name + {4b9df3de-a3d0-4438-acca-986ad88544a1}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {a65e4622-10d8-4dcf-9b17-fd33aab85e96}, !- Handle + Outpatient DressingRoom - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 6.1023254860334, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {de0bad60-e683-4845-b773-3705a530e244}, !- Handle + {a65e4622-10d8-4dcf-9b17-fd33aab85e96}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {a0031e73-540f-44ca-9d35-14952ac20b50}, !- Handle + Outpatient DressingRoom - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {a65e4622-10d8-4dcf-9b17-fd33aab85e96}, !- Lights Definition Name + {186554b7-5d4c-463b-8382-6d118c7366be}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {de45dce3-3c4b-4aa3-a05c-c750a5fecd37}, !- Handle + Outpatient PhysicalTherapy - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 6.17486386356229, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {aa32e490-78c7-4bbc-a515-f1ec1660aa81}, !- Handle + {de45dce3-3c4b-4aa3-a05c-c750a5fecd37}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {d545dd5f-0bdc-48e9-b846-cd86b07da347}, !- Handle + Outpatient PhysicalTherapy - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {de45dce3-3c4b-4aa3-a05c-c750a5fecd37}, !- Lights Definition Name + {2d20a7e4-e28e-45fe-b57b-4ce2154fb88e}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {af568453-e53d-493d-9ff7-fe657ca6f0e8}, !- Handle + Outpatient PhysicalTherapy - ComStock DOE Ref Pre-1980 Task Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 1.72630602637225, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {a38db606-1ef8-4e40-9f12-4a524011ae63}, !- Handle + {af568453-e53d-493d-9ff7-fe657ca6f0e8}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp general purpose, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + task; !- Feature Value 2 + +OS:Lights, + {2178750c-8aa9-4932-b9ee-e1da12277731}, !- Handle + Outpatient PhysicalTherapy - ComStock DOE Ref Pre-1980 Task Lighting, !- Name + {af568453-e53d-493d-9ff7-fe657ca6f0e8}, !- Lights Definition Name + {2d20a7e4-e28e-45fe-b57b-4ce2154fb88e}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {3d1e1791-af81-4b44-bca3-ba5a0dc8d8a2}, !- Handle + Outpatient BioHazard - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 3.73275581916163, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {68c2e342-9d63-43ba-a428-114f87b3b565}, !- Handle + {3d1e1791-af81-4b44-bca3-ba5a0dc8d8a2}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {1d790095-93e0-4a21-8148-1bce956e2d62}, !- Handle + Outpatient BioHazard - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {3d1e1791-af81-4b44-bca3-ba5a0dc8d8a2}, !- Lights Definition Name + {7b20985f-3aeb-492d-93f8-a179c637cd44}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {631d8a5b-dcd2-44eb-95a0-eca319ba75c9}, !- Handle + Outpatient Elec/MechRoom - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 3.55487857757505, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {32c29fe3-4932-4aee-aff4-c437086cc1fa}, !- Handle + {631d8a5b-dcd2-44eb-95a0-eca319ba75c9}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {aa4cfb49-e097-44f5-8b38-097a6c4d85e1}, !- Handle + Outpatient Elec/MechRoom - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {631d8a5b-dcd2-44eb-95a0-eca319ba75c9}, !- Lights Definition Name + {2ddb316f-6ad1-4b05-9092-190cb98dab70}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {b134a362-89cd-49e6-bf4e-593d5e814bd4}, !- Handle + Outpatient Elec/MechRoom - ComStock DOE Ref Pre-1980 Task Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 0.569567415937951, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {8d9bd180-7b77-4664-b6c2-a9c7e3c1f373}, !- Handle + {b134a362-89cd-49e6-bf4e-593d5e814bd4}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp general purpose, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + task; !- Feature Value 2 + +OS:Lights, + {3fdca181-3c71-4aef-a5e8-c6745dc24ba4}, !- Handle + Outpatient Elec/MechRoom - ComStock DOE Ref Pre-1980 Task Lighting, !- Name + {b134a362-89cd-49e6-bf4e-593d5e814bd4}, !- Lights Definition Name + {2ddb316f-6ad1-4b05-9092-190cb98dab70}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {c29a6203-2687-492f-b6e6-81860d82aef1}, !- Handle + Outpatient ProcedureRoom - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10.97830148957, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {fbebdb37-ab73-4244-b92c-b70c6db4988c}, !- Handle + {c29a6203-2687-492f-b6e6-81860d82aef1}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {2b792b75-214a-466e-89b1-4ea85f7985d8}, !- Handle + Outpatient ProcedureRoom - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {c29a6203-2687-492f-b6e6-81860d82aef1}, !- Lights Definition Name + {864ed981-cdc7-451f-8bef-1ea81ff2d854}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {4abc260e-47b1-4f99-bd0a-8b7f86bacda9}, !- Handle + Outpatient ProcedureRoom - ComStock DOE Ref Pre-1980 Task Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 0.00255310968138276, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {746fb9e4-bc6a-4772-b9ca-47e59f8f0632}, !- Handle + {4abc260e-47b1-4f99-bd0a-8b7f86bacda9}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp general purpose, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + task; !- Feature Value 2 + +OS:Lights, + {68e82c26-f4f3-488e-a1c3-2e8e57e9f374}, !- Handle + Outpatient ProcedureRoom - ComStock DOE Ref Pre-1980 Task Lighting, !- Name + {4abc260e-47b1-4f99-bd0a-8b7f86bacda9}, !- Lights Definition Name + {864ed981-cdc7-451f-8bef-1ea81ff2d854}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {989b98b0-dc2a-4452-af10-c4b84c1a9039}, !- Handle + Outpatient Anesthesia - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 2.13817878022128, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {87e815a4-a58d-4693-96cb-d7feb35ffa7f}, !- Handle + {989b98b0-dc2a-4452-af10-c4b84c1a9039}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {8171a23f-d70d-4c96-b85e-c3be4765e676}, !- Handle + Outpatient Anesthesia - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {989b98b0-dc2a-4452-af10-c4b84c1a9039}, !- Lights Definition Name + {8c151d9d-16aa-4372-a68e-592d90c257bc}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {18a7ed6d-2f37-40fc-94a2-59cf9f504116}, !- Handle + Outpatient Anesthesia - ComStock DOE Ref Pre-1980 Task Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 2.96280354465471, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {ecbe41d2-588c-4107-9a26-6ea20d4d1017}, !- Handle + {18a7ed6d-2f37-40fc-94a2-59cf9f504116}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp general purpose, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + task; !- Feature Value 2 + +OS:Lights, + {83d49aa6-61ab-4041-a0c7-d41e04a9d1e3}, !- Handle + Outpatient Anesthesia - ComStock DOE Ref Pre-1980 Task Lighting, !- Name + {18a7ed6d-2f37-40fc-94a2-59cf9f504116}, !- Lights Definition Name + {8c151d9d-16aa-4372-a68e-592d90c257bc}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {63d81faf-b6ac-475c-9ea2-18bf77d41720}, !- Handle + Outpatient PreOp - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 2.13817878022128, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {19c034d8-6d84-428c-8366-5b76845447b7}, !- Handle + {63d81faf-b6ac-475c-9ea2-18bf77d41720}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {a24eee26-31f7-41ba-a4f7-e57e91a51e8a}, !- Handle + Outpatient PreOp - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {63d81faf-b6ac-475c-9ea2-18bf77d41720}, !- Lights Definition Name + {92312da1-9ed9-4fea-82b7-d1ae297e9d8a}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {4265e5a2-eca5-45c9-ade5-3fa6f53ef12a}, !- Handle + Outpatient PreOp - ComStock DOE Ref Pre-1980 Task Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 2.96280354465471, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {969062fb-a98c-45e8-ac48-53bf7481341c}, !- Handle + {4265e5a2-eca5-45c9-ade5-3fa6f53ef12a}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp general purpose, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + task; !- Feature Value 2 + +OS:Lights, + {9956b77d-abcc-4368-8d94-ef176d419dcf}, !- Handle + Outpatient PreOp - ComStock DOE Ref Pre-1980 Task Lighting, !- Name + {4265e5a2-eca5-45c9-ade5-3fa6f53ef12a}, !- Lights Definition Name + {92312da1-9ed9-4fea-82b7-d1ae297e9d8a}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {1c839793-458e-4005-a52e-909dcc7a1f5d}, !- Handle + Outpatient NurseStation - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.63114789767172, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {068d30a5-3dd7-4add-af4f-925014dbf1f7}, !- Handle + {1c839793-458e-4005-a52e-909dcc7a1f5d}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {cf9b5491-b9c2-4870-b70b-f4f2cfef2f11}, !- Handle + Outpatient NurseStation - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {1c839793-458e-4005-a52e-909dcc7a1f5d}, !- Lights Definition Name + {5b09c434-c361-4e51-b3be-21b2f3d26cc3}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {1715af7a-7cc8-47e9-9796-e85ff0bd15a2}, !- Handle + Outpatient NurseStation - ComStock DOE Ref Pre-1980 Task Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 1.317052442534, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {9035e0db-e885-4184-ba98-102f11f02057}, !- Handle + {1715af7a-7cc8-47e9-9796-e85ff0bd15a2}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp general purpose, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + task; !- Feature Value 2 + +OS:Lights, + {d9a23e79-b786-4cfa-b950-d5036af6f605}, !- Handle + Outpatient NurseStation - ComStock DOE Ref Pre-1980 Task Lighting, !- Name + {1715af7a-7cc8-47e9-9796-e85ff0bd15a2}, !- Lights Definition Name + {5b09c434-c361-4e51-b3be-21b2f3d26cc3}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {4c891a8a-87de-4c73-b9d6-79198be1bf57}, !- Handle + Outpatient MRI - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.61550212774715, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {157b412c-8981-4bbc-8230-12b8f9302b5a}, !- Handle + {4c891a8a-87de-4c73-b9d6-79198be1bf57}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {ebdb7cfc-64f7-4a82-8f63-7b9ccf93684f}, !- Handle + Outpatient MRI - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {4c891a8a-87de-4c73-b9d6-79198be1bf57}, !- Lights Definition Name + {a0d541c6-3262-49a8-96cb-668f335a0ac4}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {82bd1d8e-d05f-47b0-a756-ac22f8eac96e}, !- Handle + Outpatient LockerRoom - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 2.66140642171394, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {573912ed-5747-4cca-8da1-0e06408874e7}, !- Handle + {82bd1d8e-d05f-47b0-a756-ac22f8eac96e}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {7d28e786-658a-4645-ba54-5944f913ae16}, !- Handle + Outpatient LockerRoom - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {82bd1d8e-d05f-47b0-a756-ac22f8eac96e}, !- Lights Definition Name + {55e9e53a-8be5-42d7-b81b-a3ad93018a1a}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {0ce81aa1-0efe-4c07-9722-c6aa0ae1b94c}, !- Handle + Outpatient LockerRoom - ComStock DOE Ref Pre-1980 Wall Wash Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 0.725508667792935, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {2f838161-a32e-4329-8ff7-65a80e3a92fc}, !- Handle + {0ce81aa1-0efe-4c07-9722-c6aa0ae1b94c}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED directional, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + wall_wash; !- Feature Value 2 + +OS:Lights, + {d7f2c16e-17c4-4353-a85c-471a52fbc95f}, !- Handle + Outpatient LockerRoom - ComStock DOE Ref Pre-1980 Wall Wash Lighting, !- Name + {0ce81aa1-0efe-4c07-9722-c6aa0ae1b94c}, !- Lights Definition Name + {55e9e53a-8be5-42d7-b81b-a3ad93018a1a}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {2e334858-2d4d-41c1-b544-5f60c0c714cc}, !- Handle + Outpatient Soil Work - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 2.13817878022128, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {7d2aa6b2-9040-4202-9f0f-f51e8772a6b9}, !- Handle + {2e334858-2d4d-41c1-b544-5f60c0c714cc}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {c1c361f3-888b-46a3-9d8e-bdba8f6b22f7}, !- Handle + Outpatient Soil Work - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {2e334858-2d4d-41c1-b544-5f60c0c714cc}, !- Lights Definition Name + {d0eedb12-8aab-42b8-8864-4ef144c40d57}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {3d88da0f-05af-44f0-b314-c944f1500077}, !- Handle + Outpatient Soil Work - ComStock DOE Ref Pre-1980 Task Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 2.96280354465471, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {5de7b089-96fa-4994-8af8-fe9f666c0cd2}, !- Handle + {3d88da0f-05af-44f0-b314-c944f1500077}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp general purpose, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + task; !- Feature Value 2 + +OS:Lights, + {25f93ff2-8584-4619-b8ca-bf22e62bcd0a}, !- Handle + Outpatient Soil Work - ComStock DOE Ref Pre-1980 Task Lighting, !- Name + {3d88da0f-05af-44f0-b314-c944f1500077}, !- Lights Definition Name + {d0eedb12-8aab-42b8-8864-4ef144c40d57}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {0815d6f8-296e-4d89-ac79-93646b0bed75}, !- Handle + Outpatient OR - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 16.0350778147084, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {0bcb8be1-9622-4c26-8364-09f51397dff6}, !- Handle + {0815d6f8-296e-4d89-ac79-93646b0bed75}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {c4de7955-bdd7-4970-a3f5-ce8845ed56a3}, !- Handle + Outpatient OR - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {0815d6f8-296e-4d89-ac79-93646b0bed75}, !- Lights Definition Name + {5fb014fb-6043-4a5b-b056-a124c49bf50e}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {cc63cc39-50af-4edc-9dc9-ba485f774fcc}, !- Handle + Outpatient Conference - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 4.9205946412762, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {e92debeb-79a8-4f33-8d07-ee5237a5d34b}, !- Handle + {cc63cc39-50af-4edc-9dc9-ba485f774fcc}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {1e8fa305-f553-4c41-b7e9-aeeaf0414b47}, !- Handle + Outpatient Conference - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {cc63cc39-50af-4edc-9dc9-ba485f774fcc}, !- Lights Definition Name + {93b236bb-87a7-4e13-8625-9c2aa92c03be}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {0c254916-d610-4ea7-a7be-7e4af316cfb8}, !- Handle + Outpatient Conference - ComStock DOE Ref Pre-1980 Task Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 0.321863939608029, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {2ed8d603-c4aa-4f2e-9228-3dc197782902}, !- Handle + {0c254916-d610-4ea7-a7be-7e4af316cfb8}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp general purpose, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + task; !- Feature Value 2 + +OS:Lights, + {786b81fd-1db0-4966-8dbe-401ddf2cbc3f}, !- Handle + Outpatient Conference - ComStock DOE Ref Pre-1980 Task Lighting, !- Name + {0c254916-d610-4ea7-a7be-7e4af316cfb8}, !- Lights Definition Name + {93b236bb-87a7-4e13-8625-9c2aa92c03be}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {c7584907-98c3-430c-b4d2-ec83594c0ff8}, !- Handle + Outpatient Conference - ComStock DOE Ref Pre-1980 Wall Wash Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 0.757052522914367, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {24584824-aa0d-4b59-98bd-42527a48758c}, !- Handle + {c7584907-98c3-430c-b4d2-ec83594c0ff8}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED directional, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + wall_wash; !- Feature Value 2 + +OS:Lights, + {5a3649b7-ab9a-43b4-9294-ee69a06287e0}, !- Handle + Outpatient Conference - ComStock DOE Ref Pre-1980 Wall Wash Lighting, !- Name + {c7584907-98c3-430c-b4d2-ec83594c0ff8}, !- Lights Definition Name + {93b236bb-87a7-4e13-8625-9c2aa92c03be}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {34ed755d-362f-4f8b-a09a-9a66b16def7a}, !- Handle + Outpatient Toilet - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 3.01365138929373, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {b88e028f-77df-4f96-81d5-fa19b9984af3}, !- Handle + {34ed755d-362f-4f8b-a09a-9a66b16def7a}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {87b3ff76-dacb-4a17-b5a5-aac763e13fe8}, !- Handle + Outpatient Toilet - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {34ed755d-362f-4f8b-a09a-9a66b16def7a}, !- Lights Definition Name + {10a9958c-5712-4449-9d93-940c14d4492e}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {3e1884fd-02ad-4d75-9587-9e6d787a3340}, !- Handle + Outpatient Toilet - ComStock DOE Ref Pre-1980 Wall Wash Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 0.610954667615103, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {51ede757-4eeb-4ca0-962b-0b896ac1f5f0}, !- Handle + {3e1884fd-02ad-4d75-9587-9e6d787a3340}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED directional, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + wall_wash; !- Feature Value 2 + +OS:Lights, + {db99833d-0e0e-4185-866f-df9146623872}, !- Handle + Outpatient Toilet - ComStock DOE Ref Pre-1980 Wall Wash Lighting, !- Name + {3e1884fd-02ad-4d75-9587-9e6d787a3340}, !- Lights Definition Name + {10a9958c-5712-4449-9d93-940c14d4492e}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {fece63de-8c37-4d21-82fd-f1f13c8d1063}, !- Handle + Outpatient PACU - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 6.91175754214068, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {cf919314-8087-40a6-ba5e-a064afdf258f}, !- Handle + {fece63de-8c37-4d21-82fd-f1f13c8d1063}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {756dec54-cd2b-4ed2-9df4-0fd94179a67a}, !- Handle + Outpatient PACU - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {fece63de-8c37-4d21-82fd-f1f13c8d1063}, !- Lights Definition Name + {171a2876-5f59-46c1-9438-827411e98017}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {41b5b352-f4df-402e-b0a9-9a8eb8362ab4}, !- Handle + Outpatient PACU - ComStock DOE Ref Pre-1980 Wall Wash Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 1.80699544237749, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {e47236e3-7c1c-492e-9dfe-bbee96f3157f}, !- Handle + {41b5b352-f4df-402e-b0a9-9a8eb8362ab4}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED directional, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + wall_wash; !- Feature Value 2 + +OS:Lights, + {b62da3d6-f554-4687-8869-8c0ce2f51385}, !- Handle + Outpatient PACU - ComStock DOE Ref Pre-1980 Wall Wash Lighting, !- Name + {41b5b352-f4df-402e-b0a9-9a8eb8362ab4}, !- Lights Definition Name + {171a2876-5f59-46c1-9438-827411e98017}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {f5e6a4e6-9e44-4965-8004-35a7f8d2742e}, !- Handle + Outpatient Reception - ComStock DOE Ref Pre-1980 General Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 1.74481306384859, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.365, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {66a979d2-e2e5-4b09-b0b2-8fc7e1bf5928}, !- Handle + {f5e6a4e6-9e44-4965-8004-35a7f8d2742e}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp linear, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + general; !- Feature Value 2 + +OS:Lights, + {9e835395-53b0-44ad-8de7-d3278ff7a054}, !- Handle + Outpatient Reception - ComStock DOE Ref Pre-1980 General Lighting, !- Name + {f5e6a4e6-9e44-4965-8004-35a7f8d2742e}, !- Lights Definition Name + {b0858a9c-8d82-4ec2-b1e5-e4c1bbd82d0e}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {ac97f117-281b-48ea-975b-b22f89692218}, !- Handle + Outpatient Reception - ComStock DOE Ref Pre-1980 Task Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 0.190877164916568, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {42349ea5-e906-4e70-bda2-57117c4dbbb7}, !- Handle + {ac97f117-281b-48ea-975b-b22f89692218}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED lamp general purpose, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + task; !- Feature Value 2 + +OS:Lights, + {506e5b3c-f15c-46cf-88ed-9ced5f760dd7}, !- Handle + Outpatient Reception - ComStock DOE Ref Pre-1980 Task Lighting, !- Name + {ac97f117-281b-48ea-975b-b22f89692218}, !- Lights Definition Name + {b0858a9c-8d82-4ec2-b1e5-e4c1bbd82d0e}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Lights:Definition, + {9f1c720c-d9ef-4889-a330-2a94f6850854}, !- Handle + Outpatient Reception - ComStock DOE Ref Pre-1980 Wall Wash Lights Definition, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 0.533707525412509, !- Watts per Space Floor Area {W/m2} + , !- Watts per Person {W/person} + 0.165, !- Fraction Radiant + 0.2, !- Fraction Visible + 0; !- Return Air Fraction + +OS:AdditionalProperties, + {889f97fc-5757-4fe2-8888-e90993019d5a}, !- Handle + {9f1c720c-d9ef-4889-a330-2a94f6850854}, !- Object Name + lighting_technology, !- Feature Name 1 + String, !- Feature Data Type 1 + LED directional, !- Feature Value 1 + lighting_system_type, !- Feature Name 2 + String, !- Feature Data Type 2 + wall_wash; !- Feature Value 2 + +OS:Lights, + {ac98adde-ccd1-44ad-a79b-88ea50e3754d}, !- Handle + Outpatient Reception - ComStock DOE Ref Pre-1980 Wall Wash Lighting, !- Name + {9f1c720c-d9ef-4889-a330-2a94f6850854}, !- Lights Definition Name + {b0858a9c-8d82-4ec2-b1e5-e4c1bbd82d0e}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory + +OS:Schedule:Ruleset, + {247fab00-173d-4903-8185-3c78cd84c319}, !- Handle + Infiltration HVAC On Schedule, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + {5e974015-55e9-4e92-b94f-fb67dffa80c9}, !- Default Day Schedule Name + {745541ef-21e1-47b7-8290-1367a9406367}, !- Summer Design Day Schedule Name + {270275ef-fdaa-49a3-857c-1a863e1f483c}; !- Winter Design Day Schedule Name + +OS:AdditionalProperties, + {9db113c3-0415-43ab-9b3f-90da44bce656}, !- Handle + {247fab00-173d-4903-8185-3c78cd84c319}, !- Object Name + max_occ_in_spaces, !- Feature Name 1 + Double, !- Feature Data Type 1 + 957.42520458265335, !- Feature Value 1 + number_of_spaces_included, !- Feature Name 2 + Integer, !- Feature Data Type 2 + 81, !- Feature Value 2 + date_parent_object_last_edited, !- Feature Name 3 + String, !- Feature Data Type 3 + 2024-10-22 22:41:51 UTC, !- Feature Value 3 + date_parent_object_created, !- Feature Name 4 + String, !- Feature Data Type 4 + 2024-10-22 22:41:51 UTC; !- Feature Value 4 + +OS:Schedule:Day, + {5e974015-55e9-4e92-b94f-fb67dffa80c9}, !- Handle + 96 Zone DOAS Occ Sch Default 1, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 18, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Day, + {745541ef-21e1-47b7-8290-1367a9406367}, !- Handle + 96 Zone DOAS Occ Sch Summer Design Day 1, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {270275ef-fdaa-49a3-857c-1a863e1f483c}, !- Handle + 96 Zone DOAS Occ Sch Winter Design Day 1, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Rule, + {bfa0cf14-eec6-4e34-ba2b-a6b132645a19}, !- Handle + Schedule Rule 28, !- Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Ruleset Name + 0, !- Rule Order + {41090463-7298-4532-b2da-6423cb08d7d6}, !- Day Schedule Name + Yes, !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + , !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 7, !- Start Day + 12, !- End Month + 30; !- End Day + +OS:Schedule:Day, + {41090463-7298-4532-b2da-6423cb08d7d6}, !- Handle + Schedule Day 30, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Rule, + {f41632ae-d86f-41fe-8ccb-4fe7516f786b}, !- Handle + Schedule Rule 29, !- Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Ruleset Name + 1, !- Rule Order + {05625806-ccb7-41d3-9f4d-955d050392c4}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes, !- Apply Saturday + DateRange, !- Date Specification Type + 1, !- Start Month + 6, !- Start Day + 12, !- End Month + 29; !- End Day + +OS:Schedule:Day, + {05625806-ccb7-41d3-9f4d-955d050392c4}, !- Handle + Schedule Day 31, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 10, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 15, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0; !- Value Until Time 3 + +OS:Schedule:Ruleset, + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Handle + Infiltration HVAC Off Schedule, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + {5ffed634-55dd-4efd-b457-0acb82d416ca}, !- Default Day Schedule Name + {ee21d8ef-9545-4f5b-94fe-8bd638cfb55e}, !- Summer Design Day Schedule Name + {7b92597d-c53d-4005-bc93-b0c2655ff55b}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {5ffed634-55dd-4efd-b457-0acb82d416ca}, !- Handle + Infiltration HVAC Off Schedule Default Day Schedule, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 18, !- Hour 2 + 0, !- Minute 2 + 0, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:Schedule:Day, + {6f6b1322-a34f-44cd-aebc-87f6bc97c419}, !- Handle + Infiltration HVAC Off Schedule Summer Design Day Schedule, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {ee21d8ef-9545-4f5b-94fe-8bd638cfb55e}, !- Handle + Infiltration HVAC Off Schedule Summer Design Day Schedule 1, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {099eee02-3a72-44f1-a234-8cf06055a081}, !- Handle + Infiltration HVAC Off Schedule Winter Design Day Schedule, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {7b92597d-c53d-4005-bc93-b0c2655ff55b}, !- Handle + Infiltration HVAC Off Schedule Winter Design Day Schedule 1, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 + +OS:Schedule:Day, + {88f4d486-aa1a-4871-bd81-406bfb345cb8}, !- Handle + Infiltration HVAC Off Schedule Schedule Day 0, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Rule, + {258c8ede-79a0-4743-9735-52cabbca4aad}, !- Handle + Infiltration HVAC Off Schedule Schedule Day 0 Rule, !- Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Ruleset Name + 1, !- Rule Order + {1b99108a-854f-4d76-aedd-eb7879edf93b}, !- Day Schedule Name + Yes, !- Apply Sunday + No, !- Apply Monday + No, !- Apply Tuesday + No, !- Apply Wednesday + No, !- Apply Thursday + No, !- Apply Friday + No; !- Apply Saturday + +OS:Schedule:Day, + {1b99108a-854f-4d76-aedd-eb7879edf93b}, !- Handle + Infiltration HVAC Off Schedule Schedule Day 0 1, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 + +OS:Schedule:Day, + {c5b334a8-3343-4455-af65-b434adf39239}, !- Handle + Infiltration HVAC Off Schedule Schedule Day 1, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 10, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 15, !- Hour 2 + 0, !- Minute 2 + 0, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:Schedule:Rule, + {af974d9b-9981-4560-b9bf-f1ed7e1ba2af}, !- Handle + Infiltration HVAC Off Schedule Schedule Day 1 Rule, !- Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Ruleset Name + 0, !- Rule Order + {3fc43750-65c0-40d4-a98f-97ca69ace8ff}, !- Day Schedule Name + No, !- Apply Sunday + No, !- Apply Monday + No, !- Apply Tuesday + No, !- Apply Wednesday + No, !- Apply Thursday + No, !- Apply Friday + Yes; !- Apply Saturday + +OS:Schedule:Day, + {3fc43750-65c0-40d4-a98f-97ca69ace8ff}, !- Handle + Infiltration HVAC Off Schedule Schedule Day 2, !- Name + {2c2608ae-379d-45bf-bdc1-a51344305c57}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 10, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 15, !- Hour 2 + 0, !- Minute 2 + 0, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 + +OS:SpaceInfiltration:DesignFlowRate, + {b7570d74-ec79-4f00-8dae-db9e081f4d28}, !- Handle + Outpatient PACU C - Story ground HVAC On Infiltration, !- Name + {1e18da95-5cb4-40d3-9a81-fe5e67e03b16}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {2cde1abf-f6cc-4c9d-b7f2-1c7448e15aa6}, !- Handle + Outpatient PACU C - Story ground HVAC Off Infiltration, !- Name + {1e18da95-5cb4-40d3-9a81-fe5e67e03b16}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {8768601c-69a2-49f6-86e5-5e2b0cfaa964}, !- Handle + Outpatient PACU A - Story ground HVAC On Infiltration, !- Name + {c3024915-c047-4fc8-9646-11c39d8548f1}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {dfdc8051-8f4f-4bfb-a22e-de0107adfb66}, !- Handle + Outpatient PACU A - Story ground HVAC Off Infiltration, !- Name + {c3024915-c047-4fc8-9646-11c39d8548f1}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {45d494db-c17e-400c-b80a-0e03712e7017}, !- Handle + Outpatient Lounge A - Story ground HVAC On Infiltration, !- Name + {49dad92d-accf-443a-a6de-2727d958c0e0}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {adc8ac22-9614-4f32-ad2a-f2fcf465612d}, !- Handle + Outpatient Lounge A - Story ground HVAC Off Infiltration, !- Name + {49dad92d-accf-443a-a6de-2727d958c0e0}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {b36290e4-7de9-4b5f-b49c-8c37ab4761a5}, !- Handle + Outpatient Xray C - Story ground HVAC On Infiltration, !- Name + {bcb954e6-60d6-4118-811c-173a8335bfae}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {d559cad5-2d82-4591-85e3-c8a9e4d8a09d}, !- Handle + Outpatient Xray C - Story ground HVAC Off Infiltration, !- Name + {bcb954e6-60d6-4118-811c-173a8335bfae}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {e9d93ab8-6369-42bf-bc07-09444325beba}, !- Handle + Outpatient PACU B - Story ground HVAC On Infiltration, !- Name + {6da9c991-5f0d-43e7-ac30-e33f3cc5a855}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {13ff9f80-cf68-4d52-86bd-5c4aa4c32441}, !- Handle + Outpatient PACU B - Story ground HVAC Off Infiltration, !- Name + {6da9c991-5f0d-43e7-ac30-e33f3cc5a855}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {62d7fa8d-be03-4025-9fff-e7205322ac40}, !- Handle + Outpatient Toilet C - Story ground HVAC On Infiltration, !- Name + {c88f9c32-e196-4172-975f-53045961e2e3}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {9ddb9efb-0299-4bfc-9b54-5a48e9ab69e8}, !- Handle + Outpatient Toilet C - Story ground HVAC Off Infiltration, !- Name + {c88f9c32-e196-4172-975f-53045961e2e3}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {fc5d42c6-c5ba-40ce-a075-7cc2523dd0fa}, !- Handle + Outpatient LockerRoom C - Story ground HVAC On Infiltration, !- Name + {699f0c0c-f25b-44a1-9cf1-d2ccf19386e7}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {8b1fe0ed-20d6-4fe9-be2c-a06f764c24a8}, !- Handle + Outpatient LockerRoom C - Story ground HVAC Off Infiltration, !- Name + {699f0c0c-f25b-44a1-9cf1-d2ccf19386e7}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {bdad7b31-76b4-48ae-9829-b2c33e020d9a}, !- Handle + Outpatient NurseStation C - Story ground HVAC On Infiltration, !- Name + {f3b05715-ee07-48d2-aa80-78bac9b77fe5}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {74fcff54-30c5-4393-9ce0-abf5566ddb7c}, !- Handle + Outpatient NurseStation C - Story ground HVAC Off Infiltration, !- Name + {f3b05715-ee07-48d2-aa80-78bac9b77fe5}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {0a2571c6-c08e-4aac-a548-ac5a41f55f30}, !- Handle + Outpatient Lobby C - Story ground HVAC On Infiltration, !- Name + {0cce8e12-d645-4d9a-90fc-367c2d118d54}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {fcd7f8bc-9f10-45de-88c3-e9aa5026afe3}, !- Handle + Outpatient Lobby C - Story ground HVAC Off Infiltration, !- Name + {0cce8e12-d645-4d9a-90fc-367c2d118d54}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {425f185c-3ec0-434c-8597-f8b62f3edcdc}, !- Handle + Outpatient Lobby A - Story ground HVAC On Infiltration, !- Name + {f570382a-efd5-4ffc-8095-a7bced243c99}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {f6a02748-9d40-44b0-b488-abcc90d6abf8}, !- Handle + Outpatient Lobby A - Story ground HVAC Off Infiltration, !- Name + {f570382a-efd5-4ffc-8095-a7bced243c99}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {81335592-4ef0-4e66-a7e5-430bdc45f742}, !- Handle + Outpatient NurseStation A - Story ground HVAC On Infiltration, !- Name + {cb45a6dc-735c-46cc-b8e6-22caaa1477d8}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {454e04ab-5784-4dbf-a44b-1d46261176f7}, !- Handle + Outpatient NurseStation A - Story ground HVAC Off Infiltration, !- Name + {cb45a6dc-735c-46cc-b8e6-22caaa1477d8}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {ed90b8bb-0fe9-48f1-ab75-92df9fc62625}, !- Handle + Outpatient Stair C - Story ground HVAC On Infiltration, !- Name + {f9541ccc-4c68-458f-aa32-860b6cc1bc80}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {ced38c80-7887-4ea7-830e-b653ef37ec66}, !- Handle + Outpatient Stair C - Story ground HVAC Off Infiltration, !- Name + {f9541ccc-4c68-458f-aa32-860b6cc1bc80}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {ee05ea6a-a471-4970-8324-015c83a736db}, !- Handle + Outpatient PreOp B - Story ground HVAC On Infiltration, !- Name + {9cf6e6b0-9d71-4410-b574-bc406d044fc9}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {2753e3d6-960f-48f7-8820-54e1ef1be8bc}, !- Handle + Outpatient PreOp B - Story ground HVAC Off Infiltration, !- Name + {9cf6e6b0-9d71-4410-b574-bc406d044fc9}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {c869334c-5588-4b59-ad38-13d949773127}, !- Handle + Outpatient PreOp A - Story ground HVAC On Infiltration, !- Name + {0eab7abe-c6e0-41ed-be3b-89dbf7f80039}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {ffac0a54-39e1-44c3-8671-5ae6b22384fa}, !- Handle + Outpatient PreOp A - Story ground HVAC Off Infiltration, !- Name + {0eab7abe-c6e0-41ed-be3b-89dbf7f80039}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {97778811-7f7e-460f-9811-cf1006514f84}, !- Handle + Outpatient Elec/MechRoom B - Story ground HVAC On Infiltration, !- Name + {81fa56b4-4ffd-42fa-a5a8-130d82b9aef2}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {82d1c71d-35c0-4a53-80ba-1f4c0c18e4bc}, !- Handle + Outpatient Elec/MechRoom B - Story ground HVAC Off Infiltration, !- Name + {81fa56b4-4ffd-42fa-a5a8-130d82b9aef2}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {45770d1b-b807-42a5-8e25-672fea9f5134}, !- Handle + Outpatient MRI C - Story ground HVAC On Infiltration, !- Name + {6383b585-77c7-44db-93de-d2820eee11c1}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {9f4dc31c-c812-48f9-b16a-0ba5509a402f}, !- Handle + Outpatient MRI C - Story ground HVAC Off Infiltration, !- Name + {6383b585-77c7-44db-93de-d2820eee11c1}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {e92d0ff2-d21b-48e7-b0c2-640d10d13ec5}, !- Handle + Outpatient MRI B - Story ground HVAC On Infiltration, !- Name + {11f048f2-4bcf-4b69-ae64-b72966af8bd6}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {77c3f21c-6056-46a6-8043-71d62b07775e}, !- Handle + Outpatient MRI B - Story ground HVAC Off Infiltration, !- Name + {11f048f2-4bcf-4b69-ae64-b72966af8bd6}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {765970cd-a302-475f-97bd-636bee9a20f6}, !- Handle + Outpatient Cafe C - Story ground HVAC On Infiltration, !- Name + {e9d23156-5cb0-449d-a624-d5357e7664ca}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {03a02472-69fd-4adc-8f74-cbc03e1f1115}, !- Handle + Outpatient Cafe C - Story ground HVAC Off Infiltration, !- Name + {e9d23156-5cb0-449d-a624-d5357e7664ca}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {05179e3e-4206-4aae-9394-7007eb8359fb}, !- Handle + Outpatient Elec/MechRoom A - Story ground HVAC On Infiltration, !- Name + {32d05e1b-858c-4e47-a74e-881768de235e}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {908e9273-5904-49d6-9ab5-2db4d25f9570}, !- Handle + Outpatient Elec/MechRoom A - Story ground HVAC Off Infiltration, !- Name + {32d05e1b-858c-4e47-a74e-881768de235e}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {a10ba18f-e5c6-42ac-a574-13ae42776e7d}, !- Handle + Outpatient Cafe B - Story ground HVAC On Infiltration, !- Name + {1c285a6c-116b-4243-b6f1-8e3192788fc8}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {cb20172c-5e2d-46ac-93db-1cb22d8554a0}, !- Handle + Outpatient Cafe B - Story ground HVAC Off Infiltration, !- Name + {1c285a6c-116b-4243-b6f1-8e3192788fc8}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {3a83f797-745e-4f71-9bff-45c6b3d057b1}, !- Handle + Outpatient Cafe A - Story ground HVAC On Infiltration, !- Name + {9583b48c-d1fc-4459-aae5-e5b5e1abba7f}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {1844bd42-a680-40f6-876c-5d5ddb19c98b}, !- Handle + Outpatient Cafe A - Story ground HVAC Off Infiltration, !- Name + {9583b48c-d1fc-4459-aae5-e5b5e1abba7f}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {14dae207-c84b-47f4-a36b-fc61369753d4}, !- Handle + Outpatient Soil Work C - Story ground HVAC On Infiltration, !- Name + {fae96387-f8f0-48eb-9d1f-7570679911e5}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {d3376156-4be7-40df-b569-81b74f073dcc}, !- Handle + Outpatient Soil Work C - Story ground HVAC Off Infiltration, !- Name + {fae96387-f8f0-48eb-9d1f-7570679911e5}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {af491614-1a8e-4560-a737-fecc4bdded70}, !- Handle + Outpatient Lounge C - Story ground HVAC On Infiltration, !- Name + {3868ff9d-9a90-4997-afe7-1670c60677e0}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {a488af31-f39a-4071-99a8-b61838dfff94}, !- Handle + Outpatient Lounge C - Story ground HVAC Off Infiltration, !- Name + {3868ff9d-9a90-4997-afe7-1670c60677e0}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {0983e411-18a8-491a-83fb-b386b508d088}, !- Handle + Outpatient BioHazard A - Story ground HVAC On Infiltration, !- Name + {07bcebe4-49e7-4b79-a705-f1df5dacfb82}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {7da64c78-ec48-40ae-8438-6c63df249344}, !- Handle + Outpatient BioHazard A - Story ground HVAC Off Infiltration, !- Name + {07bcebe4-49e7-4b79-a705-f1df5dacfb82}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {ce5d954a-5fd2-486e-963d-84d77bda0157}, !- Handle + Outpatient Exam A - Story ground HVAC On Infiltration, !- Name + {f5af384c-a5a4-4c87-b078-a5bf21405c54}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {b1f5ff59-5ce6-45de-8aba-95925869bc36}, !- Handle + Outpatient Exam A - Story ground HVAC Off Infiltration, !- Name + {f5af384c-a5a4-4c87-b078-a5bf21405c54}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {4b9ac358-0791-435d-8371-76c7502adac5}, !- Handle + Outpatient Office C end_b - Story ground HVAC On Infiltration, !- Name + {08a083ce-be5a-4f63-8b9d-21b46ba56f99}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {02d8dfe8-bf4e-4591-9a5e-3f037e1c2830}, !- Handle + Outpatient Office C end_b - Story ground HVAC Off Infiltration, !- Name + {08a083ce-be5a-4f63-8b9d-21b46ba56f99}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {b3879333-57de-4c37-b3a4-b1a645d78ce4}, !- Handle + Outpatient Conference A - Story ground HVAC On Infiltration, !- Name + {0d5369c4-e9f2-406b-8a24-071ce82d3546}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {beae14ed-e1a8-404d-a614-6aa81c934fc0}, !- Handle + Outpatient Conference A - Story ground HVAC Off Infiltration, !- Name + {0d5369c4-e9f2-406b-8a24-071ce82d3546}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {0cb45ef7-3a75-4081-b20b-881d14b9cd1b}, !- Handle + Outpatient Stair A - Story ground HVAC On Infiltration, !- Name + {481888aa-bd8b-4b40-8221-99cbc36df9ac}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {24676e03-ca71-42a2-af46-8fe823fe7fff}, !- Handle + Outpatient Stair A - Story ground HVAC Off Infiltration, !- Name + {481888aa-bd8b-4b40-8221-99cbc36df9ac}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {2d018585-aceb-42a3-93d7-833107668c53}, !- Handle + Outpatient Office B - Story ground HVAC On Infiltration, !- Name + {5025d250-982e-46c8-bf73-96bc06bac6fe}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {2e3b8223-7425-484e-9286-60148c8f31f7}, !- Handle + Outpatient Office B - Story ground HVAC Off Infiltration, !- Name + {5025d250-982e-46c8-bf73-96bc06bac6fe}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {623e40ef-eb78-4de0-b8c7-5f7548e69a29}, !- Handle + Outpatient Toilet A - Story ground HVAC On Infiltration, !- Name + {7bc0f656-994b-4f31-8647-d1e47021afd7}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {f82dd94c-d7ea-4096-8866-d8b322e42f2b}, !- Handle + Outpatient Toilet A - Story ground HVAC Off Infiltration, !- Name + {7bc0f656-994b-4f31-8647-d1e47021afd7}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {0124202a-7d38-48d9-ad3d-f60c623b3d8f}, !- Handle + Outpatient Stair B - Story ground HVAC On Infiltration, !- Name + {feb60575-a4e3-473f-97a3-adc777f0359a}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {563c3c64-10a3-4d57-b19b-25374dadd9b3}, !- Handle + Outpatient Stair B - Story ground HVAC Off Infiltration, !- Name + {feb60575-a4e3-473f-97a3-adc777f0359a}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {779a3783-063d-4e4b-88ef-f5dd2f17d221}, !- Handle + Outpatient OR A - Story ground 1 HVAC On Infiltration, !- Name + {4287fa7e-a0de-424e-9ab4-95ecfb37d31f}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {842fecf4-3d0d-43cf-9cb1-60e531c0ae86}, !- Handle + Outpatient OR A - Story ground 1 HVAC Off Infiltration, !- Name + {4287fa7e-a0de-424e-9ab4-95ecfb37d31f}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {6057001c-a8dc-4402-a47c-13feaa388410}, !- Handle + Outpatient BioHazard B - Story ground HVAC On Infiltration, !- Name + {3ed315cf-5223-42c3-a62b-1bcf89a9f58c}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {614158b9-d0b1-4007-8e38-1a27d9729ac0}, !- Handle + Outpatient BioHazard B - Story ground HVAC Off Infiltration, !- Name + {3ed315cf-5223-42c3-a62b-1bcf89a9f58c}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {1ba22252-858f-45f8-b732-d2853e1b3ae5}, !- Handle + Outpatient Office B end_b - Story ground HVAC On Infiltration, !- Name + {46e7b4a8-20f3-4bc8-ab65-3899bd8d2932}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {20872dbc-d625-4ff8-8cc7-61248e04744c}, !- Handle + Outpatient Office B end_b - Story ground HVAC Off Infiltration, !- Name + {46e7b4a8-20f3-4bc8-ab65-3899bd8d2932}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {b735b5f7-9508-4cce-b52c-ceb487b1fa05}, !- Handle + Outpatient Janitor C - Story ground HVAC On Infiltration, !- Name + {bfeeb8f8-e1f4-4a9d-a185-5767302ed53b}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {00d3fd06-516c-402c-8c84-d6530a32e70d}, !- Handle + Outpatient Janitor C - Story ground HVAC Off Infiltration, !- Name + {bfeeb8f8-e1f4-4a9d-a185-5767302ed53b}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {a6bd7cba-7962-4689-8f3d-47c945d430aa}, !- Handle + Outpatient Lounge B - Story ground HVAC On Infiltration, !- Name + {f8b7515e-aa35-4e1e-a411-e3223567f7a8}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {4075dc91-6845-4a77-a2e6-f0a60f685ae8}, !- Handle + Outpatient Lounge B - Story ground HVAC Off Infiltration, !- Name + {f8b7515e-aa35-4e1e-a411-e3223567f7a8}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {7eaa2950-5ef3-4c34-95ff-f8ca898afe8a}, !- Handle + Outpatient PreOp C - Story ground HVAC On Infiltration, !- Name + {e8a67c40-e9cc-4e8f-b151-3a8b38938799}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {6decea58-981a-4e9a-b3b3-41ab4bce0852}, !- Handle + Outpatient PreOp C - Story ground HVAC Off Infiltration, !- Name + {e8a67c40-e9cc-4e8f-b151-3a8b38938799}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {95efad11-5dee-4e21-8e39-636021863944}, !- Handle + Outpatient Soil Work B - Story ground HVAC On Infiltration, !- Name + {c8d87457-0b89-4f7c-8815-aa87ae84f957}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {9ac5cbff-a34e-4722-aad2-5ea2e6c2b851}, !- Handle + Outpatient Soil Work B - Story ground HVAC Off Infiltration, !- Name + {c8d87457-0b89-4f7c-8815-aa87ae84f957}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {aa2a24dd-5ebb-4fe7-9f49-8de80c505c8c}, !- Handle + Outpatient LockerRoom B - Story ground HVAC On Infiltration, !- Name + {f1e219bc-e3b6-43a1-9fb1-1a607cb43320}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {733f40cc-9b86-47a0-931f-a5b0a0d2da02}, !- Handle + Outpatient LockerRoom B - Story ground HVAC Off Infiltration, !- Name + {f1e219bc-e3b6-43a1-9fb1-1a607cb43320}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {58ec9e9c-8159-4949-aa99-c288fcfebd3c}, !- Handle + Outpatient Office C - Story ground HVAC On Infiltration, !- Name + {9b54d120-a67e-4b54-80fb-adbb35e790c9}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {e32fb12c-9f53-43c0-8dd1-7a997b476a98}, !- Handle + Outpatient Office C - Story ground HVAC Off Infiltration, !- Name + {9b54d120-a67e-4b54-80fb-adbb35e790c9}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {8765aa1a-36ae-401d-81e6-e49b6692b3f1}, !- Handle + Outpatient Hall B end_a - Story ground HVAC On Infiltration, !- Name + {dd86b83c-fece-48cb-8e07-ebc5f5ae7e78}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {14c02cf8-c0de-4a98-b5c3-c282673be3b6}, !- Handle + Outpatient Hall B end_a - Story ground HVAC Off Infiltration, !- Name + {dd86b83c-fece-48cb-8e07-ebc5f5ae7e78}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {c5ecb06e-4a82-42c5-a517-8b0a99786a45}, !- Handle + Outpatient Exam C - Story ground HVAC On Infiltration, !- Name + {eee8fa4e-ae5b-4919-a079-6e3c9f6e0be2}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {21b1bd4f-c235-47d6-a77d-31e9b893849d}, !- Handle + Outpatient Exam C - Story ground HVAC Off Infiltration, !- Name + {eee8fa4e-ae5b-4919-a079-6e3c9f6e0be2}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {ca318052-22c3-43d8-8440-e5d06a900c7d}, !- Handle + Outpatient Exam C end_a - Story ground HVAC On Infiltration, !- Name + {8a09d570-ad4b-41c3-b795-5536154f56fb}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {f6575124-15d1-436d-9b90-03198729691f}, !- Handle + Outpatient Exam C end_a - Story ground HVAC Off Infiltration, !- Name + {8a09d570-ad4b-41c3-b795-5536154f56fb}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {a7a68dc1-4396-405d-8041-c482d9d6d80e}, !- Handle + Outpatient NurseStation B - Story ground HVAC On Infiltration, !- Name + {ab75327c-5484-46da-a711-cf7dce5c0aab}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {6fee4070-f3e9-4db9-94dd-636103ff939e}, !- Handle + Outpatient NurseStation B - Story ground HVAC Off Infiltration, !- Name + {ab75327c-5484-46da-a711-cf7dce5c0aab}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {dba4e98d-28a2-4d1f-8c81-9398b403bf79}, !- Handle + Outpatient Janitor A - Story ground HVAC On Infiltration, !- Name + {bbe6cbc9-9f07-4c3e-9936-16e4ad1e39f7}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {7f59eaf0-c3d6-4754-ab7a-84be4dbe101f}, !- Handle + Outpatient Janitor A - Story ground HVAC Off Infiltration, !- Name + {bbe6cbc9-9f07-4c3e-9936-16e4ad1e39f7}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {d3de45a0-5dd0-416b-b181-1a9f14df0170}, !- Handle + Outpatient PhysicalTherapy C - Story ground HVAC On Infiltration, !- Name + {a796833a-310e-44c7-8335-ceb1ff393f7c}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {9b87356d-41e1-4537-a0f2-90649b4fb613}, !- Handle + Outpatient PhysicalTherapy C - Story ground HVAC Off Infiltration, !- Name + {a796833a-310e-44c7-8335-ceb1ff393f7c}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {d7740f62-cf0b-4e32-9dfb-f97c239d9305}, !- Handle + Outpatient DressingRoom A - Story ground HVAC On Infiltration, !- Name + {905eb233-f56e-4e1a-a950-e05213a51981}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {b5cec9f2-b1db-46f9-843f-3da85efbfefb}, !- Handle + Outpatient DressingRoom A - Story ground HVAC Off Infiltration, !- Name + {905eb233-f56e-4e1a-a950-e05213a51981}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {b8310eb8-052a-4606-9c80-6d9613e38300}, !- Handle + Outpatient Janitor B - Story ground HVAC On Infiltration, !- Name + {e908186f-5c13-4392-ac0c-90cfbe440a78}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {efe4a0ae-dc0a-49c0-bde6-ed0b4622d5d7}, !- Handle + Outpatient Janitor B - Story ground HVAC Off Infiltration, !- Name + {e908186f-5c13-4392-ac0c-90cfbe440a78}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {5cff1e3b-ceb8-44d6-a2de-c1d09f855869}, !- Handle + Outpatient CleanWork A - Story ground HVAC On Infiltration, !- Name + {279ee2d4-a31f-45f3-a86a-ec3dc1af7a40}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {bbccedc8-c355-4c2d-933a-cce8e2432156}, !- Handle + Outpatient CleanWork A - Story ground HVAC Off Infiltration, !- Name + {279ee2d4-a31f-45f3-a86a-ec3dc1af7a40}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {8058cdde-f0e1-443c-8b93-59dae9de120a}, !- Handle + Outpatient Hall B - Story ground HVAC On Infiltration, !- Name + {1213fed4-6df6-4c2e-af62-c372c21405be}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {b8fd9aa6-eb07-4baa-94a1-0a636d3c4dee}, !- Handle + Outpatient Hall B - Story ground HVAC Off Infiltration, !- Name + {1213fed4-6df6-4c2e-af62-c372c21405be}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {d10f50dd-816f-44eb-ac5c-bd303fa98b9b}, !- Handle + Outpatient ElevatorPumpRoom C - Story ground HVAC On Infiltration, !- Name + {eababfdf-fb36-40f8-9abb-6ab73d3dc9ea}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {9c97a52d-3d19-4b0d-841a-ccf75360dc91}, !- Handle + Outpatient ElevatorPumpRoom C - Story ground HVAC Off Infiltration, !- Name + {eababfdf-fb36-40f8-9abb-6ab73d3dc9ea}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {67c97c04-7342-4b5c-a682-472beeed6113}, !- Handle + Outpatient Office A end_b - Story ground HVAC On Infiltration, !- Name + {af46d1c0-0c7e-4549-a3ee-c23fe621f94a}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {de5111c7-37a3-4b4e-95ce-4add74a18a14}, !- Handle + Outpatient Office A end_b - Story ground HVAC Off Infiltration, !- Name + {af46d1c0-0c7e-4549-a3ee-c23fe621f94a}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {1f62f0ae-94cf-4ca4-966d-278e44c2f499}, !- Handle + Outpatient OR A - Story ground HVAC On Infiltration, !- Name + {2da562aa-6f06-4968-b8e2-fe4ad52088ea}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {5eebf77c-2c4a-446c-8f05-6a8864da9063}, !- Handle + Outpatient OR A - Story ground HVAC Off Infiltration, !- Name + {2da562aa-6f06-4968-b8e2-fe4ad52088ea}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {c76123bf-b41b-4c7c-9dda-9e2ca7c409bd}, !- Handle + Outpatient Toilet B - Story ground HVAC On Infiltration, !- Name + {43767cc7-b0f6-47bd-b085-e12a46f00094}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {cd9723b0-a820-4854-b2cc-2588c52a4576}, !- Handle + Outpatient Toilet B - Story ground HVAC Off Infiltration, !- Name + {43767cc7-b0f6-47bd-b085-e12a46f00094}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {a250f61a-040b-44e5-9faa-dbc04f0524cf}, !- Handle + Outpatient OR B - Story ground 1 HVAC On Infiltration, !- Name + {0caa2afb-6f8b-4d59-9e0a-8b254f9f3f37}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {0f55eed3-d1ed-45dc-b4ec-52f8529ff6ae}, !- Handle + Outpatient OR B - Story ground 1 HVAC Off Infiltration, !- Name + {0caa2afb-6f8b-4d59-9e0a-8b254f9f3f37}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {141917ce-e7f1-4350-ae6e-edc1746266b0}, !- Handle + Outpatient DressingRoom B - Story ground HVAC On Infiltration, !- Name + {15fff177-458d-4cfe-9df1-90f883a5655b}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {8faa5a9e-23f8-4055-af11-e03fc8bf7e5d}, !- Handle + Outpatient DressingRoom B - Story ground HVAC Off Infiltration, !- Name + {15fff177-458d-4cfe-9df1-90f883a5655b}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {4746046d-40ca-42bf-860a-980c41f02e9a}, !- Handle + Outpatient OR B - Story ground HVAC On Infiltration, !- Name + {9ece76bb-c078-48e7-ba59-3b3a21dcd732}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {47fdb0bc-5674-49f8-9a7f-3bb3cb6e8871}, !- Handle + Outpatient OR B - Story ground HVAC Off Infiltration, !- Name + {9ece76bb-c078-48e7-ba59-3b3a21dcd732}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {de207b0b-f2a8-43f5-a9a8-497d5ad71826}, !- Handle + Outpatient PhysicalTherapy B - Story ground HVAC On Infiltration, !- Name + {7aa26c07-5c82-497e-912e-f92ba7634ff2}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {0f1e9561-5c77-4d68-8708-710ce82559ed}, !- Handle + Outpatient PhysicalTherapy B - Story ground HVAC Off Infiltration, !- Name + {7aa26c07-5c82-497e-912e-f92ba7634ff2}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {cce18918-c9c2-415e-9b0c-9d884b1a6df3}, !- Handle + Outpatient Exam A end_a - Story ground HVAC On Infiltration, !- Name + {369e096c-d9ad-4605-8bfa-ca78020d3709}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {ac382796-47a7-48df-bcb0-7ea07d67fe61}, !- Handle + Outpatient Exam A end_a - Story ground HVAC Off Infiltration, !- Name + {369e096c-d9ad-4605-8bfa-ca78020d3709}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {a0610888-aec0-41bc-9af3-31bf84f6e4e8}, !- Handle + Outpatient IT_Room C - Story ground HVAC On Infiltration, !- Name + {5c7ef46a-1b4c-4361-bf02-ce5554b0b527}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {1e48f5b2-6aae-490a-802c-b04646a5f3cd}, !- Handle + Outpatient IT_Room C - Story ground HVAC Off Infiltration, !- Name + {5c7ef46a-1b4c-4361-bf02-ce5554b0b527}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {c83ddbe9-9f06-453a-b2b6-bca2ec605839}, !- Handle + Outpatient Elec/MechRoom C - Story ground HVAC On Infiltration, !- Name + {c9da4633-24be-4964-b2ae-651131d87847}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {ef996370-5ad4-41cc-b5e6-c85a40c21166}, !- Handle + Outpatient Elec/MechRoom C - Story ground HVAC Off Infiltration, !- Name + {c9da4633-24be-4964-b2ae-651131d87847}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {812de78a-9a3c-4cbf-b1a4-45b6c67dee5d}, !- Handle + Outpatient Reception C - Story ground HVAC On Infiltration, !- Name + {ea0bae05-4dc5-4cc7-882a-1ac9115b31f4}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {bb8ec8a6-a8d0-4e92-a7fc-23f77cd7b5d9}, !- Handle + Outpatient Reception C - Story ground HVAC Off Infiltration, !- Name + {ea0bae05-4dc5-4cc7-882a-1ac9115b31f4}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {64b9345a-a6ff-4c0e-8635-b877614389a6}, !- Handle + Outpatient OR C - Story ground HVAC On Infiltration, !- Name + {292bad91-aae1-43a1-9f88-b368e8ab0cbf}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {fc4a571a-6726-477d-91cd-18a82862a06f}, !- Handle + Outpatient OR C - Story ground HVAC Off Infiltration, !- Name + {292bad91-aae1-43a1-9f88-b368e8ab0cbf}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {25bd88fb-efc8-4416-9bac-9dbfbc431c26}, !- Handle + Outpatient DressingRoom C - Story ground HVAC On Infiltration, !- Name + {54e62949-4f1e-480b-be17-794fe9a7a448}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {681b5abd-464c-43a9-aa7a-75ec346f31fb}, !- Handle + Outpatient DressingRoom C - Story ground HVAC Off Infiltration, !- Name + {54e62949-4f1e-480b-be17-794fe9a7a448}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {6e5e6316-ca17-49a4-98fe-21d844994a4e}, !- Handle + Outpatient Office A - Story ground HVAC On Infiltration, !- Name + {0bd88152-87f9-4c16-b73d-8fcf0b786637}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {56f59630-11da-4dc4-b4c4-3d43ef621442}, !- Handle + Outpatient Office A - Story ground HVAC Off Infiltration, !- Name + {0bd88152-87f9-4c16-b73d-8fcf0b786637}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {5a459f42-2395-4df7-a519-b7471f37f7b5}, !- Handle + Outpatient Reception A - Story ground HVAC On Infiltration, !- Name + {bffb6823-ab11-4b1a-946c-0025c7c6aab7}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {e156218c-5ea4-41a2-bfad-570bc3569be1}, !- Handle + Outpatient Reception A - Story ground HVAC Off Infiltration, !- Name + {bffb6823-ab11-4b1a-946c-0025c7c6aab7}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {135b3608-3140-4dea-9c42-59f8a1b35f41}, !- Handle + Outpatient Reception B - Story ground HVAC On Infiltration, !- Name + {af095cd2-dcda-4c8d-9712-8d670528e498}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {93b155f5-afe5-4c68-9095-522f36595f24}, !- Handle + Outpatient Reception B - Story ground HVAC Off Infiltration, !- Name + {af095cd2-dcda-4c8d-9712-8d670528e498}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {ad220e85-9b08-481c-9358-6aee7ead3ee6}, !- Handle + Outpatient ProcedureRoom A - Story ground HVAC On Infiltration, !- Name + {b969ae5a-bb70-41f9-a4a3-addde4e71985}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {a1126e18-f24a-4f95-8149-160125266065}, !- Handle + Outpatient ProcedureRoom A - Story ground HVAC Off Infiltration, !- Name + {b969ae5a-bb70-41f9-a4a3-addde4e71985}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {6e23bc3a-ba07-4aa8-9062-9f94850213c4}, !- Handle + Outpatient ProcedureRoom B - Story ground HVAC On Infiltration, !- Name + {66c81ad7-de50-4ec9-914e-7ad94134ead9}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {2db82c40-fb02-49e9-b5d8-059711059c62}, !- Handle + Outpatient ProcedureRoom B - Story ground HVAC Off Infiltration, !- Name + {66c81ad7-de50-4ec9-914e-7ad94134ead9}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {e90f92c5-2848-4c47-b146-e2fde6eb91bc}, !- Handle + Outpatient Conference C - Story ground HVAC On Infiltration, !- Name + {eff276b1-a689-4a99-bfe5-610f40a01485}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {b8c4253b-362c-4384-a3f4-dd49159d63de}, !- Handle + Outpatient Conference C - Story ground HVAC Off Infiltration, !- Name + {eff276b1-a689-4a99-bfe5-610f40a01485}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {4ee63e3c-dcf4-4cff-a3a0-51dccdde8395}, !- Handle + Outpatient PhysicalTherapy A - Story ground HVAC On Infiltration, !- Name + {a1e43370-775b-40a6-8905-fbab7ae343c1}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {f96f0805-8263-47fb-a614-1a700b3312ef}, !- Handle + Outpatient PhysicalTherapy A - Story ground HVAC Off Infiltration, !- Name + {a1e43370-775b-40a6-8905-fbab7ae343c1}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {e1d0b98f-ee2e-48f5-adcf-adc255bda6cb}, !- Handle + Outpatient CleanWork C - Story ground HVAC On Infiltration, !- Name + {c96964fc-5a4c-4e22-8ce6-e681f05ff2d0}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {d4c8b5a5-b270-4e5f-acea-a6edccc442b4}, !- Handle + Outpatient CleanWork C - Story ground HVAC Off Infiltration, !- Name + {c96964fc-5a4c-4e22-8ce6-e681f05ff2d0}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {dd3ab391-2ca4-4092-bd4f-342dcbb0a2b3}, !- Handle + Outpatient BioHazard C - Story ground HVAC On Infiltration, !- Name + {8a8a5126-a31e-4178-ac83-c0cab3d30a56}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {19968031-8b83-448c-891a-f84912829854}, !- Handle + Outpatient BioHazard C - Story ground HVAC Off Infiltration, !- Name + {8a8a5126-a31e-4178-ac83-c0cab3d30a56}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {9bbf7dec-70dd-483d-a607-da8f99577ce0}, !- Handle + Outpatient MedGas B - Story ground HVAC On Infiltration, !- Name + {323ff0c3-47e6-415f-a852-647dd6823779}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {094af333-942f-4b34-97f1-f6fb07e9af09}, !- Handle + Outpatient MedGas B - Story ground HVAC Off Infiltration, !- Name + {323ff0c3-47e6-415f-a852-647dd6823779}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {0ccb4223-cf2c-4f3b-89b9-c2966aeaa750}, !- Handle + Outpatient Soil Work A - Story ground HVAC On Infiltration, !- Name + {0d0a619a-5354-469a-a62f-6495d01fc842}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {d987bd2d-7f3a-4b26-be06-1dd9a5abda79}, !- Handle + Outpatient Soil Work A - Story ground HVAC Off Infiltration, !- Name + {0d0a619a-5354-469a-a62f-6495d01fc842}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {55ba6276-ad20-46b1-9763-e45b3dbc4287}, !- Handle + Outpatient Xray B - Story ground HVAC On Infiltration, !- Name + {ce947ebc-632b-415a-9f3d-5afa42e13c62}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {885f04ae-5717-470f-8197-1e39e1eb8734}, !- Handle + Outpatient Xray B - Story ground HVAC Off Infiltration, !- Name + {ce947ebc-632b-415a-9f3d-5afa42e13c62}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {dafcb4b7-9ec2-4565-997d-13dd1fe6e322}, !- Handle + Outpatient MedGas A - Story ground HVAC On Infiltration, !- Name + {19a5f2dc-793b-41a7-a245-2a4dcd425dd6}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {3e8afba5-3fcb-4b88-9ffb-845b2d0f4b11}, !- Handle + Outpatient MedGas A - Story ground HVAC Off Infiltration, !- Name + {19a5f2dc-793b-41a7-a245-2a4dcd425dd6}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {10ef4417-1dbd-44c3-808b-3fab93a97973}, !- Handle + Outpatient Xray A - Story ground HVAC On Infiltration, !- Name + {2904ca6c-9c9d-4316-b2e1-957d7f0bb1fe}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {eb32f81e-f783-421a-b5b8-ceafd56107f0}, !- Handle + Outpatient Xray A - Story ground HVAC Off Infiltration, !- Name + {2904ca6c-9c9d-4316-b2e1-957d7f0bb1fe}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {e92131d5-d7f6-41eb-b2c8-178d2fa5e518}, !- Handle + Outpatient MedGas C - Story ground HVAC On Infiltration, !- Name + {d594fa46-1c78-462f-9652-b3025d136c84}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {e9994843-c50d-4e48-b27b-348ccc8ba4ee}, !- Handle + Outpatient MedGas C - Story ground HVAC Off Infiltration, !- Name + {d594fa46-1c78-462f-9652-b3025d136c84}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {761b1ec7-3287-49d5-9c8e-b39af14a4be2}, !- Handle + Outpatient MRI_Control B - Story ground HVAC On Infiltration, !- Name + {120e34a9-bdc7-41d1-b21a-c963ea875eac}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {7cd48378-1a1e-40e7-bf03-865a317e85c7}, !- Handle + Outpatient MRI_Control B - Story ground HVAC Off Infiltration, !- Name + {120e34a9-bdc7-41d1-b21a-c963ea875eac}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {caecdeb3-23cf-46fa-89b2-73638786b3d3}, !- Handle + Outpatient ElevatorPumpRoom A - Story ground HVAC On Infiltration, !- Name + {9ba9e63c-0f59-4690-a22a-fbb127fc72e9}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {626a8225-dc11-41f7-adad-b6552a611268}, !- Handle + Outpatient ElevatorPumpRoom A - Story ground HVAC Off Infiltration, !- Name + {9ba9e63c-0f59-4690-a22a-fbb127fc72e9}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {eaa20eb0-0f6f-4e19-b4b4-7927b5ab85e3}, !- Handle + Outpatient ElevatorPumpRoom B - Story ground HVAC On Infiltration, !- Name + {1e128f03-dd60-4501-9b62-3b6ab682587a}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {78a6c266-e6e2-44ca-9576-aac60ec27a6a}, !- Handle + Outpatient ElevatorPumpRoom B - Story ground HVAC Off Infiltration, !- Name + {1e128f03-dd60-4501-9b62-3b6ab682587a}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {7752cca9-b29a-4739-9b7a-d64d1fccc9d0}, !- Handle + Outpatient MRI A - Story ground HVAC On Infiltration, !- Name + {509df49a-3b55-4cd1-81c2-e89a73ffe4ee}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {6a8e2b4e-aebf-4c89-9e58-4f46903aa77d}, !- Handle + Outpatient MRI A - Story ground HVAC Off Infiltration, !- Name + {509df49a-3b55-4cd1-81c2-e89a73ffe4ee}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {c4f33f98-6dde-4a66-a86b-625b12f8919e}, !- Handle + Outpatient Anesthesia A - Story ground HVAC On Infiltration, !- Name + {cef0d458-31cf-40e4-881f-a6d9500e9f69}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {9dd12edd-8b6c-4d55-92be-1200b04b651a}, !- Handle + Outpatient Anesthesia A - Story ground HVAC Off Infiltration, !- Name + {cef0d458-31cf-40e4-881f-a6d9500e9f69}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {2f91d9eb-d4db-4213-8145-19841548d878}, !- Handle + Outpatient CleanWork B - Story ground HVAC On Infiltration, !- Name + {7c5f8d32-a2a6-49fd-921d-0efcf0f10a61}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {19c96775-2e1b-4173-8f00-5f717320a801}, !- Handle + Outpatient CleanWork B - Story ground HVAC Off Infiltration, !- Name + {7c5f8d32-a2a6-49fd-921d-0efcf0f10a61}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {073d0f54-8562-470c-8054-9c6e0b3319c2}, !- Handle + Outpatient Anesthesia B - Story ground HVAC On Infiltration, !- Name + {46e08511-1356-49b7-8830-fa5aa7d35d97}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {e1ec53a9-c522-47fc-b8ce-1090ce7e5782}, !- Handle + Outpatient Anesthesia B - Story ground HVAC Off Infiltration, !- Name + {46e08511-1356-49b7-8830-fa5aa7d35d97}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {a4d31899-394e-4812-bae9-b81681027701}, !- Handle + Outpatient Anesthesia C - Story ground HVAC On Infiltration, !- Name + {7488cd88-27e4-433d-a6fd-f24d09990045}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {5ca4cb59-8715-40e7-a000-cb6c7c68b59d}, !- Handle + Outpatient Anesthesia C - Story ground HVAC Off Infiltration, !- Name + {7488cd88-27e4-433d-a6fd-f24d09990045}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {fae4dc13-3adb-4f69-98a2-289d61d995d8}, !- Handle + Outpatient IT_Room A - Story ground HVAC On Infiltration, !- Name + {eb22845c-7b50-4b03-856c-0f87b80dab69}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {18927263-dd54-468f-b84c-9737d1edc704}, !- Handle + Outpatient IT_Room A - Story ground HVAC Off Infiltration, !- Name + {eb22845c-7b50-4b03-856c-0f87b80dab69}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {e3e6cc6c-04a4-4ef4-ac53-3bd6882d16ac}, !- Handle + Outpatient LockerRoom A - Story ground HVAC On Infiltration, !- Name + {a3cca4ed-380e-434b-93d2-1ea31beea562}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {ff5c147d-3513-4abd-beca-59db579e00f7}, !- Handle + Outpatient LockerRoom A - Story ground HVAC Off Infiltration, !- Name + {a3cca4ed-380e-434b-93d2-1ea31beea562}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {fc326b51-5f83-4aac-880c-b56b613442b9}, !- Handle + Outpatient Lobby B - Story ground HVAC On Infiltration, !- Name + {719f24d0-9546-4147-bd02-4973e1da1b1b}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {81a68553-fbba-4831-b984-c2df3eeffb1e}, !- Handle + Outpatient Lobby B - Story ground HVAC Off Infiltration, !- Name + {719f24d0-9546-4147-bd02-4973e1da1b1b}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {3dea9abc-96e0-462c-9f81-bddff5173d36}, !- Handle + Outpatient IT_Room B - Story ground HVAC On Infiltration, !- Name + {29c23f7d-72bb-4eff-9a03-2c9a111de621}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {2e51f86c-db6b-442b-99dc-41344d85a732}, !- Handle + Outpatient IT_Room B - Story ground HVAC Off Infiltration, !- Name + {29c23f7d-72bb-4eff-9a03-2c9a111de621}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {7e3f69d3-f720-4257-9133-42e4f8f71c6d}, !- Handle + Outpatient OR C - Story ground 1 HVAC On Infiltration, !- Name + {f4424d26-f266-48dc-9493-a886e9476552}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {9ff2457a-a084-4cb3-8f9b-5b15055f0a6d}, !- Handle + Outpatient OR C - Story ground 1 HVAC Off Infiltration, !- Name + {f4424d26-f266-48dc-9493-a886e9476552}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {329d7ce7-f2ec-496e-af36-8c528fe30b3a}, !- Handle + Outpatient MRI_Control A - Story ground HVAC On Infiltration, !- Name + {c7648a74-5baf-440c-af48-fd3141f0ab39}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {e1ab07bd-92b6-4391-91d1-1f90690a9b88}, !- Handle + Outpatient MRI_Control A - Story ground HVAC Off Infiltration, !- Name + {c7648a74-5baf-440c-af48-fd3141f0ab39}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {b8998a91-75ab-4731-ba1a-82472da7a937}, !- Handle + Outpatient MRI_Control C - Story ground HVAC On Infiltration, !- Name + {9600e904-9c18-4a38-99c4-680b8463eccd}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {ec09b238-cdcc-43e7-9024-3881cd750dc2}, !- Handle + Outpatient MRI_Control C - Story ground HVAC Off Infiltration, !- Name + {9600e904-9c18-4a38-99c4-680b8463eccd}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {790b0435-77c3-4f1c-9076-08efce2c1d82}, !- Handle + Outpatient ProcedureRoom C - Story ground HVAC On Infiltration, !- Name + {9cc89a59-b3d4-4451-ba43-112b1c3f95d0}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {384cf136-ec9b-4d3b-9a25-b6b1c91efcca}, !- Handle + Outpatient ProcedureRoom C - Story ground HVAC Off Infiltration, !- Name + {9cc89a59-b3d4-4451-ba43-112b1c3f95d0}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {124e662f-76e5-4015-b050-2ebee7d55120}, !- Handle + Outpatient Conference B - Story ground HVAC On Infiltration, !- Name + {8d397a8b-fdcb-4d0a-bd5c-e4ad54a26e05}, !- Space or SpaceType Name + {247fab00-173d-4903-8185-3c78cd84c319}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + -0.0461, !- Constant Term Coefficient + 0.0053, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0311; !- Velocity Squared Term Coefficient + +OS:SpaceInfiltration:DesignFlowRate, + {daf96ca5-598b-4860-b594-8f42b60a8a0a}, !- Handle + Outpatient Conference B - Story ground HVAC Off Infiltration, !- Name + {8d397a8b-fdcb-4d0a-bd5c-e4ad54a26e05}, !- Space or SpaceType Name + {0330b54e-339d-42b5-8b0a-5b7d9a402be0}, !- Schedule Name + Flow/ExteriorArea, !- Design Flow Rate Calculation Method + , !- Design Flow Rate {m3/s} + , !- Flow per Space Floor Area {m3/s-m2} + 0.00123984651921478, !- Flow per Exterior Surface Area {m3/s-m2} + , !- Air Changes per Hour {1/hr} + 0, !- Constant Term Coefficient + 0.0174, !- Temperature Term Coefficient + 0, !- Velocity Term Coefficient + 0.0341; !- Velocity Squared Term Coefficient +