From 2fa684180567e650f06385e6b4fe2063c18a3bdf Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Tue, 16 Apr 2024 10:37:36 +0200 Subject: [PATCH 01/22] Fix #5147 - Adjust templates * make it clear that if you use runner.lastEnergyPlusSQLFile you need to reopen it potentially * Use a chdir context --- .../tests/energyplus_measure_test.rb | 3 +- .../ModelMeasure/tests/model_measure_test.rb | 5 +- .../tests/reporting_measure_test.rb | 57 +++++++++++-------- .../tests/test_reporting_measure.py | 37 +++++++----- 4 files changed, 62 insertions(+), 40 deletions(-) diff --git a/src/utilities/bcl/templates/EnergyPlusMeasure/tests/energyplus_measure_test.rb b/src/utilities/bcl/templates/EnergyPlusMeasure/tests/energyplus_measure_test.rb index b486a8bc82b..92144342d0d 100644 --- a/src/utilities/bcl/templates/EnergyPlusMeasure/tests/energyplus_measure_test.rb +++ b/src/utilities/bcl/templates/EnergyPlusMeasure/tests/energyplus_measure_test.rb @@ -3,9 +3,10 @@ require 'openstudio' require 'openstudio/measure/ShowRunnerOutput' require 'minitest/autorun' -require_relative '../measure.rb' require 'fileutils' +require_relative '../measure' + class EnergyPlusMeasureNameTest < Minitest::Test # def setup # end diff --git a/src/utilities/bcl/templates/ModelMeasure/tests/model_measure_test.rb b/src/utilities/bcl/templates/ModelMeasure/tests/model_measure_test.rb index 101f8dcb5ea..e1713f86c2e 100644 --- a/src/utilities/bcl/templates/ModelMeasure/tests/model_measure_test.rb +++ b/src/utilities/bcl/templates/ModelMeasure/tests/model_measure_test.rb @@ -3,9 +3,10 @@ require 'openstudio' require 'openstudio/measure/ShowRunnerOutput' require 'minitest/autorun' -require_relative '../measure.rb' require 'fileutils' +require_relative '../measure' + class ModelMeasureNameTest < Minitest::Test # def setup # end @@ -118,7 +119,7 @@ def test_good_argument_values assert_equal(1, model.getSpaces.size - num_spaces_seed) # save the model to test output directory - output_file_path = "#{File.dirname(__FILE__)}//output/test_output.osm" + output_file_path = "#{File.dirname(__FILE__)}/output/test_output.osm" model.save(output_file_path, true) end end diff --git a/src/utilities/bcl/templates/ReportingMeasure/tests/reporting_measure_test.rb b/src/utilities/bcl/templates/ReportingMeasure/tests/reporting_measure_test.rb index be337bd414d..63b9f2c1eec 100644 --- a/src/utilities/bcl/templates/ReportingMeasure/tests/reporting_measure_test.rb +++ b/src/utilities/bcl/templates/ReportingMeasure/tests/reporting_measure_test.rb @@ -3,9 +3,10 @@ require 'openstudio' require 'openstudio/measure/ShowRunnerOutput' require 'minitest/autorun' -require_relative '../measure.rb' require 'fileutils' +require_relative '../measure' + class ReportingMeasureNameTest < Minitest::Test def model_in_path_default return "#{File.dirname(__FILE__)}/example_model.osm" @@ -142,20 +143,23 @@ def test_with_drybulb_temp assert(!File.exist?(report_path(test_name))) # temporarily change directory to the run directory and run the measure - start_dir = Dir.pwd - begin - Dir.chdir(run_dir(test_name)) - - # run the measure + Dir.chdir(run_dir(test_name)) do measure.run(runner, argument_map) - result = runner.result - show_output(result) - assert_equal('Success', result.value.valueName) - assert(result.warnings.empty?) - ensure - Dir.chdir(start_dir) end + result = runner.result + show_output(result) + assert_equal('Success', result.value.valueName) + assert(result.warnings.empty?) + + sqlFile = runner.lastEnergyPlusSqlFile.get + if !sqlFile.connectionOpen + sqlFile.reopen + end + hours = sqlFile.hoursSimulated + refute_empty(hours) + assert_equal(8760.0, hours.get) + # make sure the report file exists assert(File.exist?(report_path(test_name))) end @@ -189,7 +193,8 @@ def test_without_drybulb_temp idf_output_requests = measure.energyPlusOutputRequests(runner, argument_map) assert_equal(0, idf_output_requests.size) - # mimic the process of running this measure in OS App or PAT. Optionally set custom model_in_path and custom epw_path. + # mimic the process of running this measure in OS App or PAT. + # Optionally set custom model_in_path and custom epw_path. epw_path = epw_path_default setup_test(test_name, idf_output_requests) @@ -209,20 +214,24 @@ def test_without_drybulb_temp assert(!File.exist?(report_path(test_name))) # temporarily change directory to the run directory and run the measure - start_dir = Dir.pwd - begin - Dir.chdir(run_dir(test_name)) - - # run the measure + Dir.chdir(run_dir(test_name)) do measure.run(runner, argument_map) - result = runner.result - show_output(result) - assert_equal('Success', result.value.valueName) - assert(result.warnings.empty?) - ensure - Dir.chdir(start_dir) end + result = runner.result + show_output(result) + assert_equal('Success', result.value.valueName) + assert(result.warnings.empty?) + + # sqlFile = OpenStudio::SqlFile.new(OpenStudio::Path.new(sql_path(test_name))) + sqlFile = runner.lastEnergyPlusSqlFile.get + if !sqlFile.connectionOpen + sqlFile.reopen + end + hours = sqlFile.hoursSimulated + refute_empty(hours) + assert_equal(8760.0, hours.get) + # make sure the report file exists assert(File.exist?(report_path(test_name))) end diff --git a/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py b/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py index 1cde9d9ed0c..ddea7702251 100644 --- a/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py +++ b/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py @@ -6,7 +6,6 @@ import openstudio import pytest - from measure import ReportingMeasureName CURRENT_DIR_PATH = Path(__file__).parent.absolute() @@ -151,18 +150,24 @@ def test_with_drybulb_temp(self): # temporarily change directory to the run directory and run the measure start_dir = Path.cwd() - # try: os.chdir(TestReportingMeasureName.run_dir(test_name)) + try: + # run the measure + measure.run(runner, argument_map) + finally: + os.chdir(start_dir) - # run the measure - measure.run(runner, argument_map) result = runner.result() print(result) assert result.value().valueName() == "Success" assert len(result.warnings()) == 0 - os.chdir(start_dir) - # except: - # os.chdir(start_dir) + + sqlFile = runner.lastEnergyPlusSqlFile().get() + if not sqlFile.connectionOpen(): + sqlFile.reopen() + hours = sqlFile.hoursSimulated() + assert hours.is_initialized() + assert hours.get() == 8760.0 # make sure the report file exists assert report_path.exists() @@ -220,18 +225,24 @@ def test_without_drybulb_temp(self): # temporarily change directory to the run directory and run the measure start_dir = Path.cwd() - # try: os.chdir(TestReportingMeasureName.run_dir(test_name)) + try: + # run the measure + measure.run(runner, argument_map) + finally: + os.chdir(start_dir) - # run the measure - measure.run(runner, argument_map) result = runner.result() print(result) assert result.value().valueName() == "Success" assert len(result.warnings()) == 0 - os.chdir(start_dir) - # except: - # os.chdir(start_dir) + + sqlFile = runner.lastEnergyPlusSqlFile().get() + if not sqlFile.connectionOpen(): + sqlFile.reopen() + hours = sqlFile.hoursSimulated() + assert hours.is_initialized() + assert hours.get() == 8760.0 # make sure the report file exists assert report_path.exists() From 49eeb17d9cbece269f5f39604435d10b1e590ae8 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Tue, 16 Apr 2024 11:06:55 +0200 Subject: [PATCH 02/22] Modernize templates: use specific Minitest assertions, use non-deprecated functions to get warnings/errors (stepWarnings, not warnings) --- .../tests/energyplus_measure_test.rb | 2 +- .../ModelMeasure/tests/model_measure_test.rb | 22 ++++++++++--- .../ModelMeasure/tests/test_model_measure.py | 16 +++++++--- .../tests/reporting_measure_test.rb | 32 +++++++++---------- .../tests/test_reporting_measure.py | 4 +-- 5 files changed, 48 insertions(+), 28 deletions(-) diff --git a/src/utilities/bcl/templates/EnergyPlusMeasure/tests/energyplus_measure_test.rb b/src/utilities/bcl/templates/EnergyPlusMeasure/tests/energyplus_measure_test.rb index 92144342d0d..d6faf82640d 100644 --- a/src/utilities/bcl/templates/EnergyPlusMeasure/tests/energyplus_measure_test.rb +++ b/src/utilities/bcl/templates/EnergyPlusMeasure/tests/energyplus_measure_test.rb @@ -93,7 +93,7 @@ def test_good_argument_values # check that zone is properly named zone = workspace.getObjectsByType('Zone'.to_IddObjectType)[0] - assert(!zone.getString(0).empty?) + refute_empty(zone.getString(0)) assert_equal('New Zone', zone.getString(0).get) # save the workspace to output directory diff --git a/src/utilities/bcl/templates/ModelMeasure/tests/model_measure_test.rb b/src/utilities/bcl/templates/ModelMeasure/tests/model_measure_test.rb index e1713f86c2e..9c1b9be5b29 100644 --- a/src/utilities/bcl/templates/ModelMeasure/tests/model_measure_test.rb +++ b/src/utilities/bcl/templates/ModelMeasure/tests/model_measure_test.rb @@ -62,8 +62,10 @@ def test_bad_argument_values # show the output show_output(result) - # assert that it ran correctly + # assert that it did fail assert_equal('Fail', result.value.valueName) + assert_equal(1, result.stepErrors.size) + assert_match(/empty space name/i, result.stepErrors.first) end def test_good_argument_values @@ -78,7 +80,7 @@ def test_good_argument_values translator = OpenStudio::OSVersion::VersionTranslator.new path = "#{File.dirname(__FILE__)}/example_model.osm" model = translator.loadModel(path) - assert(!model.empty?) + refute_empty(model) model = model.get # store the number of spaces in the seed model @@ -103,6 +105,9 @@ def test_good_argument_values argument_map[arg.name] = temp_arg_var end + # Ensure the model did not start with a space named like requested + refute_includes(model.getSpaces.map(&:nameString), "New Space") + # run the measure measure.run(model, runner, argument_map) result = runner.result @@ -112,11 +117,18 @@ def test_good_argument_values # assert that it ran correctly assert_equal('Success', result.value.valueName) - assert(result.info.size == 1) - assert(result.warnings.empty?) + assert_equal(1, result.stepInfo.size) + assert_empty(result.stepWarnings) - # check that there is now 1 space + # check that there is now 1 extra space assert_equal(1, model.getSpaces.size - num_spaces_seed) + assert_includes(model.getSpaces.map(&:nameString), "New Space") + + refute_empty(result.stepInitialCondition) + assert_equal('The building started with 4 spaces.', result.stepInitialCondition.get) + + refute_empty(result.stepFinalCondition) + assert_equal('The building finished with 5 spaces.', result.stepFinalCondition.get) # save the model to test output directory output_file_path = "#{File.dirname(__FILE__)}/output/test_output.osm" diff --git a/src/utilities/bcl/templates/ModelMeasure/tests/test_model_measure.py b/src/utilities/bcl/templates/ModelMeasure/tests/test_model_measure.py index 5921eb0dd90..7d2bf5745f1 100644 --- a/src/utilities/bcl/templates/ModelMeasure/tests/test_model_measure.py +++ b/src/utilities/bcl/templates/ModelMeasure/tests/test_model_measure.py @@ -104,6 +104,9 @@ def test_good_argument_values(self): assert temp_arg_var.setValue(args_dict[arg.name()]) argument_map[arg.name()] = temp_arg_var + # Ensure the model did not start with a space named like requested + assert "New Space" not in [s.nameString() for s in model.getSpaces()] + # run the measure measure.run(model, runner, argument_map) result = runner.result() @@ -114,14 +117,19 @@ def test_good_argument_values(self): # assert that it ran correctly assert result.value().valueName() == "Success" - assert len(result.info()) == 1 - assert len(result.warnings()) == 0 - - assert result.info()[0].logMessage() == "Space New Space was added." + assert len(result.stepWarnings()) == 0 + assert len(result.stepInfo()) == 1 + assert result.stepInfo()[0] == "Space New Space was added." # check that there is now 1 more space num_spaces_final = len(model.getSpaces()) assert num_spaces_final == num_spaces_seed + 1 + assert "New Space" in [s.nameString() for s in model.getSpaces()] + assert result.stepInitialCondition() + assert result.stepInitialCondition().get() == 'The building started with 4 spaces.' + + assert result.stepFinalCondition() + assert result.stepFinalCondition().get() == 'The building finished with 5 spaces.' # save the model to test output directory output_file_path = Path(__file__).parent.absolute() / "output" / "test_output.osm" diff --git a/src/utilities/bcl/templates/ReportingMeasure/tests/reporting_measure_test.rb b/src/utilities/bcl/templates/ReportingMeasure/tests/reporting_measure_test.rb index 63b9f2c1eec..15e35d7e562 100644 --- a/src/utilities/bcl/templates/ReportingMeasure/tests/reporting_measure_test.rb +++ b/src/utilities/bcl/templates/ReportingMeasure/tests/reporting_measure_test.rb @@ -15,7 +15,7 @@ def model_in_path_default def epw_path_default # make sure we have a weather data location epw = File.expand_path("#{File.dirname(__FILE__)}/USA_CO_Golden-NREL.724666_TMY3.epw") - assert(File.exist?(epw.to_s)) + assert_path_exists(epw.to_s) return epw.to_s end @@ -41,13 +41,13 @@ def setup_test(test_name, idf_output_requests, model_in_path = model_in_path_def if !File.exist?(run_dir(test_name)) FileUtils.mkdir_p(run_dir(test_name)) end - assert(File.exist?(run_dir(test_name))) + assert_path_exists(run_dir(test_name)) if File.exist?(report_path(test_name)) FileUtils.rm(report_path(test_name)) end - assert(File.exist?(model_in_path)) + assert_path_exists(model_in_path) if File.exist?(model_out_path(test_name)) FileUtils.rm(model_out_path(test_name)) @@ -61,7 +61,7 @@ def setup_test(test_name, idf_output_requests, model_in_path = model_in_path_def translator = OpenStudio::OSVersion::VersionTranslator.new model = translator.loadModel(model_in_path) - assert(!model.empty?) + refute_empty(model) model = model.get model.addObjects(request_model.objects) model.save(model_out_path(test_name), true) @@ -127,9 +127,9 @@ def test_with_drybulb_temp epw_path = epw_path_default setup_test(test_name, idf_output_requests) - assert(File.exist?(model_out_path(test_name))) - assert(File.exist?(sql_path(test_name))) - assert(File.exist?(epw_path)) + assert_path_exists(model_out_path(test_name)) + assert_path_exists(sql_path(test_name)) + assert_path_exists(epw_path) # set up runner, this will happen automatically when measure is run in PAT or OpenStudio runner.setLastOpenStudioModelPath(model_out_path(test_name)) @@ -140,7 +140,7 @@ def test_with_drybulb_temp if File.exist?(report_path(test_name)) FileUtils.rm(report_path(test_name)) end - assert(!File.exist?(report_path(test_name))) + refute_path_exists(report_path(test_name)) # temporarily change directory to the run directory and run the measure Dir.chdir(run_dir(test_name)) do @@ -150,7 +150,7 @@ def test_with_drybulb_temp result = runner.result show_output(result) assert_equal('Success', result.value.valueName) - assert(result.warnings.empty?) + assert_empty(result.stepWarnings) sqlFile = runner.lastEnergyPlusSqlFile.get if !sqlFile.connectionOpen @@ -161,7 +161,7 @@ def test_with_drybulb_temp assert_equal(8760.0, hours.get) # make sure the report file exists - assert(File.exist?(report_path(test_name))) + assert_path_exists(report_path(test_name)) end def test_without_drybulb_temp @@ -198,9 +198,9 @@ def test_without_drybulb_temp epw_path = epw_path_default setup_test(test_name, idf_output_requests) - assert(File.exist?(model_out_path(test_name))) - assert(File.exist?(sql_path(test_name))) - assert(File.exist?(epw_path)) + assert_path_exists(model_out_path(test_name)) + assert_path_exists(sql_path(test_name)) + assert_path_exists(epw_path) # set up runner, this will happen automatically when measure is run in PAT or OpenStudio runner.setLastOpenStudioModelPath(model_out_path(test_name)) @@ -211,7 +211,7 @@ def test_without_drybulb_temp if File.exist?(report_path(test_name)) FileUtils.rm(report_path(test_name)) end - assert(!File.exist?(report_path(test_name))) + refute_path_exists(report_path(test_name)) # temporarily change directory to the run directory and run the measure Dir.chdir(run_dir(test_name)) do @@ -221,7 +221,7 @@ def test_without_drybulb_temp result = runner.result show_output(result) assert_equal('Success', result.value.valueName) - assert(result.warnings.empty?) + assert_empty(result.stepWarnings) # sqlFile = OpenStudio::SqlFile.new(OpenStudio::Path.new(sql_path(test_name))) sqlFile = runner.lastEnergyPlusSqlFile.get @@ -233,7 +233,7 @@ def test_without_drybulb_temp assert_equal(8760.0, hours.get) # make sure the report file exists - assert(File.exist?(report_path(test_name))) + assert_path_exists(report_path(test_name)) end end diff --git a/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py b/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py index ddea7702251..3a5edd48406 100644 --- a/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py +++ b/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py @@ -160,7 +160,7 @@ def test_with_drybulb_temp(self): result = runner.result() print(result) assert result.value().valueName() == "Success" - assert len(result.warnings()) == 0 + assert len(result.stepWarnings()) == 0 sqlFile = runner.lastEnergyPlusSqlFile().get() if not sqlFile.connectionOpen(): @@ -235,7 +235,7 @@ def test_without_drybulb_temp(self): result = runner.result() print(result) assert result.value().valueName() == "Success" - assert len(result.warnings()) == 0 + assert len(result.stepWarnings()) == 0 sqlFile = runner.lastEnergyPlusSqlFile().get() if not sqlFile.connectionOpen(): From f09ba0247100aaad09bc5950047fdebb12c3f51e Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Tue, 16 Apr 2024 12:41:26 +0200 Subject: [PATCH 03/22] Reject __pycache__ in BCLMeasure files (where you run pytest manually) + upgrade openstudio measure --examples --- src/cli/MeasureUpdateCommand.cpp | 12 ++++++------ src/utilities/bcl/BCLMeasure.cpp | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/cli/MeasureUpdateCommand.cpp b/src/cli/MeasureUpdateCommand.cpp index 8d84d79cf6e..457964d1bb2 100644 --- a/src/cli/MeasureUpdateCommand.cpp +++ b/src/cli/MeasureUpdateCommand.cpp @@ -176,22 +176,22 @@ namespace cli { 1. Create a Ruby ModelMeasure: ``` -$ openstudio labs measure new --class-name MyExampleRubyModelMeasure -$ openstudio labs measure new --class-name MyExampleRubyModelMeasure --type ModelMeasure --language Ruby +$ openstudio measure new --class-name MyExampleRubyModelMeasure +$ openstudio measure new --class-name MyExampleRubyModelMeasure --type ModelMeasure --language Ruby ``` 2. Pass all optional args to create a Python EnergyPlusMeasure: ``` -$ openstudio labs measure new --class-name MyExamplePythonMeasure --type EnergyPlusMeasure --language Python --name "My Python Measure" --description "This is my measure" --modeler-description "This does complicated stuff" --taxonomy-tag "Envelope.Form" ./test_measure +$ openstudio measure new --class-name MyExamplePythonMeasure --type EnergyPlusMeasure --language Python --name "My Python Measure" --description "This is my measure" --modeler-description "This does complicated stuff" --taxonomy-tag "Envelope.Form" ./test_measure -$ openstudio labs measure new -c MyExamplePythonMeasure -t EnergyPlusMeasure -l Python -n "My Python Measure" -d "This is my measure" -m "This does complicated stuff" --taxonomy-tag "Envelope.Form" ./test_measure +$ openstudio measure new -c MyExamplePythonMeasure -t EnergyPlusMeasure -l Python -n "My Python Measure" -d "This is my measure" -m "This does complicated stuff" --taxonomy-tag "Envelope.Form" ./test_measure ``` 3. List taxonomy tags ``` -$ openstudio labs measure new --list-taxonomy-tags -$ openstudio labs measure new --list-for-first-taxonomy-tag HVAC +$ openstudio measure new --list-taxonomy-tags +$ openstudio measure new --list-for-first-taxonomy-tag HVAC ``` )"; newMeasureSubCommand->set_help_flag("-h,--help", "Print this help message and exit")->group(helpOptionsGroupName); diff --git a/src/utilities/bcl/BCLMeasure.cpp b/src/utilities/bcl/BCLMeasure.cpp index 48d342185d7..e968c609d6e 100644 --- a/src/utilities/bcl/BCLMeasure.cpp +++ b/src/utilities/bcl/BCLMeasure.cpp @@ -59,7 +59,7 @@ static constexpr std::array, 3> ap {"resources", "resource"}, }}; -static constexpr std::array ignoredSubFolders{"tests/output"}; +static constexpr std::array ignoredSubFolders{"tests/output", "__pycache__", "tests/__pycache__"}; // TODO: do we want to keep ignoring the docs/ directory? static constexpr std::array usageTypesIgnoredOnClone{"doc"}; From 40f2077fd64ba3bb7e7a09ba36fd87abed61c017 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Tue, 16 Apr 2024 12:46:53 +0200 Subject: [PATCH 04/22] Update the Measure templates example_model.osm to be 3.7.0 It's painfully slow to have to translate it from 1.13.0 to 3.7.0 everytime. Maybe we could consider using 3.2.0 or something like that, but there's no point keeping it so old --- .../ModelMeasure/tests/example_model.osm | 10282 ++++------------ .../ReportingMeasure/tests/example_model.osm | 1891 ++- 2 files changed, 3641 insertions(+), 8532 deletions(-) diff --git a/src/utilities/bcl/templates/ModelMeasure/tests/example_model.osm b/src/utilities/bcl/templates/ModelMeasure/tests/example_model.osm index 0bd6b18d6ea..72362ae7f66 100644 --- a/src/utilities/bcl/templates/ModelMeasure/tests/example_model.osm +++ b/src/utilities/bcl/templates/ModelMeasure/tests/example_model.osm @@ -1,542 +1,559 @@ OS:Version, - {f19c731b-418b-4769-bbe8-2634b34ddb76}, !- Handle - 1.13.0; !- Version Identifier + {2cd9d51d-3efd-48c2-a440-92df3a988d55}, !- Handle + 3.7.0; !- Version Identifier -OS:SpaceType, - {d83c9d8c-b4ea-4352-92bc-43a5e8551039}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3, !- Name - , !- Default Construction Set Name - {3f64b7db-745b-40b0-bb02-6ec871a396ef}, !- Default Schedule Set Name - {d1e86687-6885-4070-81da-3a576f17ff5c}, !- Group Rendering Name - {67f2822d-9200-410d-bad4-ca1adb4cbb77}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - BreakRoom; !- Standards Space Type - -OS:Rendering:Color, - {d1e86687-6885-4070-81da-3a576f17ff5c}, !- Handle - Rendering Color 1, !- Name - 230, !- Rendering Red Value - 157, !- Rendering Green Value - 120; !- Rendering Blue Value +OS:SimulationControl, + {47923a4b-90b4-4bca-aa34-ce084cf67c0b}, !- Handle + Yes, !- Do Zone Sizing Calculation + Yes, !- Do System Sizing Calculation + , !- Do Plant Sizing Calculation + No, !- Run Simulation for Sizing Periods + Yes; !- Run Simulation for Weather File Run Periods -OS:DefaultScheduleSet, - {3f64b7db-745b-40b0-bb02-6ec871a396ef}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name +OS:Timestep, + {1564adc4-ce1e-4a9a-9b81-8b7ff61ba1da}, !- Handle + 6; !- Number of Timesteps per Hour -OS:Lights:Definition, - {2be0344f-10c3-4095-86fd-81db27963ad5}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 11.6250232500465, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} +OS:RunPeriod, + {0796753b-693b-4aaf-8e2f-9d0aa25c9f0e}, !- Handle + Run Period 1, !- Name + 1, !- Begin Month + 1, !- Begin Day of Month + 12, !- End Month + 31, !- End Day of Month + No, !- Use Weather File Holidays and Special Days + No, !- Use Weather File Daylight Saving Period + No, !- Apply Weekend Holiday Rule + Yes, !- Use Weather File Rain Indicators + Yes, !- Use Weather File Snow Indicators + 1; !- Number of Times Runperiod to be Repeated -OS:Lights, - {8d653251-85b6-4f77-81d6-0d1ce4ea7ee7}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 Lights, !- Name - {2be0344f-10c3-4095-86fd-81db27963ad5}, !- Lights Definition Name - {d83c9d8c-b4ea-4352-92bc-43a5e8551039}; !- Space or SpaceType Name +OS:SurfaceConvectionAlgorithm:Inside, + {fed0e2df-02c0-492d-8ae6-553c29064932}, !- Handle + TARP; !- Algorithm -OS:Schedule:Ruleset, - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, ! Handle - Office Bldg Light, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - {f4b4f1e1-6a43-44bd-a8f2-a74c513199be}, ! Default Day Schedule Name - {c390a85c-d5e7-4c2d-8853-58583d31d4e3}, ! Summer Design Day Schedule Name - {dd4723de-ece6-49f1-b48c-4ca52d8c8360}; ! Winter Design Day Schedule Name +OS:SurfaceConvectionAlgorithm:Outside, + {d21eb9b2-f7f0-41cc-a863-007d31ed7ef8}, !- Handle + DOE-2; !- Algorithm -OS:ScheduleTypeLimits, - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Handle - Fraction, ! Name - 0, ! Lower Limit Value - 1, ! Upper Limit Value - CONTINUOUS; ! Numeric Type +OS:HeatBalanceAlgorithm, + {f5468ebc-0d3f-4b97-b48b-7181c1ef2bd2}, !- Handle + ConductionTransferFunction, !- Algorithm + 200; !- Surface Temperature Upper Limit {C} -OS:Schedule:Day, - {f4b4f1e1-6a43-44bd-a8f2-a74c513199be}, ! Handle - Office Bldg Light Default Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 5, !- Hour 1 - 0, !- Minute 1 - 0.05, !- Value Until Time 1 - 7, !- Hour 2 - 0, !- Minute 2 - 0.1, !- Value Until Time 2 - 8, !- Hour 3 - 0, !- Minute 3 - 0.3, !- Value Until Time 3 - 17, !- Hour 4 - 0, !- Minute 4 - 0.9, !- Value Until Time 4 - 18, !- Hour 5 - 0, !- Minute 5 - 0.7, !- Value Until Time 5 - 20, !- Hour 6 - 0, !- Minute 6 - 0.5, !- Value Until Time 6 - 22, !- Hour 7 - 0, !- Minute 7 - 0.3, !- Value Until Time 7 - 23, !- Hour 8 - 0, !- Minute 8 - 0.1, !- Value Until Time 8 - 24, !- Hour 9 - 0, !- Minute 9 - 0.05; !- Value Until Time 9 +OS:ZoneAirHeatBalanceAlgorithm, + {353af611-2559-4823-b158-df7f369dec14}, !- Handle + , !- Algorithm + , !- Do Space Heat Balance for Sizing + ; !- Do Space Heat Balance for Simulation -OS:Schedule:Day, - {c390a85c-d5e7-4c2d-8853-58583d31d4e3}, ! Handle - Office Bldg Light Summer Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 +OS:ConvergenceLimits, + {067855ac-72fb-49e6-9d97-668afd08281d}, !- Handle + 1; !- Minimum System Timestep {minutes} -OS:Schedule:Day, - {dd4723de-ece6-49f1-b48c-4ca52d8c8360}, ! Handle - Office Bldg Light Winter Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 +OS:ShadowCalculation, + {7c636f73-299c-464b-9176-d1f33a2d5b17}, !- 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:Schedule:Rule, - {101bb6fc-d0fc-4dd5-b953-30be7362193e}, ! Handle - Office Bldg Light Rule 1, ! Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, ! Schedule Ruleset Name - 0, ! Rule Order - {cab9d70e-56fd-4a11-b93a-30526ba080c7}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day +OS:Site, + {13c1b990-04f8-4bb0-9eb7-1823c17498e5}, !- Handle + Site 1, !- Name + 41.77, !- Latitude {deg} + -87.75, !- Longitude {deg} + -6, !- Time Zone {hr} + 190, !- Elevation {m} + ; !- Terrain -OS:Schedule:Day, - {cab9d70e-56fd-4a11-b93a-30526ba080c7}, ! Handle - Office Bldg Light Rule 1 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0.050000000000000003; ! Value Until Time 1 +OS:Site:GroundTemperature:BuildingSurface, + {1b2edf52-9e06-4f2c-818b-9c8edd58d5e8}, !- Handle + 19.527, !- January Ground Temperature {C} + 19.502, !- February Ground Temperature {C} + 19.536, !- March Ground Temperature {C} + 19.598, !- April Ground Temperature {C} + 20.002, !- May Ground Temperature {C} + 21.64, !- June Ground Temperature {C} + 22.225, !- July Ground Temperature {C} + 22.375, !- August Ground Temperature {C} + 21.449, !- September Ground Temperature {C} + 20.121, !- October Ground Temperature {C} + 19.802, !- November Ground Temperature {C} + 19.633; !- December Ground Temperature {C} + +OS:Site:GroundTemperature:Deep, + {50e167db-ef64-4324-8a3f-be0c9c32e7fa}, !- Handle + 19.527, !- January Deep Ground Temperature {C} + 19.502, !- February Deep Ground Temperature {C} + 19.536, !- March Deep Ground Temperature {C} + 19.598, !- April Deep Ground Temperature {C} + 20.002, !- May Deep Ground Temperature {C} + 21.64, !- June Deep Ground Temperature {C} + 22.225, !- July Deep Ground Temperature {C} + 22.375, !- August Deep Ground Temperature {C} + 21.449, !- September Deep Ground Temperature {C} + 20.121, !- October Deep Ground Temperature {C} + 19.802, !- November Deep Ground Temperature {C} + 19.633; !- December Deep Ground Temperature {C} + +OS:Site:WaterMainsTemperature, + {57f07e49-75af-40da-afaa-ad410282902a}, !- Handle + Correlation, !- Calculation Method + , !- Temperature Schedule Name + 9.69, !- Annual Average Outdoor Air Temperature {C} + 28.1; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} + +OS:SizingPeriod:DesignDay, + {7eca8769-b987-48a9-8042-7501feaca0e4}, !- Handle + Sizing Period Design Day 1, !- Name + -20.6, !- Maximum Dry-Bulb Temperature {C} + 0, !- Daily Dry-Bulb Temperature Range {deltaC} + 99063, !- Barometric Pressure {Pa} + 4.9, !- Wind Speed {m/s} + 270, !- 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 + -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} + ; !- Dry-Bulb Temperature Range Modifier Type + +OS:SizingPeriod:DesignDay, + {71647488-665c-4b49-9735-bc9101f3b699}, !- Handle + Sizing Period Design Day 2, !- Name + 33.2, !- Maximum Dry-Bulb Temperature {C} + 10.7, !- Daily Dry-Bulb Temperature Range {deltaC} + 99063, !- Barometric Pressure {Pa} + 5.3, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + 1, !- 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.8, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + ; !- Dry-Bulb Temperature Range Modifier Type -OS:Schedule:Rule, - {e5799452-8d36-4739-a94b-184f22c15de0}, ! Handle - Office Bldg Light Rule 2, ! Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, ! Schedule Ruleset Name - 1, ! Rule Order - {fd34a36a-f6bf-4a3e-b174-248c7bf8388a}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day +OS:ScheduleTypeLimits, + {67a065c0-22e3-420b-a098-c1929910950b}, !- Handle + Temperature, !- Name + -60, !- Lower Limit Value + 200, !- Upper Limit Value + CONTINUOUS, !- Numeric Type + Temperature; !- Unit Type -OS:Schedule:Day, - {fd34a36a-f6bf-4a3e-b174-248c7bf8388a}, ! Handle - Office Bldg Light Rule 2 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0.050000000000000003, ! Value Until Time 1 - 8, ! Hour 2 - 0, ! Minute 2 - 0.10000000000000001, ! Value Until Time 2 - 14, ! Hour 3 - 0, ! Minute 3 - 0.5, ! Value Until Time 3 - 17, ! Hour 4 - 0, ! Minute 4 - 0.14999999999999999, ! Value Until Time 4 - 24, ! Hour 5 - 0, ! Minute 5 - 0.050000000000000003; ! Value Until Time 5 - -OS:DesignSpecification:OutdoorAir, - {67f2822d-9200-410d-bad4-ca1adb4cbb77}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 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, + {e80ca19b-df2a-43b9-bfcd-917af9c94757}, !- Handle + Default Schedules, !- Name + , !- Hours of Operation Schedule Name + {6ea95f82-6673-47ae-9e54-6c2a51980faa}, !- Number of People Schedule Name + {3c92be85-8fe5-4db9-85fb-438d591625a2}, !- People Activity Level Schedule Name + {f1b3382e-5a8c-4aa9-8c20-7a90e5ce4d01}, !- Lighting Schedule Name + {815b38a3-e904-4967-a8ce-67c5ce9961e4}, !- Electric Equipment Schedule Name + {b5c743b3-d8f7-47e0-a3ce-60216105510d}, !- Gas Equipment Schedule Name + {d01338be-979b-4f4c-8cfa-bcd878d72807}, !- Hot Water Equipment Schedule Name + {751149f3-4831-4b8a-bc4c-8e2257596d05}, !- Infiltration Schedule Name + , !- Steam Equipment Schedule Name + ; !- Other Equipment Schedule Name -OS:People:Definition, - {c42e1fab-f69a-49d5-a2c9-f14f1259af26}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant +OS:Schedule:Ruleset, + {6ea95f82-6673-47ae-9e54-6c2a51980faa}, !- Handle + Medium Office Number of People Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + {aaecb79a-519a-430a-a322-3b7fb28dd6a5}, !- Default Day Schedule Name + {eef8678a-7bc5-48ef-aab6-545093ae369d}; !- Summer Design Day Schedule Name -OS:People, - {33239cd1-ad9a-4eea-84a8-7128e0617789}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 People, !- Name - {c42e1fab-f69a-49d5-a2c9-f14f1259af26}, !- People Definition Name - {d83c9d8c-b4ea-4352-92bc-43a5e8551039}; !- Space or SpaceType Name +OS:Schedule:Day, + {aaecb79a-519a-430a-a322-3b7fb28dd6a5}, !- Handle + Medium Office Number of People All Other Days Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 -OS:Schedule:Ruleset, - {be0538a4-3720-422e-85be-2e617795d558}, ! Handle - Office Misc Occ, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - {a76a9245-12f3-412e-b0b5-34665289bf21}, ! Default Day Schedule Name - {a40809b5-8df2-4f21-a9ee-da939f1e5f66}, ! Summer Design Day Schedule Name - {3393a682-e262-4bec-b7cf-fd6eec115ebc}; ! Winter Design Day Schedule Name +OS:Schedule:Day, + {87ea7c0c-99a0-456f-af39-cbc24acb37a1}, !- Handle + Medium Office Number of People Summer Design Day Schedule, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0.05; !- Value Until Time 3 OS:Schedule:Day, - {a76a9245-12f3-412e-b0b5-34665289bf21}, ! Handle - Office Bldg Occ Default Schedule 1, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep + {eef8678a-7bc5-48ef-aab6-545093ae369d}, !- Handle + Medium Office Number of People Summer Design Day Schedule 1, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 1, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 0.05; !- Value Until Time 3 + +OS:Schedule:Rule, + {97692fac-3d6a-44cc-a2ca-57ebff45045e}, !- Handle + Medium Office Number of People Schedule Weekdays Rule, !- Name + {6ea95f82-6673-47ae-9e54-6c2a51980faa}, !- Schedule Ruleset Name + 1, !- Rule Order + {f7d7b6f4-a379-459b-aedb-a49a8e898895}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes; !- Apply Friday + +OS:Schedule:Day, + {f7d7b6f4-a379-459b-aedb-a49a8e898895}, !- Handle + Medium Office Number of People Weekdays Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 0, !- Value Until Time 1 7, !- Hour 2 0, !- Minute 2 - 0.100000001490116, !- Value Until Time 2 + 0.1, !- Value Until Time 2 8, !- Hour 3 0, !- Minute 3 - 0.200000002980232, !- Value Until Time 3 - 20, !- Hour 4 + 0.2, !- Value Until Time 3 + 12, !- Hour 4 0, !- Minute 4 - 0.400000005960464, !- Value Until Time 4 - 22, !- Hour 5 + 0.95, !- Value Until Time 4 + 13, !- Hour 5 0, !- Minute 5 - 0.100000001490116, !- Value Until Time 5 - 24, !- Hour 6 + 0.5, !- Value Until Time 5 + 17, !- Hour 6 0, !- Minute 6 - 0.0500000007450581; !- Value Until Time 6 - -OS:Schedule:Day, - {a40809b5-8df2-4f21-a9ee-da939f1e5f66}, ! Handle - Office Bldg Occ Summer Design Day 1, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 1, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 0.050000000000000003; ! Value Until Time 3 - -OS:Schedule:Day, - {3393a682-e262-4bec-b7cf-fd6eec115ebc}, ! Handle - Office Bldg Occ Winter Design Day 1, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {3ca2483c-714c-4d0d-8b7c-5f4a9c2b67c5}, ! Handle - Office Misc Occ Rule 1, ! Name - {be0538a4-3720-422e-85be-2e617795d558}, ! Schedule Ruleset Name - 0, ! Rule Order - {f56ad6ba-e3fe-4664-91d5-6e3a524b6815}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {f56ad6ba-e3fe-4664-91d5-6e3a524b6815}, ! Handle - Office Bldg Occ Rule 1 Day Schedule 1, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 + 0.95, !- Value Until Time 6 + 18, !- Hour 7 + 0, !- Minute 7 + 0.7, !- Value Until Time 7 + 20, !- Hour 8 + 0, !- Minute 8 + 0.4, !- Value Until Time 8 + 22, !- Hour 9 + 0, !- Minute 9 + 0.1, !- Value Until Time 9 + 24, !- Hour 10 + 0, !- Minute 10 + 0.05; !- Value Until Time 10 OS:Schedule:Rule, - {05c99778-2bec-4bcf-b23a-afcb3628f061}, ! Handle - Office Misc Occ Rule 2, ! Name - {be0538a4-3720-422e-85be-2e617795d558}, ! Schedule Ruleset Name - 1, ! Rule Order - {50794c08-f7a3-4592-ab7e-021599b65e8f}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {50794c08-f7a3-4592-ab7e-021599b65e8f}, ! Handle - Office Bldg Occ Rule 2 Day Schedule 1, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep + {57f75c09-c41e-4ecf-8f2f-f626b84a1b69}, !- Handle + Medium Office Number of People Schedule Saturday Rule, !- Name + {6ea95f82-6673-47ae-9e54-6c2a51980faa}, !- Schedule Ruleset Name + 0, !- Rule Order + {5bd97e25-7035-4907-9aec-26eef22ebee4}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes; !- Apply Saturday + +OS:Schedule:Day, + {5bd97e25-7035-4907-9aec-26eef22ebee4}, !- Handle + Medium Office Number of People Saturday Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 0, !- Value Until Time 1 8, !- Hour 2 0, !- Minute 2 - 0.100000001490116, !- Value Until Time 2 + 0.1, !- Value Until Time 2 14, !- Hour 3 0, !- Minute 3 - 0.25, !- Value Until Time 3 + 0.5, !- Value Until Time 3 17, !- Hour 4 0, !- Minute 4 - 0.100000001490116, !- Value Until Time 4 + 0.1, !- Value Until Time 4 24, !- Hour 5 0, !- Minute 5 0; !- Value Until Time 5 +OS:ScheduleTypeLimits, + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Handle + Fractional, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Continuous; !- Numeric Type + OS:Schedule:Ruleset, - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, ! Handle - Office Activity, ! Name - {65bf6a03-1758-4903-8383-db583a09d8f8}, ! Schedule Type Limits Name - {3327af75-d065-4569-8f41-90aaaadb46d9}, ! Default Day Schedule Name - {82481ab0-fa29-4f90-b6c0-269200534d1a}, ! Summer Design Day Schedule Name - {ce7a9c35-95ca-4940-ae5d-8bb25d884027}; ! Winter Design Day Schedule Name + {3c92be85-8fe5-4db9-85fb-438d591625a2}, !- Handle + Medium Office People Activity Level Schedule, !- Name + {7dac81a9-8426-42fa-9780-c00fc9ae681a}, !- Schedule Type Limits Name + {6c88be94-f117-4423-9c68-73ee5bb8e34e}; !- Default Day Schedule Name + +OS:Schedule:Day, + {6c88be94-f117-4423-9c68-73ee5bb8e34e}, !- Handle + Medium Office People Activity Level All Days Schedule, !- Name + {7dac81a9-8426-42fa-9780-c00fc9ae681a}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 120; !- Value Until Time 1 OS:ScheduleTypeLimits, - {65bf6a03-1758-4903-8383-db583a09d8f8}, !- Handle + {7dac81a9-8426-42fa-9780-c00fc9ae681a}, !- Handle ActivityLevel, !- Name 0, !- Lower Limit Value , !- Upper Limit Value Continuous, !- Numeric Type ActivityLevel; !- Unit Type -OS:Schedule:Day, - {3327af75-d065-4569-8f41-90aaaadb46d9}, ! Handle - Office Activity Default Schedule, ! Name - {65bf6a03-1758-4903-8383-db583a09d8f8}, ! Schedule Type Limits Name - , ! Interpolate to Timestep +OS:Schedule:Ruleset, + {f1b3382e-5a8c-4aa9-8c20-7a90e5ce4d01}, !- Handle + Medium Office Lighting Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + {d6ab380c-754d-47e4-a628-2ec8a5675c82}, !- Default Day Schedule Name + {7d3242bc-9702-4eea-b1e8-d02ccc2d6ed1}, !- Summer Design Day Schedule Name + {ee5b8927-22bc-4d6f-b1ac-4aa17d2d9b4d}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {d6ab380c-754d-47e4-a628-2ec8a5675c82}, !- Handle + Medium Office Lighting All Other Days Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 132; !- Value Until Time 1 + 0.05; !- Value Until Time 1 + +OS:Schedule:Day, + {2e3ec937-ff1d-456c-a270-e74ccc09e732}, !- Handle + Medium Office Lighting Summer Design Day Schedule, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 0; !- Value Until Time 2 + +OS:Schedule:Day, + {7d3242bc-9702-4eea-b1e8-d02ccc2d6ed1}, !- Handle + Medium Office Lighting Summer Design Day Schedule 1, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 0; !- Value Until Time 2 OS:Schedule:Day, - {82481ab0-fa29-4f90-b6c0-269200534d1a}, ! Handle - Office Activity Summer Design Day, ! Name - {65bf6a03-1758-4903-8383-db583a09d8f8}, ! Schedule Type Limits Name - , ! Interpolate to Timestep + {3f5ef730-1a2a-4e03-bd17-0793f4011c1c}, !- Handle + Medium Office Lighting Winter Design Day Schedule, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 132; !- Value Until Time 1 + 0; !- Value Until Time 1 OS:Schedule:Day, - {ce7a9c35-95ca-4940-ae5d-8bb25d884027}, ! Handle - Office Activity Winter Design Day, ! Name - {65bf6a03-1758-4903-8383-db583a09d8f8}, ! Schedule Type Limits Name - , ! Interpolate to Timestep + {ee5b8927-22bc-4d6f-b1ac-4aa17d2d9b4d}, !- Handle + Medium Office Lighting Winter Design Day Schedule 1, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 - 132; !- Value Until Time 1 + 0; !- Value Until Time 1 -OS:SpaceInfiltration:DesignFlowRate, - {d11f3814-047f-4553-8741-be6dbd4a756d}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 Infiltration, !- Name - {d83c9d8c-b4ea-4352-92bc-43a5e8551039}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient +OS:Schedule:Rule, + {f485e83b-6b42-4019-a4f6-877eb411e076}, !- Handle + Medium Office Lighting Schedule Weekdays Rule, !- Name + {f1b3382e-5a8c-4aa9-8c20-7a90e5ce4d01}, !- Schedule Ruleset Name + 1, !- Rule Order + {cacfb581-03d3-40e5-95a8-91ebc314403a}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes; !- Apply Friday + +OS:Schedule:Day, + {cacfb581-03d3-40e5-95a8-91ebc314403a}, !- Handle + Medium Office Lighting Weekdays Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 5, !- Hour 1 + 0, !- Minute 1 + 0.05, !- Value Until Time 1 + 7, !- Hour 2 + 0, !- Minute 2 + 0.1, !- Value Until Time 2 + 8, !- Hour 3 + 0, !- Minute 3 + 0.3, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.9, !- Value Until Time 4 + 18, !- Hour 5 + 0, !- Minute 5 + 0.7, !- Value Until Time 5 + 20, !- Hour 6 + 0, !- Minute 6 + 0.5, !- Value Until Time 6 + 22, !- Hour 7 + 0, !- Minute 7 + 0.3, !- Value Until Time 7 + 23, !- Hour 8 + 0, !- Minute 8 + 0.1, !- Value Until Time 8 + 24, !- Hour 9 + 0, !- Minute 9 + 0.05; !- Value Until Time 9 + +OS:Schedule:Rule, + {cce19e6b-a7dd-4a91-a437-cb8aaf062d78}, !- Handle + Medium Office Lighting Schedule Saturday Rule, !- Name + {f1b3382e-5a8c-4aa9-8c20-7a90e5ce4d01}, !- Schedule Ruleset Name + 0, !- Rule Order + {79ac40c9-ad77-461e-8179-bb87c5dd752f}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes; !- Apply Saturday + +OS:Schedule:Day, + {79ac40c9-ad77-461e-8179-bb87c5dd752f}, !- Handle + Medium Office Lighting Saturday Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0.05, !- Value Until Time 1 + 8, !- Hour 2 + 0, !- Minute 2 + 0.1, !- Value Until Time 2 + 14, !- Hour 3 + 0, !- Minute 3 + 0.5, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.15, !- Value Until Time 4 + 24, !- Hour 5 + 0, !- Minute 5 + 0.05; !- Value Until Time 5 OS:Schedule:Ruleset, - {5071fc8f-2a43-420e-b853-89de3fd548e0}, ! Handle - Office Infil Quarter On, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - {2fb80237-329a-4845-a30d-3df8432f42db}, ! Default Day Schedule Name - {5d5af512-8749-48a6-8cab-1e94e2186c8a}, ! Summer Design Day Schedule Name - {2ad01453-6707-4358-a39d-e8f66d6a2d27}; ! Winter Design Day Schedule Name + {815b38a3-e904-4967-a8ce-67c5ce9961e4}, !- Handle + Medium Office Electric Equipment Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + {aad069d5-8961-4a45-b4aa-6bec5ece2f2e}, !- Default Day Schedule Name + {c25ac7e3-6245-4ba0-8da8-70f9f5bcc636}, !- Summer Design Day Schedule Name + {89a386f8-3dc8-4396-b706-73b3592fc5cc}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {aad069d5-8961-4a45-b4aa-6bec5ece2f2e}, !- Handle + Medium Office Electric Equipment All Other Days Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0.3; !- Value Until Time 1 OS:Schedule:Day, - {2fb80237-329a-4845-a30d-3df8432f42db}, ! Handle - Office Infil Quarter On Default Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep + {9d38dccc-c626-4593-aa2c-e6cb944b48b7}, !- Handle + Medium Office Electric Equipment Summer Design Day Schedule, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 1, !- Value Until Time 1 - 22, !- Hour 2 + 24, !- Hour 2 0, !- Minute 2 - 0.25, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 1; !- Value Until Time 3 + 0; !- Value Until Time 2 OS:Schedule:Day, - {5d5af512-8749-48a6-8cab-1e94e2186c8a}, ! Handle - Office Infil Quarter On Summer Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 + {c25ac7e3-6245-4ba0-8da8-70f9f5bcc636}, !- Handle + Medium Office Electric Equipment Summer Design Day Schedule 1, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 0; !- Value Until Time 2 OS:Schedule:Day, - {2ad01453-6707-4358-a39d-e8f66d6a2d27}, ! Handle - Office Infil Quarter On Winter Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:Schedule:Rule, - {4574f359-1b04-4a98-ab13-df5e80f66af0}, ! Handle - Office Infil Quarter On Rule 1, ! Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, ! Schedule Ruleset Name - 0, ! Rule Order - {3790040e-9ea2-4dc8-aa07-8c3be9362217}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day + {b1fe622a-6fe3-45ef-bc89-27c46f940550}, !- Handle + Medium Office Electric Equipment 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, - {3790040e-9ea2-4dc8-aa07-8c3be9362217}, ! Handle - Office Infil Quarter On Rule 1 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 + {89a386f8-3dc8-4396-b706-73b3592fc5cc}, !- Handle + Medium Office Electric Equipment Winter Design Day Schedule 1, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 OS:Schedule:Rule, - {dffe30c1-3c56-49c5-a8f7-647f7d37a109}, ! Handle - Office Infil Quarter On Rule 2, ! Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, ! Schedule Ruleset Name - 1, ! Rule Order - {f8525cc5-5d39-46fb-83d8-d6d96f5d4e03}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {f8525cc5-5d39-46fb-83d8-d6d96f5d4e03}, ! Handle - Office Infil Quarter On Rule 2 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:ElectricEquipment:Definition, - {67250caf-92b5-4b98-bf98-90620f2922e7}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 48.0070404585254, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {077ed202-9856-487a-81f9-2b33f6ef021d}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 Electric Equipment, !- Name - {67250caf-92b5-4b98-bf98-90620f2922e7}, !- Electric Equipment Definition Name - {d83c9d8c-b4ea-4352-92bc-43a5e8551039}; !- Space or SpaceType Name - -OS:Schedule:Ruleset, - {d4102340-9627-4371-b8f6-a3790caa5373}, ! Handle - Office Bldg Equip, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - {977dd248-68d1-44ba-89cd-75118b7f5432}, ! Default Day Schedule Name - {c29d5462-6e30-488d-a879-41ed4219dda7}, ! Summer Design Day Schedule Name - {d3bffa7b-808a-4d48-99c4-616283b390aa}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {977dd248-68d1-44ba-89cd-75118b7f5432}, ! Handle - Office Bldg Equip Default Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep + {73a5bb22-0f79-430b-a52f-91b5d0725988}, !- Handle + Medium Office Electric Equipment Schedule Weekdays Rule, !- Name + {815b38a3-e904-4967-a8ce-67c5ce9961e4}, !- Schedule Ruleset Name + 1, !- Rule Order + {0fdeb8f8-b94c-4337-b429-962345caaac5}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes; !- Apply Friday + +OS:Schedule:Day, + {0fdeb8f8-b94c-4337-b429-962345caaac5}, !- Handle + Medium Office Electric Equipment Weekdays Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 0.4, !- Value Until Time 1 @@ -562,7516 +579,2647 @@ OS:Schedule:Day, 0, !- Minute 8 0.4; !- Value Until Time 8 +OS:Schedule:Rule, + {550f4124-b276-40ba-899e-191045ea9199}, !- Handle + Medium Office Electric Equipment Schedule Saturday Rule, !- Name + {815b38a3-e904-4967-a8ce-67c5ce9961e4}, !- Schedule Ruleset Name + 0, !- Rule Order + {576f3ab1-2770-4f2c-8333-43010e2f0330}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes; !- Apply Saturday + +OS:Schedule:Day, + {576f3ab1-2770-4f2c-8333-43010e2f0330}, !- Handle + Medium Office Electric Equipment Saturday Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 0.3, !- Value Until Time 1 + 8, !- Hour 2 + 0, !- Minute 2 + 0.4, !- Value Until Time 2 + 14, !- Hour 3 + 0, !- Minute 3 + 0.5, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.35, !- Value Until Time 4 + 24, !- Hour 5 + 0, !- Minute 5 + 0.3; !- Value Until Time 5 + +OS:Schedule:Ruleset, + {b5c743b3-d8f7-47e0-a3ce-60216105510d}, !- Handle + Medium Office Gas Equipment Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + {fce6438a-a5f8-4ff6-a872-1be345602338}, !- Default Day Schedule Name + {f08b0ebb-5c2e-4ac9-bb0e-f62ac032d010}, !- Summer Design Day Schedule Name + {3c0609fa-9a3a-4d13-b628-49c63f86ee7c}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {fce6438a-a5f8-4ff6-a872-1be345602338}, !- Handle + Medium Office Gas Equipment All Other Days Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0.3; !- Value Until Time 1 + OS:Schedule:Day, - {c29d5462-6e30-488d-a879-41ed4219dda7}, ! Handle - Office Bldg Equip Summer Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 + {9b582bde-d9d6-4e71-8d14-b5820c442621}, !- Handle + Medium Office Gas Equipment Summer Design Day Schedule, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 0; !- Value Until Time 2 OS:Schedule:Day, - {d3bffa7b-808a-4d48-99c4-616283b390aa}, ! Handle - Office Bldg Equip Winter Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 + {f08b0ebb-5c2e-4ac9-bb0e-f62ac032d010}, !- Handle + Medium Office Gas Equipment Summer Design Day Schedule 1, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 24, !- Hour 2 + 0, !- Minute 2 + 0; !- Value Until Time 2 -OS:Schedule:Rule, - {bce5d209-6925-4d7c-8dc5-3f357b764d6c}, ! Handle - Office Bldg Equip Rule 1, ! Name - {d4102340-9627-4371-b8f6-a3790caa5373}, ! Schedule Ruleset Name - 0, ! Rule Order - {c875931d-86d6-4764-8e77-22d1cb7198ce}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day +OS:Schedule:Day, + {bc1d1d6f-928c-436e-bd85-9439af2da5b5}, !- Handle + Medium Office Gas Equipment 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, - {c875931d-86d6-4764-8e77-22d1cb7198ce}, ! Handle - Office Bldg Equip Rule 1 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0.29999999999999999; ! Value Until Time 1 + {3c0609fa-9a3a-4d13-b628-49c63f86ee7c}, !- Handle + Medium Office Gas Equipment Winter Design Day Schedule 1, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 0; !- Value Until Time 1 OS:Schedule:Rule, - {1949d113-007e-43de-9be2-ba191485735a}, ! Handle - Office Bldg Equip Rule 2, ! Name - {d4102340-9627-4371-b8f6-a3790caa5373}, ! Schedule Ruleset Name - 1, ! Rule Order - {c7512454-4834-46fa-a2d6-7cc7e929e54c}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {c7512454-4834-46fa-a2d6-7cc7e929e54c}, ! Handle - Office Bldg Equip Rule 2 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0.29999999999999999, ! Value Until Time 1 - 8, ! Hour 2 - 0, ! Minute 2 - 0.40000000000000002, ! Value Until Time 2 - 14, ! Hour 3 - 0, ! Minute 3 - 0.5, ! Value Until Time 3 - 17, ! Hour 4 - 0, ! Minute 4 - 0.34999999999999998, ! Value Until Time 4 - 24, ! Hour 5 - 0, ! Minute 5 - 0.29999999999999999; ! Value Until Time 5 - -OS:ThermostatSetpoint:DualSetpoint, - {57716514-0d5c-4f76-8108-73a8ef55c74a}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:Schedule:Ruleset, - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, ! Handle - Medium Office HtgSetp, ! Name - {12c61fd1-4fe2-4b95-9432-26b57b327856}, ! Schedule Type Limits Name - {9b279567-fd7d-4e61-887c-70dc28a870a8}, ! Default Day Schedule Name - {12714e17-5b17-4314-81e6-d4b74d680da0}, ! Summer Design Day Schedule Name - {f9920323-552d-4d1f-bda1-6b0c461a87ca}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {12c61fd1-4fe2-4b95-9432-26b57b327856}, !- Handle - Temperature 36, !- Name - , !- Lower Limit Value - , !- Upper Limit Value - Continuous, !- Numeric Type - Temperature; !- Unit Type - -OS:Schedule:Day, - {9b279567-fd7d-4e61-887c-70dc28a870a8}, ! Handle - Medium Office HtgSetp Default Schedule, ! Name - {12c61fd1-4fe2-4b95-9432-26b57b327856}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 + {465a9290-f517-443e-b510-0a5cff15e155}, !- Handle + Medium Office Gas Equipment Schedule Weekdays Rule, !- Name + {b5c743b3-d8f7-47e0-a3ce-60216105510d}, !- Schedule Ruleset Name + 1, !- Rule Order + {949cec9c-5e19-4c45-bab3-c0d4cd9aa773}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes; !- Apply Friday + +OS:Schedule:Day, + {949cec9c-5e19-4c45-bab3-c0d4cd9aa773}, !- Handle + Medium Office Gas Equipment Weekdays Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 8, !- Hour 1 0, !- Minute 1 - 15.6, !- Value Until Time 1 - 22, !- Hour 2 + 0.4, !- Value Until Time 1 + 12, !- Hour 2 0, !- Minute 2 - 21, !- Value Until Time 2 - 24, !- Hour 3 + 0.9, !- Value Until Time 2 + 13, !- Hour 3 0, !- Minute 3 - 15.6; !- Value Until Time 3 - -OS:Schedule:Day, - {12714e17-5b17-4314-81e6-d4b74d680da0}, ! Handle - Medium Office HtgSetp Summer Design Day, ! Name - {12c61fd1-4fe2-4b95-9432-26b57b327856}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 15.6; ! Value Until Time 1 - -OS:Schedule:Day, - {f9920323-552d-4d1f-bda1-6b0c461a87ca}, ! Handle - Medium Office HtgSetp Winter Design Day, ! Name - {12c61fd1-4fe2-4b95-9432-26b57b327856}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 21; ! Value Until Time 1 - -OS:Schedule:Rule, - {868baa5f-da01-445a-994f-6c6787547ea5}, ! Handle - Medium Office HtgSetp Rule 1, ! Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, ! Schedule Ruleset Name - 0, ! Rule Order - {cac0b919-4885-4c58-9a65-b12cf242f6c9}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {cac0b919-4885-4c58-9a65-b12cf242f6c9}, ! Handle - Medium Office HtgSetp Rule 1 Day Schedule, ! Name - {12c61fd1-4fe2-4b95-9432-26b57b327856}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 15.6; ! Value Until Time 1 + 0.8, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.9, !- Value Until Time 4 + 18, !- Hour 5 + 0, !- Minute 5 + 0.8, !- Value Until Time 5 + 20, !- Hour 6 + 0, !- Minute 6 + 0.6, !- Value Until Time 6 + 22, !- Hour 7 + 0, !- Minute 7 + 0.5, !- Value Until Time 7 + 24, !- Hour 8 + 0, !- Minute 8 + 0.4; !- Value Until Time 8 OS:Schedule:Rule, - {0641d0ff-4231-421a-9389-7b82524a19ba}, ! Handle - Medium Office HtgSetp Rule 2, ! Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, ! Schedule Ruleset Name - 1, ! Rule Order - {32df9b1b-e2bc-432f-a592-8f7e6e83b032}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {32df9b1b-e2bc-432f-a592-8f7e6e83b032}, ! Handle - Medium Office HtgSetp Rule 2 Day Schedule, ! Name - {12c61fd1-4fe2-4b95-9432-26b57b327856}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 15.6, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 21, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 15.6; ! Value Until Time 3 - -OS:Schedule:Ruleset, - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}, ! Handle - Medium Office ClgSetp, ! Name - {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, ! Schedule Type Limits Name - {5ab5938a-bfd8-4751-92be-cee36c4f1856}, ! Default Day Schedule Name - {240b0752-5119-4ee3-9c27-ad5cfe8f7244}, ! Summer Design Day Schedule Name - {7bbe1afc-37e4-452d-8136-77be3d751f5f}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, !- Handle - Temperature 37, !- Name - , !- Lower Limit Value - , !- Upper Limit Value - Continuous, !- Numeric Type - Temperature; !- Unit Type - -OS:Schedule:Day, - {5ab5938a-bfd8-4751-92be-cee36c4f1856}, ! Handle - Medium Office ClgSetp Default Schedule, ! Name - {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, ! Schedule Type Limits Name - , ! Interpolate to Timestep + {5801e412-266d-4919-b1ef-f51f96f0830a}, !- Handle + Medium Office Gas Equipment Schedule Saturday Rule, !- Name + {b5c743b3-d8f7-47e0-a3ce-60216105510d}, !- Schedule Ruleset Name + 0, !- Rule Order + {d130c8de-1123-455e-b142-7906c6ae317e}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes; !- Apply Saturday + +OS:Schedule:Day, + {d130c8de-1123-455e-b142-7906c6ae317e}, !- Handle + Medium Office Gas Equipment Saturday Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 - 26.7, !- Value Until Time 1 - 22, !- Hour 2 + 0.3, !- Value Until Time 1 + 8, !- Hour 2 0, !- Minute 2 - 24, !- Value Until Time 2 - 24, !- Hour 3 + 0.4, !- Value Until Time 2 + 14, !- Hour 3 0, !- Minute 3 - 26.7; !- Value Until Time 3 - -OS:Schedule:Day, - {240b0752-5119-4ee3-9c27-ad5cfe8f7244}, ! Handle - Medium Office ClgSetp Summer Design Day, ! Name - {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 24, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 26.699999999999999; ! Value Until Time 3 - -OS:Schedule:Day, - {7bbe1afc-37e4-452d-8136-77be3d751f5f}, ! Handle - Medium Office ClgSetp Winter Design Day, ! Name - {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999; ! Value Until Time 1 - -OS:Schedule:Rule, - {68812eb9-619d-47e2-bd4b-4e3b8987011c}, ! Handle - Medium Office ClgSetp Rule 1, ! Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}, ! Schedule Ruleset Name - 0, ! Rule Order - {78b34901-136a-4662-8a58-694b3d6974cc}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {78b34901-136a-4662-8a58-694b3d6974cc}, ! Handle - Medium Office ClgSetp Rule 1 Day Schedule, ! Name - {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999; ! Value Until Time 1 - -OS:Schedule:Rule, - {0b596ac5-df32-47fa-8cdd-b434dd223a94}, ! Handle - Medium Office ClgSetp Rule 2, ! Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}, ! Schedule Ruleset Name - 1, ! Rule Order - {be610421-800e-4a9c-9a30-e22099e6d5c7}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {be610421-800e-4a9c-9a30-e22099e6d5c7}, ! Handle - Medium Office ClgSetp Rule 2 Day Schedule, ! Name - {7e87320c-a0b8-49c9-bbc8-d0b2f472ac54}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 24, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 26.699999999999999; ! Value Until Time 3 - -OS:SpaceType, - {3c12e344-f3c2-46e8-94cc-aa11adda3228}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3, !- Name - , !- Default Construction Set Name - {9b9fb4b7-7437-423f-a42a-1e1800e6055c}, !- Default Schedule Set Name - {a57916a4-2d44-41b9-a1e1-917f01e6e980}, !- Group Rendering Name - {f46c6550-abd3-4dc9-b2fd-3521e6458afe}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - ClosedOffice; !- Standards Space Type - -OS:Rendering:Color, - {a57916a4-2d44-41b9-a1e1-917f01e6e980}, !- Handle - Rendering Color 2, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {9b9fb4b7-7437-423f-a42a-1e1800e6055c}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {06799bf2-e498-4941-a66b-f78cb208dc67}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 10.6562713125426, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {f1628569-1691-49f0-9348-f92fa25bb1b6}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 Lights, !- Name - {06799bf2-e498-4941-a66b-f78cb208dc67}, !- Lights Definition Name - {3c12e344-f3c2-46e8-94cc-aa11adda3228}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {f46c6550-abd3-4dc9-b2fd-3521e6458afe}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 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:People:Definition, - {6e7c5923-7c0d-48b7-9a3f-216e3e766b71}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0511285744793712, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {5c410b4a-537a-47b7-b730-dc303931c19c}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 People, !- Name - {6e7c5923-7c0d-48b7-9a3f-216e3e766b71}, !- People Definition Name - {3c12e344-f3c2-46e8-94cc-aa11adda3228}; !- Space or SpaceType Name + 0.5, !- Value Until Time 3 + 17, !- Hour 4 + 0, !- Minute 4 + 0.35, !- Value Until Time 4 + 24, !- Hour 5 + 0, !- Minute 5 + 0.3; !- Value Until Time 5 OS:Schedule:Ruleset, - {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, ! Handle - Office Work Occ, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - {8c6f6e65-d0d1-46da-8dc4-e578841c0855}, ! Default Day Schedule Name - {27e84094-894f-40a3-b576-abd36362f44e}, ! Summer Design Day Schedule Name - {a4028ad4-4ce3-47fe-bea5-e1572f850788}; ! Winter Design Day Schedule Name + {d01338be-979b-4f4c-8cfa-bcd878d72807}, !- Handle + Medium Office Hot Water Equipment Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + {6f928282-9477-4b57-98e9-91f807d74c11}, !- Default Day Schedule Name + {cb1d07df-8db5-4d81-93de-854040db989b}, !- Summer Design Day Schedule Name + {32b265f5-3446-4578-9e1c-185704dfbd63}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {6f928282-9477-4b57-98e9-91f807d74c11}, !- Handle + Medium Office Hot Water Equipment Default Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 5, !- Hour 1 + 0, !- Minute 1 + 0.04, !- Value Until Time 1 + 6, !- Hour 2 + 0, !- Minute 2 + 0.07, !- Value Until Time 2 + 11, !- Hour 3 + 0, !- Minute 3 + 0.04, !- Value Until Time 3 + 13, !- Hour 4 + 0, !- Minute 4 + 0.06, !- Value Until Time 4 + 14, !- Hour 5 + 0, !- Minute 5 + 0.09, !- Value Until Time 5 + 15, !- Hour 6 + 0, !- Minute 6 + 0.06, !- Value Until Time 6 + 21, !- Hour 7 + 0, !- Minute 7 + 0.04, !- Value Until Time 7 + 22, !- Hour 8 + 0, !- Minute 8 + 0.07, !- Value Until Time 8 + 24, !- Hour 9 + 0, !- Minute 9 + 0.04; !- Value Until Time 9 OS:Schedule:Day, - {8c6f6e65-d0d1-46da-8dc4-e578841c0855}, ! Handle - Office Bldg Occ Default Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 + {27aa5b73-c5ac-47ba-8c01-e52517c3d410}, !- Handle + Medium Office Hot Water Equipment Summer Design Day Schedule, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 5, !- Hour 1 0, !- Minute 1 - 0, !- Value Until Time 1 - 7, !- Hour 2 + 0.05, !- Value Until Time 1 + 6, !- Hour 2 0, !- Minute 2 - 0.100000001490116, !- Value Until Time 2 - 8, !- Hour 3 + 0.08, !- Value Until Time 2 + 7, !- Hour 3 0, !- Minute 3 - 0.200000002980232, !- Value Until Time 3 - 12, !- Hour 4 + 0.07, !- Value Until Time 3 + 8, !- Hour 4 0, !- Minute 4 - 0.850000023841858, !- Value Until Time 4 - 13, !- Hour 5 + 0.19, !- Value Until Time 4 + 9, !- Hour 5 0, !- Minute 5 - 0.5, !- Value Until Time 5 - 17, !- Hour 6 + 0.35, !- Value Until Time 5 + 10, !- Hour 6 0, !- Minute 6 - 0.850000023841858, !- Value Until Time 6 - 18, !- Hour 7 + 0.38, !- Value Until Time 6 + 11, !- Hour 7 0, !- Minute 7 - 0.699999988079071, !- Value Until Time 7 - 20, !- Hour 8 + 0.39, !- Value Until Time 7 + 12, !- Hour 8 0, !- Minute 8 - 0.400000005960464, !- Value Until Time 8 - 22, !- Hour 9 + 0.47, !- Value Until Time 8 + 13, !- Hour 9 0, !- Minute 9 - 0.100000001490116, !- Value Until Time 9 - 24, !- Hour 10 + 0.57, !- Value Until Time 9 + 14, !- Hour 10 0, !- Minute 10 - 0.0500000007450581; !- Value Until Time 10 - -OS:Schedule:Day, - {27e84094-894f-40a3-b576-abd36362f44e}, ! Handle - Office Bldg Occ Summer Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 1, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 0.050000000000000003; ! Value Until Time 3 - -OS:Schedule:Day, - {a4028ad4-4ce3-47fe-bea5-e1572f850788}, ! Handle - Office Bldg Occ Winter Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 + 0.54, !- Value Until Time 10 + 15, !- Hour 11 + 0, !- Minute 11 + 0.34, !- Value Until Time 11 + 16, !- Hour 12 + 0, !- Minute 12 + 0.33, !- Value Until Time 12 + 17, !- Hour 13 + 0, !- Minute 13 + 0.44, !- Value Until Time 13 + 18, !- Hour 14 + 0, !- Minute 14 + 0.26, !- Value Until Time 14 + 19, !- Hour 15 + 0, !- Minute 15 + 0.21, !- Value Until Time 15 + 20, !- Hour 16 + 0, !- Minute 16 + 0.15, !- Value Until Time 16 + 21, !- Hour 17 + 0, !- Minute 17 + 0.17, !- Value Until Time 17 + 22, !- Hour 18 + 0, !- Minute 18 + 0.08, !- Value Until Time 18 + 24, !- Hour 19 + 0, !- Minute 19 + 0.05; !- Value Until Time 19 + +OS:Schedule:Day, + {cb1d07df-8db5-4d81-93de-854040db989b}, !- Handle + Medium Office Hot Water Equipment Summer Design Day Schedule 1, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 5, !- Hour 1 + 0, !- Minute 1 + 0.05, !- Value Until Time 1 + 6, !- Hour 2 + 0, !- Minute 2 + 0.08, !- Value Until Time 2 + 7, !- Hour 3 + 0, !- Minute 3 + 0.07, !- Value Until Time 3 + 8, !- Hour 4 + 0, !- Minute 4 + 0.19, !- Value Until Time 4 + 9, !- Hour 5 + 0, !- Minute 5 + 0.35, !- Value Until Time 5 + 10, !- Hour 6 + 0, !- Minute 6 + 0.38, !- Value Until Time 6 + 11, !- Hour 7 + 0, !- Minute 7 + 0.39, !- Value Until Time 7 + 12, !- Hour 8 + 0, !- Minute 8 + 0.47, !- Value Until Time 8 + 13, !- Hour 9 + 0, !- Minute 9 + 0.57, !- Value Until Time 9 + 14, !- Hour 10 + 0, !- Minute 10 + 0.54, !- Value Until Time 10 + 15, !- Hour 11 + 0, !- Minute 11 + 0.34, !- Value Until Time 11 + 16, !- Hour 12 + 0, !- Minute 12 + 0.33, !- Value Until Time 12 + 17, !- Hour 13 + 0, !- Minute 13 + 0.44, !- Value Until Time 13 + 18, !- Hour 14 + 0, !- Minute 14 + 0.26, !- Value Until Time 14 + 19, !- Hour 15 + 0, !- Minute 15 + 0.21, !- Value Until Time 15 + 20, !- Hour 16 + 0, !- Minute 16 + 0.15, !- Value Until Time 16 + 21, !- Hour 17 + 0, !- Minute 17 + 0.17, !- Value Until Time 17 + 22, !- Hour 18 + 0, !- Minute 18 + 0.08, !- Value Until Time 18 + 24, !- Hour 19 + 0, !- Minute 19 + 0.05; !- Value Until Time 19 OS:Schedule:Rule, - {e25b5fd5-a9e4-4894-a08b-fc27dee95ca0}, ! Handle - Office Work Occ Rule 1, ! Name - {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, ! Schedule Ruleset Name - 0, ! Rule Order - {e88a91fc-80e1-4d72-8871-1b61226fab13}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {e88a91fc-80e1-4d72-8871-1b61226fab13}, ! Handle - Office Bldg Occ Rule 1 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 + {0cd55ae7-daf4-4036-b31e-8edac120b09c}, !- Handle + Medium Office Hot Water Schedule Weekdays Rule, !- Name + {d01338be-979b-4f4c-8cfa-bcd878d72807}, !- Schedule Ruleset Name + 1, !- Rule Order + {991746c6-3b74-4c0d-899b-740ac40d2c46}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes; !- Apply Friday + +OS:Schedule:Day, + {991746c6-3b74-4c0d-899b-740ac40d2c46}, !- Handle + Medium Office Hot Water Equipment Weekdays Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 5, !- Hour 1 + 0, !- Minute 1 + 0.05, !- Value Until Time 1 + 6, !- Hour 2 + 0, !- Minute 2 + 0.08, !- Value Until Time 2 + 7, !- Hour 3 + 0, !- Minute 3 + 0.07, !- Value Until Time 3 + 8, !- Hour 4 + 0, !- Minute 4 + 0.19, !- Value Until Time 4 + 9, !- Hour 5 + 0, !- Minute 5 + 0.35, !- Value Until Time 5 + 10, !- Hour 6 + 0, !- Minute 6 + 0.38, !- Value Until Time 6 + 11, !- Hour 7 + 0, !- Minute 7 + 0.39, !- Value Until Time 7 + 12, !- Hour 8 + 0, !- Minute 8 + 0.47, !- Value Until Time 8 + 13, !- Hour 9 + 0, !- Minute 9 + 0.57, !- Value Until Time 9 + 14, !- Hour 10 + 0, !- Minute 10 + 0.54, !- Value Until Time 10 + 15, !- Hour 11 + 0, !- Minute 11 + 0.34, !- Value Until Time 11 + 16, !- Hour 12 + 0, !- Minute 12 + 0.33, !- Value Until Time 12 + 17, !- Hour 13 + 0, !- Minute 13 + 0.44, !- Value Until Time 13 + 18, !- Hour 14 + 0, !- Minute 14 + 0.26, !- Value Until Time 14 + 19, !- Hour 15 + 0, !- Minute 15 + 0.21, !- Value Until Time 15 + 20, !- Hour 16 + 0, !- Minute 16 + 0.15, !- Value Until Time 16 + 21, !- Hour 17 + 0, !- Minute 17 + 0.17, !- Value Until Time 17 + 22, !- Hour 18 + 0, !- Minute 18 + 0.08, !- Value Until Time 18 + 24, !- Hour 19 + 0, !- Minute 19 + 0.05; !- Value Until Time 19 + +OS:Schedule:Day, + {3e5d35b7-d2cd-4e9e-a359-eefe0e6b872c}, !- Handle + Medium Office Hot Water Equipment Winter Design Day Schedule, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 5, !- Hour 1 + 0, !- Minute 1 + 0.05, !- Value Until Time 1 + 6, !- Hour 2 + 0, !- Minute 2 + 0.08, !- Value Until Time 2 + 7, !- Hour 3 + 0, !- Minute 3 + 0.07, !- Value Until Time 3 + 8, !- Hour 4 + 0, !- Minute 4 + 0.11, !- Value Until Time 4 + 9, !- Hour 5 + 0, !- Minute 5 + 0.15, !- Value Until Time 5 + 10, !- Hour 6 + 0, !- Minute 6 + 0.21, !- Value Until Time 6 + 11, !- Hour 7 + 0, !- Minute 7 + 0.19, !- Value Until Time 7 + 12, !- Hour 8 + 0, !- Minute 8 + 0.23, !- Value Until Time 8 + 13, !- Hour 9 + 0, !- Minute 9 + 0.2, !- Value Until Time 9 + 14, !- Hour 10 + 0, !- Minute 10 + 0.19, !- Value Until Time 10 + 15, !- Hour 11 + 0, !- Minute 11 + 0.15, !- Value Until Time 11 + 16, !- Hour 12 + 0, !- Minute 12 + 0.13, !- Value Until Time 12 + 17, !- Hour 13 + 0, !- Minute 13 + 0.14, !- Value Until Time 13 + 21, !- Hour 14 + 0, !- Minute 14 + 0.07, !- Value Until Time 14 + 22, !- Hour 15 + 0, !- Minute 15 + 0.09, !- Value Until Time 15 + 24, !- Hour 16 + 0, !- Minute 16 + 0.05; !- Value Until Time 16 + +OS:Schedule:Day, + {32b265f5-3446-4578-9e1c-185704dfbd63}, !- Handle + Medium Office Hot Water Equipment Winter Design Day Schedule 1, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 5, !- Hour 1 + 0, !- Minute 1 + 0.05, !- Value Until Time 1 + 6, !- Hour 2 + 0, !- Minute 2 + 0.08, !- Value Until Time 2 + 7, !- Hour 3 + 0, !- Minute 3 + 0.07, !- Value Until Time 3 + 8, !- Hour 4 + 0, !- Minute 4 + 0.11, !- Value Until Time 4 + 9, !- Hour 5 + 0, !- Minute 5 + 0.15, !- Value Until Time 5 + 10, !- Hour 6 + 0, !- Minute 6 + 0.21, !- Value Until Time 6 + 11, !- Hour 7 + 0, !- Minute 7 + 0.19, !- Value Until Time 7 + 12, !- Hour 8 + 0, !- Minute 8 + 0.23, !- Value Until Time 8 + 13, !- Hour 9 + 0, !- Minute 9 + 0.2, !- Value Until Time 9 + 14, !- Hour 10 + 0, !- Minute 10 + 0.19, !- Value Until Time 10 + 15, !- Hour 11 + 0, !- Minute 11 + 0.15, !- Value Until Time 11 + 16, !- Hour 12 + 0, !- Minute 12 + 0.13, !- Value Until Time 12 + 17, !- Hour 13 + 0, !- Minute 13 + 0.14, !- Value Until Time 13 + 21, !- Hour 14 + 0, !- Minute 14 + 0.07, !- Value Until Time 14 + 22, !- Hour 15 + 0, !- Minute 15 + 0.09, !- Value Until Time 15 + 24, !- Hour 16 + 0, !- Minute 16 + 0.05; !- Value Until Time 16 OS:Schedule:Rule, - {692294cd-2074-417d-bc31-c3d45f3473c8}, ! Handle - Office Work Occ Rule 2, ! Name - {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, ! Schedule Ruleset Name - 1, ! Rule Order - {6b9e68ef-76e4-4389-ba51-34613aee0e9e}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {6b9e68ef-76e4-4389-ba51-34613aee0e9e}, ! Handle - Office Bldg Occ Rule 2 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 + {db86e624-27c2-426a-a597-477166f87f19}, !- Handle + Medium Office Hot Water Schedule Saturday Rule, !- Name + {d01338be-979b-4f4c-8cfa-bcd878d72807}, !- Schedule Ruleset Name + 0, !- Rule Order + {cd2777d7-0e1d-42bb-b10c-2f7d88a81e2c}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes; !- Apply Saturday + +OS:Schedule:Day, + {cd2777d7-0e1d-42bb-b10c-2f7d88a81e2c}, !- Handle + Medium Office Hot Water Equipment Saturday Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 5, !- Hour 1 0, !- Minute 1 - 0, !- Value Until Time 1 - 8, !- Hour 2 + 0.05, !- Value Until Time 1 + 6, !- Hour 2 0, !- Minute 2 - 0.100000001490116, !- Value Until Time 2 - 14, !- Hour 3 + 0.08, !- Value Until Time 2 + 7, !- Hour 3 0, !- Minute 3 - 0.400000005960464, !- Value Until Time 3 - 17, !- Hour 4 + 0.07, !- Value Until Time 3 + 8, !- Hour 4 0, !- Minute 4 - 0.100000001490116, !- Value Until Time 4 - 24, !- Hour 5 + 0.11, !- Value Until Time 4 + 9, !- Hour 5 0, !- Minute 5 - 0; !- Value Until Time 5 - -OS:SpaceInfiltration:DesignFlowRate, - {238b2c42-2ac7-458f-861b-9b2e338631c9}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 Infiltration, !- Name - {3c12e344-f3c2-46e8-94cc-aa11adda3228}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {5e1004b6-95f1-43ca-b770-059ae9545327}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 6.88890266669422, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {bb93da29-6686-468f-b8e1-c0e981827eae}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 Electric Equipment, !- Name - {5e1004b6-95f1-43ca-b770-059ae9545327}, !- Electric Equipment Definition Name - {3c12e344-f3c2-46e8-94cc-aa11adda3228}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {b27de14f-0cdf-4395-80f3-859d49e9b403}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {47604387-8748-48ff-835b-5f4e110a8059}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3, !- Name - , !- Default Construction Set Name - {e3b81960-34e9-43e9-802b-72dc932ec324}, !- Default Schedule Set Name - {ec05571d-f09e-46c5-830e-02e7c83716e2}, !- Group Rendering Name - {a1ac4f23-b7fd-439b-9144-9025bbf81b99}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Conference; !- Standards Space Type - -OS:Rendering:Color, - {ec05571d-f09e-46c5-830e-02e7c83716e2}, !- Handle - Rendering Color 3, !- Name - 230, !- Rendering Red Value - 196, !- Rendering Green Value - 120; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {e3b81960-34e9-43e9-802b-72dc932ec324}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {7c05f735-2072-4b8c-946d-b7cd8119ee11}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 12.5937751875504, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {277ed265-0401-47f6-8de3-56cb05b9fea5}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 Lights, !- Name - {7c05f735-2072-4b8c-946d-b7cd8119ee11}, !- Lights Definition Name - {47604387-8748-48ff-835b-5f4e110a8059}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {a1ac4f23-b7fd-439b-9144-9025bbf81b99}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 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:People:Definition, - {1e057bcd-e909-4141-b7ac-844fc9c736b0}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {8e273f12-7404-4658-8039-d1b0d9e7d0e1}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 People, !- Name - {1e057bcd-e909-4141-b7ac-844fc9c736b0}, !- People Definition Name - {47604387-8748-48ff-835b-5f4e110a8059}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {de1ea70d-57dc-4928-a47f-57f514ec3603}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 Infiltration, !- Name - {47604387-8748-48ff-835b-5f4e110a8059}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {24acb6cb-ad2a-44b2-b01a-335e7395daae}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 3.9826468541826, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {980641d4-cbda-4a28-868d-304978627e4f}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 Electric Equipment, !- Name - {24acb6cb-ad2a-44b2-b01a-335e7395daae}, !- Electric Equipment Definition Name - {47604387-8748-48ff-835b-5f4e110a8059}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {9c5a236d-b8fa-4e61-a6d6-5ef82442b61b}, !- Handle - 189.1-2009 - Office - Conference - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {911f473e-1c50-43ba-b507-1b4167677ea0}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3, !- Name - , !- Default Construction Set Name - {60152e25-975f-42e9-a93e-854a20be3577}, !- Default Schedule Set Name - {9637cafc-bc8f-40aa-8756-39cbbba37ac4}, !- Group Rendering Name - {43c2eb8f-ca41-472d-a661-37d29e1aa470}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Corridor; !- Standards Space Type - -OS:Rendering:Color, - {9637cafc-bc8f-40aa-8756-39cbbba37ac4}, !- Handle - Rendering Color 4, !- Name - 169, !- Rendering Red Value - 31, !- Rendering Green Value - 31; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {60152e25-975f-42e9-a93e-854a20be3577}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name + 0.15, !- Value Until Time 5 + 10, !- Hour 6 + 0, !- Minute 6 + 0.21, !- Value Until Time 6 + 11, !- Hour 7 + 0, !- Minute 7 + 0.19, !- Value Until Time 7 + 12, !- Hour 8 + 0, !- Minute 8 + 0.23, !- Value Until Time 8 + 13, !- Hour 9 + 0, !- Minute 9 + 0.2, !- Value Until Time 9 + 14, !- Hour 10 + 0, !- Minute 10 + 0.19, !- Value Until Time 10 + 15, !- Hour 11 + 0, !- Minute 11 + 0.15, !- Value Until Time 11 + 16, !- Hour 12 + 0, !- Minute 12 + 0.13, !- Value Until Time 12 + 17, !- Hour 13 + 0, !- Minute 13 + 0.14, !- Value Until Time 13 + 21, !- Hour 14 + 0, !- Minute 14 + 0.07, !- Value Until Time 14 + 22, !- Hour 15 + 0, !- Minute 15 + 0.09, !- Value Until Time 15 + 24, !- Hour 16 + 0, !- Minute 16 + 0.05; !- Value Until Time 16 -OS:Lights:Definition, - {61d53d0d-2d54-4a69-926d-aeb7fd47d282}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 4.84375968751938, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {97345961-c39c-4800-be47-fd365cf09579}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 Lights, !- Name - {61d53d0d-2d54-4a69-926d-aeb7fd47d282}, !- Lights Definition Name - {911f473e-1c50-43ba-b507-1b4167677ea0}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {43c2eb8f-ca41-472d-a661-37d29e1aa470}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 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:People:Definition, - {15f0501f-443a-40f6-846f-5720de6f91e8}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {7f505a51-9e01-4f8c-ae6b-eb3a985187f9}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 People, !- Name - {15f0501f-443a-40f6-846f-5720de6f91e8}, !- People Definition Name - {911f473e-1c50-43ba-b507-1b4167677ea0}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {d288d3ec-bb21-459b-96e3-62f849faafec}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 Infiltration, !- Name - {911f473e-1c50-43ba-b507-1b4167677ea0}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {3e9e4b9d-78ea-42f5-87ca-c1ec4f4990f2}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 1.72222566667356, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {f21b9dab-a69e-476b-96be-93f1f5fee1c6}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 Electric Equipment, !- Name - {3e9e4b9d-78ea-42f5-87ca-c1ec4f4990f2}, !- Electric Equipment Definition Name - {911f473e-1c50-43ba-b507-1b4167677ea0}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {52549264-a360-4f7a-971d-ec4f2499546a}, !- Handle - 189.1-2009 - Office - Corridor - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {c35a045e-a8b7-4634-a314-0f2c9fd21361}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ1-3, !- Name - , !- Default Construction Set Name - {7034f523-a923-4bff-bcec-e836877b0d3b}, !- Default Schedule Set Name - {8a8c0cb1-8336-469c-bca4-e17997f803bb}, !- Group Rendering Name - {69d02fbd-3b65-4514-8330-355612e92de3}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Elec/MechRoom; !- Standards Space Type - -OS:Rendering:Color, - {8a8c0cb1-8336-469c-bca4-e17997f803bb}, !- Handle - Rendering Color 5, !- Name - 41, !- Rendering Red Value - 31, !- Rendering Green Value - 169; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {7034f523-a923-4bff-bcec-e836877b0d3b}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - , !- Number of People Schedule Name - , !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {db4f58dd-4414-4c10-8481-b5fdd7610a22}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 14.5312790625581, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {8de70c6d-3c20-4a5a-95f3-70ab2a37759d}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Lights, !- Name - {db4f58dd-4414-4c10-8481-b5fdd7610a22}, !- Lights Definition Name - {c35a045e-a8b7-4634-a314-0f2c9fd21361}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {69d02fbd-3b65-4514-8330-355612e92de3}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ1-3 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:SpaceInfiltration:DesignFlowRate, - {6e96cbfa-7560-4e78-aa8c-239431fd271e}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Infiltration, !- Name - {c35a045e-a8b7-4634-a314-0f2c9fd21361}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {bfdd4c3c-95fa-4c2d-8597-8431da48afda}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 2.90625581251162, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {b17982ba-d5dd-42bf-8d61-12b8c10eee84}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Electric Equipment, !- Name - {bfdd4c3c-95fa-4c2d-8597-8431da48afda}, !- Electric Equipment Definition Name - {c35a045e-a8b7-4634-a314-0f2c9fd21361}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {f8635cc8-deee-4e85-815b-ff7f42668c83}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {b904fa71-fec8-4e29-89a1-d0386138c5a6}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3, !- Name - , !- Default Construction Set Name - {ba84ee14-7d89-4e59-8d59-625209be8ce9}, !- Default Schedule Set Name - {20b4e546-0bb5-45c4-b8f0-ba4246a49c01}, !- Group Rendering Name - {2f4b0680-26b1-4103-9f70-412db3ebdfbe}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - IT_Room; !- Standards Space Type - -OS:Rendering:Color, - {20b4e546-0bb5-45c4-b8f0-ba4246a49c01}, !- Handle - Rendering Color 6, !- Name - 41, !- Rendering Red Value - 31, !- Rendering Green Value - 169; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {ba84ee14-7d89-4e59-8d59-625209be8ce9}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {a6747de8-6448-4e86-abde-d12da5652867}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 10.6562713125426, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {1c9042b5-d85b-4aa1-b403-f1f57ffa5e80}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 Lights, !- Name - {a6747de8-6448-4e86-abde-d12da5652867}, !- Lights Definition Name - {b904fa71-fec8-4e29-89a1-d0386138c5a6}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {2f4b0680-26b1-4103-9f70-412db3ebdfbe}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 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:People:Definition, - {ad090db3-4049-4090-9b2d-581dd03ae523}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {0e08e98a-89ff-440c-98ff-477b7c3fbca4}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 People, !- Name - {ad090db3-4049-4090-9b2d-581dd03ae523}, !- People Definition Name - {b904fa71-fec8-4e29-89a1-d0386138c5a6}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {f3738484-ddae-4171-9149-4056023e0061}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 Infiltration, !- Name - {b904fa71-fec8-4e29-89a1-d0386138c5a6}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {2d5fe187-829f-4492-a2a6-f83bc2f40cec}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 16.7917002500672, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {d754310d-f9d1-4b56-8a61-4d2a167b0f57}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 Electric Equipment, !- Name - {2d5fe187-829f-4492-a2a6-f83bc2f40cec}, !- Electric Equipment Definition Name - {b904fa71-fec8-4e29-89a1-d0386138c5a6}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {7669758f-56e6-4440-9266-ef142961841f}, !- Handle - 189.1-2009 - Office - IT_Room - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {1afa8972-0451-45b3-8dda-3a3a776e008b}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3, !- Name - , !- Default Construction Set Name - {e0c21456-bd44-4237-8936-486557ac00f6}, !- Default Schedule Set Name - {0e5a132c-e7c3-4583-ad5a-cf0bf0fe2d03}, !- Group Rendering Name - {f648ca0a-523e-4cd1-9141-0b84b7a81954}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Lobby; !- Standards Space Type - -OS:Rendering:Color, - {0e5a132c-e7c3-4583-ad5a-cf0bf0fe2d03}, !- Handle - Rendering Color 7, !- Name - 230, !- Rendering Red Value - 157, !- Rendering Green Value - 120; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {e0c21456-bd44-4237-8936-486557ac00f6}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {aa532c04-012a-4860-ab4d-2c03c2c7fa04}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 12.5937751875504, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {28cb410d-135d-49f1-b23c-6218793a6744}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 Lights, !- Name - {aa532c04-012a-4860-ab4d-2c03c2c7fa04}, !- Lights Definition Name - {1afa8972-0451-45b3-8dda-3a3a776e008b}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {f648ca0a-523e-4cd1-9141-0b84b7a81954}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 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:People:Definition, - {91f1c38f-68a1-4305-b70a-a3e1fbc3f83a}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {c9c2acc5-e4d4-49b4-9a7e-94cae06ac406}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 People, !- Name - {91f1c38f-68a1-4305-b70a-a3e1fbc3f83a}, !- People Definition Name - {1afa8972-0451-45b3-8dda-3a3a776e008b}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {61535505-edb5-4881-9380-6ceb9c94ccaa}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 Infiltration, !- Name - {1afa8972-0451-45b3-8dda-3a3a776e008b}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {d64c15fd-a2f8-4262-81e5-ab028c6506a1}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 0.753473729169681, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {9bdcf653-9208-444f-abd4-40bc6d797f8a}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 Electric Equipment, !- Name - {d64c15fd-a2f8-4262-81e5-ab028c6506a1}, !- Electric Equipment Definition Name - {1afa8972-0451-45b3-8dda-3a3a776e008b}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {f63de19d-9cf2-4162-bf2f-bdb7fddc1b7d}, !- Handle - 189.1-2009 - Office - Lobby - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {be8c0991-a26a-4dda-ae53-b3249804ebf9}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3, !- Name - , !- Default Construction Set Name - {036543da-4144-409d-981b-4ddf12ce677e}, !- Default Schedule Set Name - {e1b28003-ba15-4183-b5d9-585f72709eff}, !- Group Rendering Name - {f57d4115-03b8-4303-b205-42221bda4210}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - OpenOffice; !- Standards Space Type - -OS:Rendering:Color, - {e1b28003-ba15-4183-b5d9-585f72709eff}, !- Handle - Rendering Color 8, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {036543da-4144-409d-981b-4ddf12ce677e}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {6c9d9254-9bb8-426a-af9b-3677316cf238}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 10.6562713125426, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {1b233aa2-884a-4b12-bd88-76092f6d2267}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 Lights, !- Name - {6c9d9254-9bb8-426a-af9b-3677316cf238}, !- Lights Definition Name - {be8c0991-a26a-4dda-ae53-b3249804ebf9}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {f57d4115-03b8-4303-b205-42221bda4210}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 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:People:Definition, - {0e75bef1-0c07-4d0b-822d-d2df7c6f1111}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.056510529687726, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {30d60591-72de-4494-afc4-000c9be76f8b}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 People, !- Name - {0e75bef1-0c07-4d0b-822d-d2df7c6f1111}, !- People Definition Name - {be8c0991-a26a-4dda-ae53-b3249804ebf9}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {ef0be415-7a7a-4be9-895a-fefe67ce5d3e}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 Infiltration, !- Name - {be8c0991-a26a-4dda-ae53-b3249804ebf9}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {6b2d3c23-bd59-4857-b849-eaf6b4a64e2f}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 7.6423763958639, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {1e0e1e3c-6473-41c2-ace8-efda06663fe0}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 Electric Equipment, !- Name - {6b2d3c23-bd59-4857-b849-eaf6b4a64e2f}, !- Electric Equipment Definition Name - {be8c0991-a26a-4dda-ae53-b3249804ebf9}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {b88ada7e-5b66-4c29-8b49-7f9040c59933}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:Building, - {f73b031c-bb31-4fa0-ad96-2e9846c4d752}, !- Handle - Building 1, !- Name - , !- Building Sector Type - , !- North Axis {deg} - , !- Nominal Floor to Floor Height {m} - {ad9972e4-489e-404e-841e-c9bbd72d0111}, !- Space Type Name - {58749418-1c83-496b-94e6-80aa0fd3ac39}, !- Default Construction Set Name - , !- Default Schedule Set Name - , !- Standards Number of Stories - , !- Standards Number of Above Ground Stories - , !- Standards Building Type - , !- Standards Number of Living Units - , !- Relocatable - ; !- Nominal Floor to Ceiling Height {m} - -OS:SpaceType, - {c0190c37-61e0-43b8-b980-313f616f75af}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3, !- Name - , !- Default Construction Set Name - {7b266719-acd7-491e-9cdb-d0f00a5dfec4}, !- Default Schedule Set Name - {061734ce-19f4-4c27-a203-4b67b00d47ac}, !- Group Rendering Name - {107e2dcf-081d-47d9-b8b0-921f5279392b}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - PrintRoom; !- Standards Space Type - -OS:Rendering:Color, - {061734ce-19f4-4c27-a203-4b67b00d47ac}, !- Handle - Rendering Color 9, !- Name - 41, !- Rendering Red Value - 31, !- Rendering Green Value - 169; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {7b266719-acd7-491e-9cdb-d0f00a5dfec4}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {7a23b936-59e3-4314-9b52-3944ebdea4dc}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 10.6562713125426, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {1979f9cd-f801-4f74-b848-c88f17dc5b44}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 Lights, !- Name - {7a23b936-59e3-4314-9b52-3944ebdea4dc}, !- Lights Definition Name - {c0190c37-61e0-43b8-b980-313f616f75af}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {107e2dcf-081d-47d9-b8b0-921f5279392b}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 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:People:Definition, - {1e43b6dd-36da-4525-88ab-833e4310a5da}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {673d36c1-b361-47e7-9007-e4e91432cb81}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 People, !- Name - {1e43b6dd-36da-4525-88ab-833e4310a5da}, !- People Definition Name - {c0190c37-61e0-43b8-b980-313f616f75af}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {e520996e-cb4e-4946-ae4e-12637ab956f9}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 Infiltration, !- Name - {c0190c37-61e0-43b8-b980-313f616f75af}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {174d96d7-8543-478a-a5f4-76314ad6b67f}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 30.0313100626201, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {13850150-ad18-438c-906d-18f8cabcbdf5}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 Electric Equipment, !- Name - {174d96d7-8543-478a-a5f4-76314ad6b67f}, !- Electric Equipment Definition Name - {c0190c37-61e0-43b8-b980-313f616f75af}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {cb7fb571-b062-476f-8b81-9ee2aa7be729}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {a818abd3-e1c5-4d15-9f17-96bb76777e4b}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3, !- Name - , !- Default Construction Set Name - {2cb74439-6b94-4bdb-bc70-0ca10c0d3b2e}, !- Default Schedule Set Name - {e64f5cb7-2c3d-45a9-84a6-367125f15aff}, !- Group Rendering Name - {65cf1445-a2aa-42ad-9ff8-c4b30ec4e53d}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Restroom; !- Standards Space Type - -OS:Rendering:Color, - {e64f5cb7-2c3d-45a9-84a6-367125f15aff}, !- Handle - Rendering Color 10, !- Name - 169, !- Rendering Red Value - 169, !- Rendering Green Value - 31; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {2cb74439-6b94-4bdb-bc70-0ca10c0d3b2e}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {16c83f7f-a90c-43cd-99b3-fe5b6f146132}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 8.71876743753488, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {3120c45b-328a-43ca-b763-11e879fb3a84}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 Lights, !- Name - {16c83f7f-a90c-43cd-99b3-fe5b6f146132}, !- Lights Definition Name - {a818abd3-e1c5-4d15-9f17-96bb76777e4b}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {65cf1445-a2aa-42ad-9ff8-c4b30ec4e53d}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 Ventilation, !- Name - Sum, !- Outdoor Air Method - , !- Outdoor Air Flow per Person {m3/s-person} - 0.0048768, !- 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:People:Definition, - {134d060a-3bfc-40bd-bda0-b77a4720c9c2}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {4bd834f4-5ae4-4146-8dbd-c600ee119692}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 People, !- Name - {134d060a-3bfc-40bd-bda0-b77a4720c9c2}, !- People Definition Name - {a818abd3-e1c5-4d15-9f17-96bb76777e4b}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {6d0ceae2-80c3-45c0-a634-2929c8a56678}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 Infiltration, !- Name - {a818abd3-e1c5-4d15-9f17-96bb76777e4b}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {6330081f-04c2-429c-adff-1624fc497cd6}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 0.753473729169681, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {569209c0-ef8b-44f5-9f86-048af1de9fa7}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 Electric Equipment, !- Name - {6330081f-04c2-429c-adff-1624fc497cd6}, !- Electric Equipment Definition Name - {a818abd3-e1c5-4d15-9f17-96bb76777e4b}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {36f7e68a-a20c-471b-b929-d4756cba022f}, !- Handle - 189.1-2009 - Office - Restroom - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {531dd228-de8a-4d34-9988-9ac8d77877a0}, !- Handle - 189.1-2009 - Office - Stair - CZ1-3, !- Name - , !- Default Construction Set Name - {63837c20-3153-4ace-86c9-1d8bf8b43d7a}, !- Default Schedule Set Name - {d956b768-7de2-4589-97c3-e0178f40b773}, !- Group Rendering Name - {65e99483-2d7e-4ca8-9e0d-a7914f938f56}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Stair; !- Standards Space Type - -OS:Rendering:Color, - {d956b768-7de2-4589-97c3-e0178f40b773}, !- Handle - Rendering Color 11, !- Name - 230, !- Rendering Red Value - 157, !- Rendering Green Value - 120; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {63837c20-3153-4ace-86c9-1d8bf8b43d7a}, !- Handle - 189.1-2009 - Office - Stair - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - , !- Number of People Schedule Name - , !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - , !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {b70563e1-7e2b-4c90-b280-61fcf401da4c}, !- Handle - 189.1-2009 - Office - Stair - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 5.81251162502325, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {3637974c-a21a-4d9a-9a86-de0b34a41576}, !- Handle - 189.1-2009 - Office - Stair - CZ1-3 Lights, !- Name - {b70563e1-7e2b-4c90-b280-61fcf401da4c}, !- Lights Definition Name - {531dd228-de8a-4d34-9988-9ac8d77877a0}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {65e99483-2d7e-4ca8-9e0d-a7914f938f56}, !- Handle - 189.1-2009 - Office - Stair - CZ1-3 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:SpaceInfiltration:DesignFlowRate, - {b55008d6-57ec-4a59-853d-dc295ea83be3}, !- Handle - 189.1-2009 - Office - Stair - CZ1-3 Infiltration, !- Name - {531dd228-de8a-4d34-9988-9ac8d77877a0}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ThermostatSetpoint:DualSetpoint, - {8f2a6abe-ef82-4cf6-9a19-42526787c24e}, !- Handle - 189.1-2009 - Office - Stair - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {355570b9-3696-4442-903b-449be8ccf16a}, !- Handle - 189.1-2009 - Office - Storage - CZ1-3, !- Name - , !- Default Construction Set Name - {c81d9947-159d-4809-8a7f-ae3bb2fe95fa}, !- Default Schedule Set Name - {40564289-28c7-4fd8-b822-fe7139d1f5bf}, !- Group Rendering Name - {99330741-43bc-49e4-9991-d6cf4a0ba4aa}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Storage; !- Standards Space Type - -OS:Rendering:Color, - {40564289-28c7-4fd8-b822-fe7139d1f5bf}, !- Handle - Rendering Color 12, !- Name - 120, !- Rendering Red Value - 149, !- Rendering Green Value - 230; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {c81d9947-159d-4809-8a7f-ae3bb2fe95fa}, !- Handle - 189.1-2009 - Office - Storage - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - , !- Number of People Schedule Name - , !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - , !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {373b8d0f-41c3-4c11-97ad-74ff4084e752}, !- Handle - 189.1-2009 - Office - Storage - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 7.750015500031, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {99c236b6-e588-4c3f-ae8e-98f257807e7c}, !- Handle - 189.1-2009 - Office - Storage - CZ1-3 Lights, !- Name - {373b8d0f-41c3-4c11-97ad-74ff4084e752}, !- Lights Definition Name - {355570b9-3696-4442-903b-449be8ccf16a}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {99330741-43bc-49e4-9991-d6cf4a0ba4aa}, !- Handle - 189.1-2009 - Office - Storage - CZ1-3 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:SpaceInfiltration:DesignFlowRate, - {76e2e858-0e95-49d7-a5bd-46ff2e7bf75b}, !- Handle - 189.1-2009 - Office - Storage - CZ1-3 Infiltration, !- Name - {355570b9-3696-4442-903b-449be8ccf16a}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ThermostatSetpoint:DualSetpoint, - {f8e65471-7105-4908-ae0b-ec42ae5587b5}, !- Handle - 189.1-2009 - Office - Storage - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {bcd867f1-c57c-4206-9b38-1c7e254a4143}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3, !- Name - , !- Default Construction Set Name - {c044c52f-9474-4ba2-9f45-7069de4c6b87}, !- Default Schedule Set Name - {cf88ad3d-58c9-452c-88c4-ac7ea371f930}, !- Group Rendering Name - {6dbe4189-6232-4d6e-9ac9-63d6e0ee9668}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Vending; !- Standards Space Type - -OS:Rendering:Color, - {cf88ad3d-58c9-452c-88c4-ac7ea371f930}, !- Handle - Rendering Color 13, !- Name - 230, !- Rendering Red Value - 157, !- Rendering Green Value - 120; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {c044c52f-9474-4ba2-9f45-7069de4c6b87}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {dba49d56-ae67-469f-bd99-1ea63a8e50b2}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 4.84375968751938, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {57f0532e-f17a-45d3-879e-193fae9dc176}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 Lights, !- Name - {dba49d56-ae67-469f-bd99-1ea63a8e50b2}, !- Lights Definition Name - {bcd867f1-c57c-4206-9b38-1c7e254a4143}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {6dbe4189-6232-4d6e-9ac9-63d6e0ee9668}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 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:People:Definition, - {b2bafb87-d4df-471b-9770-b0d82b64b0df}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {d9509edb-bd80-4225-9ee6-523bf74d5bee}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 People, !- Name - {b2bafb87-d4df-471b-9770-b0d82b64b0df}, !- People Definition Name - {bcd867f1-c57c-4206-9b38-1c7e254a4143}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {426c18b5-7d3a-4579-b2a8-8e385458dd11}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 Infiltration, !- Name - {bcd867f1-c57c-4206-9b38-1c7e254a4143}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {4c5550a6-4da3-4490-ac94-170d7b86c60a}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 41.4410551043324, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {cecff4bf-5467-4b34-a941-9654b489181d}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 Electric Equipment, !- Name - {4c5550a6-4da3-4490-ac94-170d7b86c60a}, !- Electric Equipment Definition Name - {bcd867f1-c57c-4206-9b38-1c7e254a4143}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {de4444a1-34f5-4cf5-ac22-7469b7be466d}, !- Handle - 189.1-2009 - Office - Vending - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {4a0f0aee-7d95-4341-825c-8f70d1309b6b}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3, !- Name - , !- Default Construction Set Name - {39feaf8a-6d16-4e68-9b8c-db2038aff03f}, !- Default Schedule Set Name - {6fc91438-7cba-42dc-a37d-48434d3c06ca}, !- Group Rendering Name - {b1c52cb5-3326-4b43-a12f-f30cb1ac3119}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - WholeBuilding - Lg Office; !- Standards Space Type - -OS:Rendering:Color, - {6fc91438-7cba-42dc-a37d-48434d3c06ca}, !- Handle - Rendering Color 14, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {39feaf8a-6d16-4e68-9b8c-db2038aff03f}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {ee654552-7290-4128-a647-073eff68ebb6}, !- Number of People Schedule Name - {264acba7-523a-484e-8e51-ae85870ba167}, !- People Activity Level Schedule Name - {3ce9efa4-e219-47f8-a14a-7affd9c11d70}, !- Lighting Schedule Name - {6197bef3-80c6-4043-b8a4-b9cd96652248}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {e0eb0ae2-9b39-46b2-b9f9-f7879620c44e}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {58b2159f-d857-497e-ae6a-2e8bd3520ef8}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 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} - -OS:Lights, - {63218795-4f24-43ea-9e63-a6d83e1e86a3}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Lights, !- Name - {58b2159f-d857-497e-ae6a-2e8bd3520ef8}, !- Lights Definition Name - {4a0f0aee-7d95-4341-825c-8f70d1309b6b}; !- Space or SpaceType Name - -OS:Schedule:Ruleset, - {3ce9efa4-e219-47f8-a14a-7affd9c11d70}, ! Handle - Large Office Bldg Light, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - {8beabbf7-6dca-4a90-862d-6bcb3322b518}, ! Default Day Schedule Name - {7c11b08d-b72b-496a-be17-e15d5503376c}, ! Summer Design Day Schedule Name - {7a49ad88-01c4-44be-b068-fb81639cb5a0}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, !- Handle - Fractional, !- Name - 0, !- Lower Limit Value - 1, !- Upper Limit Value - Continuous; !- Numeric Type - -OS:Schedule:Day, - {8beabbf7-6dca-4a90-862d-6bcb3322b518}, ! Handle - Large Office Bldg Light Default Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 5, !- Hour 1 - 0, !- Minute 1 - 0.05, !- Value Until Time 1 - 7, !- Hour 2 - 0, !- Minute 2 - 0.1, !- Value Until Time 2 - 8, !- Hour 3 - 0, !- Minute 3 - 0.3, !- Value Until Time 3 - 17, !- Hour 4 - 0, !- Minute 4 - 0.9, !- Value Until Time 4 - 18, !- Hour 5 - 0, !- Minute 5 - 0.7, !- Value Until Time 5 - 20, !- Hour 6 - 0, !- Minute 6 - 0.5, !- Value Until Time 6 - 22, !- Hour 7 - 0, !- Minute 7 - 0.3, !- Value Until Time 7 - 23, !- Hour 8 - 0, !- Minute 8 - 0.1, !- Value Until Time 8 - 24, !- Hour 9 - 0, !- Minute 9 - 0.05; !- Value Until Time 9 - -OS:Schedule:Day, - {7c11b08d-b72b-496a-be17-e15d5503376c}, ! Handle - Large Office Bldg Light Summer Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 - -OS:Schedule:Day, - {7a49ad88-01c4-44be-b068-fb81639cb5a0}, ! Handle - Large Office Bldg Light Winter Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {5d2442a3-7cb6-411b-a86e-540208ced37c}, ! Handle - Large Office Bldg Light Rule 1, ! Name - {3ce9efa4-e219-47f8-a14a-7affd9c11d70}, ! Schedule Ruleset Name - 0, ! Rule Order - {b3d180ee-23b9-40fa-8e2f-5a9ee8a0d777}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {b3d180ee-23b9-40fa-8e2f-5a9ee8a0d777}, ! Handle - Large Office Bldg Light Rule 1 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0.050000000000000003; ! Value Until Time 1 - -OS:Schedule:Rule, - {91e4e221-38d2-42cf-bbac-5d4e5f7fa888}, ! Handle - Large Office Bldg Light Rule 2, ! Name - {3ce9efa4-e219-47f8-a14a-7affd9c11d70}, ! Schedule Ruleset Name - 1, ! Rule Order - {4ad2aa5c-62f4-4785-9ee9-2c7475032049}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {4ad2aa5c-62f4-4785-9ee9-2c7475032049}, ! Handle - Large Office Bldg Light Rule 2 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0.050000000000000003, ! Value Until Time 1 - 8, ! Hour 2 - 0, ! Minute 2 - 0.10000000000000001, ! Value Until Time 2 - 14, ! Hour 3 - 0, ! Minute 3 - 0.5, ! Value Until Time 3 - 17, ! Hour 4 - 0, ! Minute 4 - 0.14999999999999999, ! Value Until Time 4 - 24, ! Hour 5 - 0, ! Minute 5 - 0.050000000000000003; ! Value Until Time 5 - -OS:DesignSpecification:OutdoorAir, - {b1c52cb5-3326-4b43-a12f-f30cb1ac3119}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 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:People:Definition, - {2e56af89-445a-4423-b5f8-13463d65edc8}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {4615604a-bd1a-474d-91be-9f075c13bd9a}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 People, !- Name - {2e56af89-445a-4423-b5f8-13463d65edc8}, !- People Definition Name - {4a0f0aee-7d95-4341-825c-8f70d1309b6b}; !- Space or SpaceType Name - -OS:Schedule:Ruleset, - {ee654552-7290-4128-a647-073eff68ebb6}, ! Handle - Large Office Bldg Occ, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - {4a4adc75-c27b-4422-94cd-d8d22f2166ed}, ! Default Day Schedule Name - {cb8636f6-4882-43e8-ae4a-15479a71f2bb}, ! Summer Design Day Schedule Name - {580aadb6-816a-4308-bb19-fc0c3724acd2}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {4a4adc75-c27b-4422-94cd-d8d22f2166ed}, ! Handle - Large Office Bldg Occ Default Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 7, !- Hour 2 - 0, !- Minute 2 - 0.1, !- Value Until Time 2 - 8, !- Hour 3 - 0, !- Minute 3 - 0.2, !- Value Until Time 3 - 12, !- Hour 4 - 0, !- Minute 4 - 0.95, !- Value Until Time 4 - 13, !- Hour 5 - 0, !- Minute 5 - 0.5, !- Value Until Time 5 - 17, !- Hour 6 - 0, !- Minute 6 - 0.95, !- Value Until Time 6 - 18, !- Hour 7 - 0, !- Minute 7 - 0.7, !- Value Until Time 7 - 20, !- Hour 8 - 0, !- Minute 8 - 0.4, !- Value Until Time 8 - 22, !- Hour 9 - 0, !- Minute 9 - 0.1, !- Value Until Time 9 - 24, !- Hour 10 - 0, !- Minute 10 - 0.05; !- Value Until Time 10 - -OS:Schedule:Day, - {cb8636f6-4882-43e8-ae4a-15479a71f2bb}, ! Handle - Large Office Bldg Occ Summer Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 1, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 0.050000000000000003; ! Value Until Time 3 - -OS:Schedule:Day, - {580aadb6-816a-4308-bb19-fc0c3724acd2}, ! Handle - Large Office Bldg Occ Winter Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {37f5d46d-389f-4543-b8e4-84f4c2e10716}, ! Handle - Large Office Bldg Occ Rule 1, ! Name - {ee654552-7290-4128-a647-073eff68ebb6}, ! Schedule Ruleset Name - 0, ! Rule Order - {122eaad1-5e72-4d01-a13d-d4a41ab5fe0b}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {122eaad1-5e72-4d01-a13d-d4a41ab5fe0b}, ! Handle - Large Office Bldg Occ Rule 1 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {9ffe8f16-2513-43ec-8c59-17bafcf21414}, ! Handle - Large Office Bldg Occ Rule 2, ! Name - {ee654552-7290-4128-a647-073eff68ebb6}, ! Schedule Ruleset Name - 1, ! Rule Order - {cfce9f13-ba32-46c6-824f-a45f943e2d0c}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {cfce9f13-ba32-46c6-824f-a45f943e2d0c}, ! Handle - Large Office Bldg Occ Rule 2 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0, ! Value Until Time 1 - 8, ! Hour 2 - 0, ! Minute 2 - 0.10000000000000001, ! Value Until Time 2 - 14, ! Hour 3 - 0, ! Minute 3 - 0.5, ! Value Until Time 3 - 17, ! Hour 4 - 0, ! Minute 4 - 0.10000000000000001, ! Value Until Time 4 - 24, ! Hour 5 - 0, ! Minute 5 - 0; ! Value Until Time 5 - -OS:Schedule:Ruleset, - {264acba7-523a-484e-8e51-ae85870ba167}, ! Handle - Large Office Activity, ! Name - {d29d6f61-dbb6-43a0-8e80-994bfb4a73b2}, ! Schedule Type Limits Name - {0a6d9e60-3fca-4618-b0de-820e8f6767da}, ! Default Day Schedule Name - {642af5d3-2b0f-4b01-95b7-7698f50934d0}, ! Summer Design Day Schedule Name - {5490c47e-82ae-4901-8434-0b12bb9436ba}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {d29d6f61-dbb6-43a0-8e80-994bfb4a73b2}, !- Handle - ActivityLevel 5, !- Name - 0, !- Lower Limit Value - , !- Upper Limit Value - Continuous, !- Numeric Type - ActivityLevel; !- Unit Type - -OS:Schedule:Day, - {0a6d9e60-3fca-4618-b0de-820e8f6767da}, ! Handle - Large Office Activity Default Schedule, ! Name - {d29d6f61-dbb6-43a0-8e80-994bfb4a73b2}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 120; !- Value Until Time 1 - -OS:Schedule:Day, - {642af5d3-2b0f-4b01-95b7-7698f50934d0}, ! Handle - Large Office Activity Summer Design Day, ! Name - {d29d6f61-dbb6-43a0-8e80-994bfb4a73b2}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 120; ! Value Until Time 1 - -OS:Schedule:Day, - {5490c47e-82ae-4901-8434-0b12bb9436ba}, ! Handle - Large Office Activity Winter Design Day, ! Name - {d29d6f61-dbb6-43a0-8e80-994bfb4a73b2}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 120; ! Value Until Time 1 - -OS:SpaceInfiltration:DesignFlowRate, - {90014069-9853-4f75-becd-f17e7166df17}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Infiltration, !- Name - {4a0f0aee-7d95-4341-825c-8f70d1309b6b}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:Schedule:Ruleset, - {e0eb0ae2-9b39-46b2-b9f9-f7879620c44e}, ! Handle - Large Office Infil Quarter On, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - {bfe29145-2fb3-4f01-b73d-12fd1bf40b9a}, ! Default Day Schedule Name - {9a0c3c4d-8b77-40e3-8b42-8886655c3c85}, ! Summer Design Day Schedule Name - {694259ab-6cad-41eb-8340-268853e99403}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {bfe29145-2fb3-4f01-b73d-12fd1bf40b9a}, ! Handle - Large Office Infil Quarter On Default Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 1, !- Value Until Time 1 - 22, !- Hour 2 - 0, !- Minute 2 - 0.25, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 1; !- Value Until Time 3 - -OS:Schedule:Day, - {9a0c3c4d-8b77-40e3-8b42-8886655c3c85}, ! Handle - Large Office Infil Quarter On Summer Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:Schedule:Day, - {694259ab-6cad-41eb-8340-268853e99403}, ! Handle - Large Office Infil Quarter On Winter Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:Schedule:Rule, - {6bcd70a7-2c48-43af-b1d9-a1d8959caf3f}, ! Handle - Large Office Infil Quarter On Rule 1, ! Name - {e0eb0ae2-9b39-46b2-b9f9-f7879620c44e}, ! Schedule Ruleset Name - 0, ! Rule Order - {8bb9de2a-85df-481a-9982-4f45f1766e8f}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {8bb9de2a-85df-481a-9982-4f45f1766e8f}, ! Handle - Large Office Infil Quarter On Rule 1 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 - -OS:Schedule:Rule, - {342d2dd4-2b6e-46cd-a552-c5fd1e99b43f}, ! Handle - Large Office Infil Quarter On Rule 2, ! Name - {e0eb0ae2-9b39-46b2-b9f9-f7879620c44e}, ! Schedule Ruleset Name - 1, ! Rule Order - {97d9dc0f-3a5d-411e-9d06-beb04225a941}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {97d9dc0f-3a5d-411e-9d06-beb04225a941}, ! Handle - Large Office Infil Quarter On Rule 2 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:ElectricEquipment:Definition, - {148a4383-6613-4cb0-810d-92a639475c5c}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 5.81251412763851, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {896f52d4-b30e-46c3-b809-17a91eb06105}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Electric Equipment, !- Name - {148a4383-6613-4cb0-810d-92a639475c5c}, !- Electric Equipment Definition Name - {4a0f0aee-7d95-4341-825c-8f70d1309b6b}; !- Space or SpaceType Name - -OS:Schedule:Ruleset, - {6197bef3-80c6-4043-b8a4-b9cd96652248}, ! Handle - Large Office Bldg Equip, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - {ed62044d-4125-40d6-bde0-2da08536ab6d}, ! Default Day Schedule Name - {0f2b252a-8a0f-40ba-98fa-718bfa268645}, ! Summer Design Day Schedule Name - {0a7a35c9-9c2a-4545-bda6-215062948ca8}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {ed62044d-4125-40d6-bde0-2da08536ab6d}, ! Handle - Large Office Bldg Equip Default Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0.4, !- Value Until Time 1 - 12, !- Hour 2 - 0, !- Minute 2 - 0.9, !- Value Until Time 2 - 13, !- Hour 3 - 0, !- Minute 3 - 0.8, !- Value Until Time 3 - 17, !- Hour 4 - 0, !- Minute 4 - 0.9, !- Value Until Time 4 - 18, !- Hour 5 - 0, !- Minute 5 - 0.8, !- Value Until Time 5 - 20, !- Hour 6 - 0, !- Minute 6 - 0.6, !- Value Until Time 6 - 22, !- Hour 7 - 0, !- Minute 7 - 0.5, !- Value Until Time 7 - 24, !- Hour 8 - 0, !- Minute 8 - 0.4; !- Value Until Time 8 - -OS:Schedule:Day, - {0f2b252a-8a0f-40ba-98fa-718bfa268645}, ! Handle - Large Office Bldg Equip Summer Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 - -OS:Schedule:Day, - {0a7a35c9-9c2a-4545-bda6-215062948ca8}, ! Handle - Large Office Bldg Equip Winter Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {15242b3b-46fd-486a-bb69-10058bd0409e}, ! Handle - Large Office Bldg Equip Rule 1, ! Name - {6197bef3-80c6-4043-b8a4-b9cd96652248}, ! Schedule Ruleset Name - 0, ! Rule Order - {4aec23a1-f64b-4f3b-a101-c2dd9519312d}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {4aec23a1-f64b-4f3b-a101-c2dd9519312d}, ! Handle - Large Office Bldg Equip Rule 1 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0.29999999999999999; ! Value Until Time 1 - -OS:Schedule:Rule, - {01ed547e-670b-40a5-85bb-225ebec0397e}, ! Handle - Large Office Bldg Equip Rule 2, ! Name - {6197bef3-80c6-4043-b8a4-b9cd96652248}, ! Schedule Ruleset Name - 1, ! Rule Order - {377d7cca-12eb-4a14-b460-434fb8eebbed}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {377d7cca-12eb-4a14-b460-434fb8eebbed}, ! Handle - Large Office Bldg Equip Rule 2 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0.29999999999999999, ! Value Until Time 1 - 8, ! Hour 2 - 0, ! Minute 2 - 0.40000000000000002, ! Value Until Time 2 - 14, ! Hour 3 - 0, ! Minute 3 - 0.5, ! Value Until Time 3 - 17, ! Hour 4 - 0, ! Minute 4 - 0.34999999999999998, ! Value Until Time 4 - 24, ! Hour 5 - 0, ! Minute 5 - 0.29999999999999999; ! Value Until Time 5 - -OS:ThermostatSetpoint:DualSetpoint, - {2e5bfd45-be53-46a2-a1be-badb1d1f9ae8}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ1-3 Thermostat, !- Name - {e1c00ef5-f530-4453-a67b-ca54f0ae084f}, !- Heating Setpoint Temperature Schedule Name - {205b7ba7-36bf-4caa-b304-f7da82550d15}; !- Cooling Setpoint Temperature Schedule Name - -OS:Schedule:Ruleset, - {e1c00ef5-f530-4453-a67b-ca54f0ae084f}, ! Handle - Large Office HtgSetp, ! Name - {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, ! Schedule Type Limits Name - {c03c043f-e445-4419-b05d-8448115b3bab}, ! Default Day Schedule Name - {a9f892cb-c9f4-4a21-b2b3-875ef1466bf3}, ! Summer Design Day Schedule Name - {77fb46ee-722d-4b5a-b718-ceafddc8aabf}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, !- Handle - Temperature 3, !- Name - , !- Lower Limit Value - , !- Upper Limit Value - Continuous, !- Numeric Type - Temperature; !- Unit Type - -OS:Schedule:Day, - {c03c043f-e445-4419-b05d-8448115b3bab}, ! Handle - Large Office HtgSetp Default Schedule, ! Name - {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 15.6, !- Value Until Time 1 - 22, !- Hour 2 - 0, !- Minute 2 - 21, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 15.6; !- Value Until Time 3 - -OS:Schedule:Day, - {a9f892cb-c9f4-4a21-b2b3-875ef1466bf3}, ! Handle - Large Office HtgSetp Summer Design Day, ! Name - {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 15.6; ! Value Until Time 1 - -OS:Schedule:Day, - {77fb46ee-722d-4b5a-b718-ceafddc8aabf}, ! Handle - Large Office HtgSetp Winter Design Day, ! Name - {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 21; ! Value Until Time 1 - -OS:Schedule:Rule, - {4f682768-9ffb-4e7c-9e74-78813fdc32a0}, ! Handle - Large Office HtgSetp Rule 1, ! Name - {e1c00ef5-f530-4453-a67b-ca54f0ae084f}, ! Schedule Ruleset Name - 0, ! Rule Order - {7545c1d3-7c27-431a-bcf9-cb0c76a60e37}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {7545c1d3-7c27-431a-bcf9-cb0c76a60e37}, ! Handle - Large Office HtgSetp Rule 1 Day Schedule, ! Name - {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 15.6; ! Value Until Time 1 - -OS:Schedule:Rule, - {f80fc661-2858-4988-ada5-e6c492332983}, ! Handle - Large Office HtgSetp Rule 2, ! Name - {e1c00ef5-f530-4453-a67b-ca54f0ae084f}, ! Schedule Ruleset Name - 1, ! Rule Order - {3d9b97da-f484-4675-9996-0cfe5e0f120e}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {3d9b97da-f484-4675-9996-0cfe5e0f120e}, ! Handle - Large Office HtgSetp Rule 2 Day Schedule, ! Name - {81589aa3-85f3-4555-b92c-d10e45fa9ee1}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 15.6, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 21, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 15.6; ! Value Until Time 3 - -OS:Schedule:Ruleset, - {205b7ba7-36bf-4caa-b304-f7da82550d15}, ! Handle - Large Office ClgSetp, ! Name - {088565a9-dd39-48f6-99d3-bfe5073149c2}, ! Schedule Type Limits Name - {bdb46914-0540-45a5-b513-ee6f82b41886}, ! Default Day Schedule Name - {4109675b-2e2f-446b-873f-f694dae16827}, ! Summer Design Day Schedule Name - {30c08a39-528f-426d-bc84-48cf54111147}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {088565a9-dd39-48f6-99d3-bfe5073149c2}, !- Handle - Temperature 5, !- Name - , !- Lower Limit Value - , !- Upper Limit Value - Continuous, !- Numeric Type - Temperature; !- Unit Type - -OS:Schedule:Day, - {bdb46914-0540-45a5-b513-ee6f82b41886}, ! Handle - Large Office ClgSetp Default Schedule, ! Name - {088565a9-dd39-48f6-99d3-bfe5073149c2}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 26.7, !- Value Until Time 1 - 22, !- Hour 2 - 0, !- Minute 2 - 24, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 26.7; !- Value Until Time 3 - -OS:Schedule:Day, - {4109675b-2e2f-446b-873f-f694dae16827}, ! Handle - Large Office ClgSetp Summer Design Day, ! Name - {088565a9-dd39-48f6-99d3-bfe5073149c2}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 24, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 26.699999999999999; ! Value Until Time 3 - -OS:Schedule:Day, - {30c08a39-528f-426d-bc84-48cf54111147}, ! Handle - Large Office ClgSetp Winter Design Day, ! Name - {088565a9-dd39-48f6-99d3-bfe5073149c2}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999; ! Value Until Time 1 - -OS:Schedule:Rule, - {37df0d56-4bba-4227-8d69-9607a686014f}, ! Handle - Large Office ClgSetp Rule 1, ! Name - {205b7ba7-36bf-4caa-b304-f7da82550d15}, ! Schedule Ruleset Name - 0, ! Rule Order - {cd196b78-7b8b-429f-b96a-688c4ac8a99a}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {cd196b78-7b8b-429f-b96a-688c4ac8a99a}, ! Handle - Large Office ClgSetp Rule 1 Day Schedule, ! Name - {088565a9-dd39-48f6-99d3-bfe5073149c2}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999; ! Value Until Time 1 - -OS:Schedule:Rule, - {ccb2ba27-b2d6-4f5f-b02b-091c4def877f}, ! Handle - Large Office ClgSetp Rule 2, ! Name - {205b7ba7-36bf-4caa-b304-f7da82550d15}, ! Schedule Ruleset Name - 1, ! Rule Order - {279ad10c-a720-45f0-80eb-18bb3e37607b}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {279ad10c-a720-45f0-80eb-18bb3e37607b}, ! Handle - Large Office ClgSetp Rule 2 Day Schedule, ! Name - {088565a9-dd39-48f6-99d3-bfe5073149c2}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 24, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 26.699999999999999; ! Value Until Time 3 - -OS:SpaceType, - {f1a5c162-f322-4c79-ba15-e43020514289}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3, !- Name - , !- Default Construction Set Name - {f97da1fb-3578-4a67-9933-d2891cb549b6}, !- Default Schedule Set Name - {03e06c9d-a4bc-49de-952a-4329faa7fb71}, !- Group Rendering Name - {8f13e24f-0968-430b-82b1-c5e41da9fafa}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - WholeBuilding - Md Office; !- Standards Space Type - -OS:Rendering:Color, - {03e06c9d-a4bc-49de-952a-4329faa7fb71}, !- Handle - Rendering Color 15, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {f97da1fb-3578-4a67-9933-d2891cb549b6}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {c46af6b1-d997-440b-a480-2b785127791c}, !- Number of People Schedule Name - {4401923f-7369-4704-af97-5f02eccc07c4}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {e7df833e-4db6-469d-ad96-14b52ff0ceef}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {4b35ab56-cec3-45c0-bd82-7c7c88e72873}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {813e77fb-5ac1-47f6-a5e0-d9a9cd3db4a9}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 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} - -OS:Lights, - {a5f0d2c1-e014-479a-8f1b-3ebac3e265e4}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Lights, !- Name - {813e77fb-5ac1-47f6-a5e0-d9a9cd3db4a9}, !- Lights Definition Name - {f1a5c162-f322-4c79-ba15-e43020514289}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {8f13e24f-0968-430b-82b1-c5e41da9fafa}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 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:People:Definition, - {d2de25c6-7190-4247-bdb6-aa1580eb569f}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {58a62980-ba6f-4bad-9e5d-fdacc8096f52}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 People, !- Name - {d2de25c6-7190-4247-bdb6-aa1580eb569f}, !- People Definition Name - {f1a5c162-f322-4c79-ba15-e43020514289}; !- Space or SpaceType Name - -OS:Schedule:Ruleset, - {c46af6b1-d997-440b-a480-2b785127791c}, ! Handle - Medium Office Bldg Occ, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - {d9d54295-ecf9-49ea-9cd5-35741ee7140f}, ! Default Day Schedule Name - {2d82484a-7ded-4ae3-b82b-fe668b91bc37}, ! Summer Design Day Schedule Name - {4c00a96b-09d5-4658-89ef-d9ef0898a2d4}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {d9d54295-ecf9-49ea-9cd5-35741ee7140f}, ! Handle - Medium Office Bldg Occ Default Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 7, !- Hour 2 - 0, !- Minute 2 - 0.1, !- Value Until Time 2 - 8, !- Hour 3 - 0, !- Minute 3 - 0.2, !- Value Until Time 3 - 12, !- Hour 4 - 0, !- Minute 4 - 0.95, !- Value Until Time 4 - 13, !- Hour 5 - 0, !- Minute 5 - 0.5, !- Value Until Time 5 - 17, !- Hour 6 - 0, !- Minute 6 - 0.95, !- Value Until Time 6 - 18, !- Hour 7 - 0, !- Minute 7 - 0.7, !- Value Until Time 7 - 20, !- Hour 8 - 0, !- Minute 8 - 0.4, !- Value Until Time 8 - 22, !- Hour 9 - 0, !- Minute 9 - 0.1, !- Value Until Time 9 - 24, !- Hour 10 - 0, !- Minute 10 - 0.05; !- Value Until Time 10 - -OS:Schedule:Day, - {2d82484a-7ded-4ae3-b82b-fe668b91bc37}, ! Handle - Medium Office Bldg Occ Summer Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 1, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 0.050000000000000003; ! Value Until Time 3 - -OS:Schedule:Day, - {4c00a96b-09d5-4658-89ef-d9ef0898a2d4}, ! Handle - Medium Office Bldg Occ Winter Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {7b4107cc-3c92-4323-a753-015efc68bcc2}, ! Handle - Medium Office Bldg Occ Rule 1, ! Name - {c46af6b1-d997-440b-a480-2b785127791c}, ! Schedule Ruleset Name - 0, ! Rule Order - {0ef53acd-53bb-4684-9657-b3c697aefcf1}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {0ef53acd-53bb-4684-9657-b3c697aefcf1}, ! Handle - Medium Office Bldg Occ Rule 1 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {4d201951-02b0-433c-8e17-deb2b0409886}, ! Handle - Medium Office Bldg Occ Rule 2, ! Name - {c46af6b1-d997-440b-a480-2b785127791c}, ! Schedule Ruleset Name - 1, ! Rule Order - {cf6e8c44-7d5c-4f2c-9a53-1b2a7113c47c}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {cf6e8c44-7d5c-4f2c-9a53-1b2a7113c47c}, ! Handle - Medium Office Bldg Occ Rule 2 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0, ! Value Until Time 1 - 8, ! Hour 2 - 0, ! Minute 2 - 0.10000000000000001, ! Value Until Time 2 - 14, ! Hour 3 - 0, ! Minute 3 - 0.5, ! Value Until Time 3 - 17, ! Hour 4 - 0, ! Minute 4 - 0.10000000000000001, ! Value Until Time 4 - 24, ! Hour 5 - 0, ! Minute 5 - 0; ! Value Until Time 5 - -OS:Schedule:Ruleset, - {4401923f-7369-4704-af97-5f02eccc07c4}, ! Handle - Medium Office Activity, ! Name - {95269861-8fab-46f9-aa04-a6e9bad28f6a}, ! Schedule Type Limits Name - {bb81c5f0-bf9a-4988-98c4-eb4a990d7a88}, ! Default Day Schedule Name - {f3b095b2-bfff-494c-896b-85a436510b0b}, ! Summer Design Day Schedule Name - {d26b3326-27cf-44ae-b92e-698b3492b9c3}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {95269861-8fab-46f9-aa04-a6e9bad28f6a}, !- Handle - ActivityLevel 13, !- Name - 0, !- Lower Limit Value - , !- Upper Limit Value - Continuous, !- Numeric Type - ActivityLevel; !- Unit Type - -OS:Schedule:Day, - {bb81c5f0-bf9a-4988-98c4-eb4a990d7a88}, ! Handle - Medium Office Activity Default Schedule, ! Name - {95269861-8fab-46f9-aa04-a6e9bad28f6a}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 120; !- Value Until Time 1 - -OS:Schedule:Day, - {f3b095b2-bfff-494c-896b-85a436510b0b}, ! Handle - Medium Office Activity Summer Design Day, ! Name - {95269861-8fab-46f9-aa04-a6e9bad28f6a}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 120; ! Value Until Time 1 - -OS:Schedule:Day, - {d26b3326-27cf-44ae-b92e-698b3492b9c3}, ! Handle - Medium Office Activity Winter Design Day, ! Name - {95269861-8fab-46f9-aa04-a6e9bad28f6a}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 120; ! Value Until Time 1 - -OS:SpaceInfiltration:DesignFlowRate, - {eeedf250-2cf8-460c-88a9-6a3cf6835b8d}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Infiltration, !- Name - {f1a5c162-f322-4c79-ba15-e43020514289}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:Schedule:Ruleset, - {4b35ab56-cec3-45c0-bd82-7c7c88e72873}, ! Handle - Medium Office Infil Quarter On, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - {d5c45924-8436-4010-89ab-1d4be1c9229b}, ! Default Day Schedule Name - {5cb8e672-ec1d-411a-ad66-83bef8bf8004}, ! Summer Design Day Schedule Name - {61bdc9d6-0f05-4ca1-a38c-fa71dcd32b8f}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {d5c45924-8436-4010-89ab-1d4be1c9229b}, ! Handle - Medium Office Infil Quarter On Default Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 1, !- Value Until Time 1 - 22, !- Hour 2 - 0, !- Minute 2 - 0.25, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 1; !- Value Until Time 3 - -OS:Schedule:Day, - {5cb8e672-ec1d-411a-ad66-83bef8bf8004}, ! Handle - Medium Office Infil Quarter On Summer Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:Schedule:Day, - {61bdc9d6-0f05-4ca1-a38c-fa71dcd32b8f}, ! Handle - Medium Office Infil Quarter On Winter Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:Schedule:Rule, - {61abaf03-1521-4e72-a32f-0622572b46df}, ! Handle - Medium Office Infil Quarter On Rule 1, ! Name - {4b35ab56-cec3-45c0-bd82-7c7c88e72873}, ! Schedule Ruleset Name - 0, ! Rule Order - {b837180a-0538-4830-8423-56d718ec2cf7}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {b837180a-0538-4830-8423-56d718ec2cf7}, ! Handle - Medium Office Infil Quarter On Rule 1 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 - -OS:Schedule:Rule, - {bf208a98-b7ef-4dbb-957d-53cf720abf70}, ! Handle - Medium Office Infil Quarter On Rule 2, ! Name - {4b35ab56-cec3-45c0-bd82-7c7c88e72873}, ! Schedule Ruleset Name - 1, ! Rule Order - {7efacb04-6850-495e-afb7-9d56ea083b53}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {7efacb04-6850-495e-afb7-9d56ea083b53}, ! Handle - Medium Office Infil Quarter On Rule 2 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:ElectricEquipment:Definition, - {08d105c1-a5c4-43eb-872f-8bd123ea9720}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 5.81251162502325, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {92bed684-e409-4e09-8f9b-036a79bdc3c6}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Electric Equipment, !- Name - {08d105c1-a5c4-43eb-872f-8bd123ea9720}, !- Electric Equipment Definition Name - {f1a5c162-f322-4c79-ba15-e43020514289}; !- Space or SpaceType Name - -OS:Schedule:Ruleset, - {e7df833e-4db6-469d-ad96-14b52ff0ceef}, ! Handle - Medium Office Bldg Equip, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - {6ea54946-7d6f-4908-b7bb-972893f935bf}, ! Default Day Schedule Name - {a70a63ce-a586-4a33-ac0e-5bff458a02ad}, ! Summer Design Day Schedule Name - {8d89ff2d-74de-4adc-a2b6-5ed38545666a}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {6ea54946-7d6f-4908-b7bb-972893f935bf}, ! Handle - Medium Office Bldg Equip Default Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0.4, !- Value Until Time 1 - 12, !- Hour 2 - 0, !- Minute 2 - 0.9, !- Value Until Time 2 - 13, !- Hour 3 - 0, !- Minute 3 - 0.8, !- Value Until Time 3 - 17, !- Hour 4 - 0, !- Minute 4 - 0.9, !- Value Until Time 4 - 18, !- Hour 5 - 0, !- Minute 5 - 0.8, !- Value Until Time 5 - 20, !- Hour 6 - 0, !- Minute 6 - 0.6, !- Value Until Time 6 - 22, !- Hour 7 - 0, !- Minute 7 - 0.5, !- Value Until Time 7 - 24, !- Hour 8 - 0, !- Minute 8 - 0.4; !- Value Until Time 8 - -OS:Schedule:Day, - {a70a63ce-a586-4a33-ac0e-5bff458a02ad}, ! Handle - Medium Office Bldg Equip Summer Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 - -OS:Schedule:Day, - {8d89ff2d-74de-4adc-a2b6-5ed38545666a}, ! Handle - Medium Office Bldg Equip Winter Design Day, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {f0c7f526-21ef-4f5e-8c3d-b4e15c5fdad7}, ! Handle - Medium Office Bldg Equip Rule 1, ! Name - {e7df833e-4db6-469d-ad96-14b52ff0ceef}, ! Schedule Ruleset Name - 0, ! Rule Order - {f7fadf05-492e-4735-94c5-ffdf9f951db8}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {f7fadf05-492e-4735-94c5-ffdf9f951db8}, ! Handle - Medium Office Bldg Equip Rule 1 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0.29999999999999999; ! Value Until Time 1 - -OS:Schedule:Rule, - {4faf6bd3-ebb1-47fb-8f59-6dfe65f49500}, ! Handle - Medium Office Bldg Equip Rule 2, ! Name - {e7df833e-4db6-469d-ad96-14b52ff0ceef}, ! Schedule Ruleset Name - 1, ! Rule Order - {b8836416-9204-431d-857d-b99235588cc6}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {b8836416-9204-431d-857d-b99235588cc6}, ! Handle - Medium Office Bldg Equip Rule 2 Day Schedule, ! Name - {af9d9c36-2d5f-4871-8dda-ff179c7ff3db}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0.29999999999999999, ! Value Until Time 1 - 8, ! Hour 2 - 0, ! Minute 2 - 0.40000000000000002, ! Value Until Time 2 - 14, ! Hour 3 - 0, ! Minute 3 - 0.5, ! Value Until Time 3 - 17, ! Hour 4 - 0, ! Minute 4 - 0.34999999999999998, ! Value Until Time 4 - 24, ! Hour 5 - 0, ! Minute 5 - 0.29999999999999999; ! Value Until Time 5 - -OS:ThermostatSetpoint:DualSetpoint, - {6c8f1b66-79b0-4494-bb62-0e6ab336934b}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ1-3 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {e1cc070f-9032-474a-a692-fe55745caa04}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3, !- Name - , !- Default Construction Set Name - {d32f1055-150c-4db0-85e7-cd8d80091a97}, !- Default Schedule Set Name - {acb4804a-6b98-49bc-8337-c128f3c2ea30}, !- Group Rendering Name - {6410e886-4201-485e-a1a7-5fa1c8b6bdf4}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - WholeBuilding - Sm Office; !- Standards Space Type - -OS:Rendering:Color, - {acb4804a-6b98-49bc-8337-c128f3c2ea30}, !- Handle - Rendering Color 16, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {d32f1055-150c-4db0-85e7-cd8d80091a97}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {7db91015-b01f-42c8-b02c-a13d4ed39198}, !- Number of People Schedule Name - {67a55331-2096-4c9b-981a-b63f113d0dd9}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {a51b8fe3-0466-410b-a880-21be07500a52}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {cb7cb752-a33a-400e-97f3-836bf023796e}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {71df8542-c73a-4a75-96b3-2049ec201c3b}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 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} - -OS:Lights, - {453c5932-0aee-459f-ac1d-0563be79832e}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Lights, !- Name - {71df8542-c73a-4a75-96b3-2049ec201c3b}, !- Lights Definition Name - {e1cc070f-9032-474a-a692-fe55745caa04}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {6410e886-4201-485e-a1a7-5fa1c8b6bdf4}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 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:People:Definition, - {7accfcbc-2a91-4f56-8250-c9c73d4bce14}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {d10bfc0d-d823-4de2-8ad6-a13acf3eb5e9}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 People, !- Name - {7accfcbc-2a91-4f56-8250-c9c73d4bce14}, !- People Definition Name - {e1cc070f-9032-474a-a692-fe55745caa04}; !- Space or SpaceType Name - -OS:Schedule:Ruleset, - {7db91015-b01f-42c8-b02c-a13d4ed39198}, ! Handle - Small Office Bldg Occ, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - {64ea2dea-f719-4e4c-a22e-42f9227b7d02}, ! Default Day Schedule Name - {e2d1be96-983f-479c-9168-bb31f678aa45}, ! Summer Design Day Schedule Name - {e3787dc6-53c0-4b7e-928b-6123952b9fc2}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {64ea2dea-f719-4e4c-a22e-42f9227b7d02}, ! Handle - Small Office Bldg Occ Default Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 0, !- Value Until Time 1 - 7, !- Hour 2 - 0, !- Minute 2 - 0.1, !- Value Until Time 2 - 8, !- Hour 3 - 0, !- Minute 3 - 0.2, !- Value Until Time 3 - 12, !- Hour 4 - 0, !- Minute 4 - 0.95, !- Value Until Time 4 - 13, !- Hour 5 - 0, !- Minute 5 - 0.5, !- Value Until Time 5 - 17, !- Hour 6 - 0, !- Minute 6 - 0.95, !- Value Until Time 6 - 18, !- Hour 7 - 0, !- Minute 7 - 0.3, !- Value Until Time 7 - 20, !- Hour 8 - 0, !- Minute 8 - 0.1, !- Value Until Time 8 - 24, !- Hour 9 - 0, !- Minute 9 - 0.05; !- Value Until Time 9 - -OS:Schedule:Day, - {e2d1be96-983f-479c-9168-bb31f678aa45}, ! Handle - Small Office Bldg Occ Summer Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 1, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 0.050000000000000003; ! Value Until Time 3 - -OS:Schedule:Day, - {e3787dc6-53c0-4b7e-928b-6123952b9fc2}, ! Handle - Small Office Bldg Occ Winter Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {f5e8f265-336a-4040-bc3d-908d04e76726}, ! Handle - Small Office Bldg Occ Rule 1, ! Name - {7db91015-b01f-42c8-b02c-a13d4ed39198}, ! Schedule Ruleset Name - 0, ! Rule Order - {b1de6bcd-f86b-4e51-81b1-8ae3ed668c97}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {b1de6bcd-f86b-4e51-81b1-8ae3ed668c97}, ! Handle - Small Office Bldg Occ Rule 1 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {1ac935c1-7df7-46c6-a2c5-b2a40bc3fc36}, ! Handle - Small Office Bldg Occ Rule 2, ! Name - {7db91015-b01f-42c8-b02c-a13d4ed39198}, ! Schedule Ruleset Name - 1, ! Rule Order - {d529f022-9fba-4103-af27-c2084aba44c4}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {d529f022-9fba-4103-af27-c2084aba44c4}, ! Handle - Small Office Bldg Occ Rule 2 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0, ! Value Until Time 1 - 8, ! Hour 2 - 0, ! Minute 2 - 0.10000000000000001, ! Value Until Time 2 - 12, ! Hour 3 - 0, ! Minute 3 - 0.29999999999999999, ! Value Until Time 3 - 17, ! Hour 4 - 0, ! Minute 4 - 0.10000000000000001, ! Value Until Time 4 - 24, ! Hour 5 - 0, ! Minute 5 - 0; ! Value Until Time 5 - -OS:Schedule:Ruleset, - {67a55331-2096-4c9b-981a-b63f113d0dd9}, ! Handle - Small Office Activity, ! Name - {ab8bd902-d0dc-41a0-936a-32afa4684057}, ! Schedule Type Limits Name - {12ff5327-86b6-42bd-9d53-941110babe19}, ! Default Day Schedule Name - {be5e67a8-5b36-4ac3-9813-2ebd31fec570}, ! Summer Design Day Schedule Name - {bae73b41-e18c-4183-82f3-dc5b3daf6b5a}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {ab8bd902-d0dc-41a0-936a-32afa4684057}, !- Handle - ActivityLevel 12, !- Name - 0, !- Lower Limit Value - , !- Upper Limit Value - Continuous, !- Numeric Type - ActivityLevel; !- Unit Type - -OS:Schedule:Day, - {12ff5327-86b6-42bd-9d53-941110babe19}, ! Handle - Small Office Activity Default Schedule, ! Name - {ab8bd902-d0dc-41a0-936a-32afa4684057}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, !- Hour 1 - 0, !- Minute 1 - 120; !- Value Until Time 1 - -OS:Schedule:Day, - {be5e67a8-5b36-4ac3-9813-2ebd31fec570}, ! Handle - Small Office Activity Summer Design Day, ! Name - {ab8bd902-d0dc-41a0-936a-32afa4684057}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 120; ! Value Until Time 1 - -OS:Schedule:Day, - {bae73b41-e18c-4183-82f3-dc5b3daf6b5a}, ! Handle - Small Office Activity Winter Design Day, ! Name - {ab8bd902-d0dc-41a0-936a-32afa4684057}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 120; ! Value Until Time 1 - -OS:SpaceInfiltration:DesignFlowRate, - {1e027a7c-c27f-4a3d-8cdf-0828601a4f05}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Infiltration, !- Name - {e1cc070f-9032-474a-a692-fe55745caa04}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.00030226, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:Schedule:Ruleset, - {cb7cb752-a33a-400e-97f3-836bf023796e}, ! Handle - Small Office Infil Quarter On, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - {d279bd44-f26f-41f0-8003-e761ea50936f}, ! Default Day Schedule Name - {c9e55356-07d8-4e95-afd6-6122ba003888}, ! Summer Design Day Schedule Name - {50252ab7-6356-4d3c-9744-8fc09c4b9fdf}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {d279bd44-f26f-41f0-8003-e761ea50936f}, ! Handle - Small Office Infil Quarter On Default Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 1, !- Value Until Time 1 - 22, !- Hour 2 - 0, !- Minute 2 - 0.25, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 1; !- Value Until Time 3 - -OS:Schedule:Day, - {c9e55356-07d8-4e95-afd6-6122ba003888}, ! Handle - Small Office Infil Quarter On Summer Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:Schedule:Day, - {50252ab7-6356-4d3c-9744-8fc09c4b9fdf}, ! Handle - Small Office Infil Quarter On Winter Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:Schedule:Rule, - {3e76f500-a8e5-4299-95bc-7ccf11473b72}, ! Handle - Small Office Infil Quarter On Rule 1, ! Name - {cb7cb752-a33a-400e-97f3-836bf023796e}, ! Schedule Ruleset Name - 0, ! Rule Order - {f6330e6d-8c0a-4094-9d12-908c60826bc6}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {f6330e6d-8c0a-4094-9d12-908c60826bc6}, ! Handle - Small Office Infil Quarter On Rule 1 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 - -OS:Schedule:Rule, - {6f8f3c1b-5f33-40ba-b7d5-604c0832baea}, ! Handle - Small Office Infil Quarter On Rule 2, ! Name - {cb7cb752-a33a-400e-97f3-836bf023796e}, ! Schedule Ruleset Name - 1, ! Rule Order - {2ea3f1d7-fe3f-4de0-a16d-449692029526}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {2ea3f1d7-fe3f-4de0-a16d-449692029526}, ! Handle - Small Office Infil Quarter On Rule 2 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 1, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 0.25, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 1; ! Value Until Time 3 - -OS:ElectricEquipment:Definition, - {39f1a8d8-4466-4a00-8eb7-ffec43b67ef7}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 5.81251162502325, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {37b7d99c-9391-4952-b185-a511e62b7beb}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Electric Equipment, !- Name - {39f1a8d8-4466-4a00-8eb7-ffec43b67ef7}, !- Electric Equipment Definition Name - {e1cc070f-9032-474a-a692-fe55745caa04}; !- Space or SpaceType Name - -OS:Schedule:Ruleset, - {a51b8fe3-0466-410b-a880-21be07500a52}, ! Handle - Small Office Bldg Equip, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - {fc46d799-962b-42da-810e-397f7b1e88d7}, ! Default Day Schedule Name - {177d4d57-9a9d-40c4-9f25-385bc5794113}, ! Summer Design Day Schedule Name - {d16b57c0-830a-4c5a-b229-8bb90eafd907}; ! Winter Design Day Schedule Name - -OS:Schedule:Day, - {fc46d799-962b-42da-810e-397f7b1e88d7}, ! Handle - Small Office Bldg Equip Default Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 8, !- Hour 1 - 0, !- Minute 1 - 0.4, !- Value Until Time 1 - 12, !- Hour 2 - 0, !- Minute 2 - 0.9, !- Value Until Time 2 - 13, !- Hour 3 - 0, !- Minute 3 - 0.8, !- Value Until Time 3 - 17, !- Hour 4 - 0, !- Minute 4 - 0.9, !- Value Until Time 4 - 18, !- Hour 5 - 0, !- Minute 5 - 0.5, !- Value Until Time 5 - 24, !- Hour 6 - 0, !- Minute 6 - 0.4; !- Value Until Time 6 - -OS:Schedule:Day, - {177d4d57-9a9d-40c4-9f25-385bc5794113}, ! Handle - Small Office Bldg Equip Summer Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 1; ! Value Until Time 1 - -OS:Schedule:Day, - {d16b57c0-830a-4c5a-b229-8bb90eafd907}, ! Handle - Small Office Bldg Equip Winter Design Day, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0; ! Value Until Time 1 - -OS:Schedule:Rule, - {b33de88d-7022-4f25-b0bc-864df53b8778}, ! Handle - Small Office Bldg Equip Rule 1, ! Name - {a51b8fe3-0466-410b-a880-21be07500a52}, ! Schedule Ruleset Name - 0, ! Rule Order - {ba6246a8-76d6-4116-8b88-5393a3f4104e}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {ba6246a8-76d6-4116-8b88-5393a3f4104e}, ! Handle - Small Office Bldg Equip Rule 1 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 0.29999999999999999; ! Value Until Time 1 - -OS:Schedule:Rule, - {d64a5d87-6660-4767-a721-b98c22ca221a}, ! Handle - Small Office Bldg Equip Rule 2, ! Name - {a51b8fe3-0466-410b-a880-21be07500a52}, ! Schedule Ruleset Name - 1, ! Rule Order - {b024c0a2-4dc6-48a1-b95e-6727cd4eda93}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {b024c0a2-4dc6-48a1-b95e-6727cd4eda93}, ! Handle - Small Office Bldg Equip Rule 2 Day Schedule, ! Name - {55c44e2f-3c81-40b0-84f7-9b6efa1c1036}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 0.29999999999999999, ! Value Until Time 1 - 8, ! Hour 2 - 0, ! Minute 2 - 0.40000000000000002, ! Value Until Time 2 - 12, ! Hour 3 - 0, ! Minute 3 - 0.5, ! Value Until Time 3 - 17, ! Hour 4 - 0, ! Minute 4 - 0.34999999999999998, ! Value Until Time 4 - 24, ! Hour 5 - 0, ! Minute 5 - 0.29999999999999999; ! Value Until Time 5 - -OS:ThermostatSetpoint:DualSetpoint, - {0488857a-ac36-457e-bf08-09bfa412ba46}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ1-3 Thermostat, !- Name - {a8fc5971-56bf-485f-a8b6-fc00357a220a}, !- Heating Setpoint Temperature Schedule Name - {8334d03b-d787-4c01-a860-2e97c980572e}; !- Cooling Setpoint Temperature Schedule Name - -OS:Schedule:Ruleset, - {a8fc5971-56bf-485f-a8b6-fc00357a220a}, ! Handle - Small Office HtgSetp, ! Name - {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, ! Schedule Type Limits Name - {3c698c69-ef20-4c49-99b7-b7aad45c31e8}, ! Default Day Schedule Name - {65e5c54a-b6f3-4826-8e5d-f77bf7a35635}, ! Summer Design Day Schedule Name - {f78827e4-d6c5-4edc-ad35-a64fdbeb2a7f}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, !- Handle - Temperature 11, !- Name - , !- Lower Limit Value - , !- Upper Limit Value - Continuous, !- Numeric Type - Temperature; !- Unit Type - -OS:Schedule:Day, - {3c698c69-ef20-4c49-99b7-b7aad45c31e8}, ! Handle - Small Office HtgSetp Default Schedule, ! Name - {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 15.6, !- Value Until Time 1 - 22, !- Hour 2 - 0, !- Minute 2 - 21, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 15.6; !- Value Until Time 3 - -OS:Schedule:Day, - {65e5c54a-b6f3-4826-8e5d-f77bf7a35635}, ! Handle - Small Office HtgSetp Summer Design Day, ! Name - {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 15.6; ! Value Until Time 1 - -OS:Schedule:Day, - {f78827e4-d6c5-4edc-ad35-a64fdbeb2a7f}, ! Handle - Small Office HtgSetp Winter Design Day, ! Name - {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 21; ! Value Until Time 1 - -OS:Schedule:Rule, - {59307f1f-95bc-49ae-b50e-42836a04e0cc}, ! Handle - Small Office HtgSetp Rule 1, ! Name - {a8fc5971-56bf-485f-a8b6-fc00357a220a}, ! Schedule Ruleset Name - 0, ! Rule Order - {8d0c0dcb-4ca1-4665-8d1d-bfe46b893abe}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {8d0c0dcb-4ca1-4665-8d1d-bfe46b893abe}, ! Handle - Small Office HtgSetp Rule 1 Day Schedule, ! Name - {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 15.6; ! Value Until Time 1 - -OS:Schedule:Rule, - {9847a62b-fb76-4ab8-9344-f3f532928c11}, ! Handle - Small Office HtgSetp Rule 2, ! Name - {a8fc5971-56bf-485f-a8b6-fc00357a220a}, ! Schedule Ruleset Name - 1, ! Rule Order - {4824a431-a6af-44cb-9a95-88a95f2c6cec}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {4824a431-a6af-44cb-9a95-88a95f2c6cec}, ! Handle - Small Office HtgSetp Rule 2 Day Schedule, ! Name - {0e9a66b1-0d84-4b86-b6d1-08ec793ba821}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 15.6, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 21, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 15.6; ! Value Until Time 3 - -OS:Schedule:Ruleset, - {8334d03b-d787-4c01-a860-2e97c980572e}, ! Handle - Small Office ClgSetp, ! Name - {c998de07-a854-476f-88ee-694f57ede232}, ! Schedule Type Limits Name - {153c8010-6388-42f7-a3b9-45ffa21b21cf}, ! Default Day Schedule Name - {5fb8bca9-2863-48e1-aa3f-84e58ae39852}, ! Summer Design Day Schedule Name - {2103cebf-d42f-4cd2-b503-7600479676a2}; ! Winter Design Day Schedule Name - -OS:ScheduleTypeLimits, - {c998de07-a854-476f-88ee-694f57ede232}, !- Handle - Temperature 4, !- Name - , !- Lower Limit Value - , !- Upper Limit Value - Continuous, !- Numeric Type - Temperature; !- Unit Type - -OS:Schedule:Day, - {153c8010-6388-42f7-a3b9-45ffa21b21cf}, ! Handle - Small Office ClgSetp Default Schedule, ! Name - {c998de07-a854-476f-88ee-694f57ede232}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, !- Hour 1 - 0, !- Minute 1 - 26.7, !- Value Until Time 1 - 22, !- Hour 2 - 0, !- Minute 2 - 24, !- Value Until Time 2 - 24, !- Hour 3 - 0, !- Minute 3 - 26.7; !- Value Until Time 3 - -OS:Schedule:Day, - {5fb8bca9-2863-48e1-aa3f-84e58ae39852}, ! Handle - Small Office ClgSetp Summer Design Day, ! Name - {c998de07-a854-476f-88ee-694f57ede232}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999, ! Value Until Time 1 - 22, ! Hour 2 - 0, ! Minute 2 - 24, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 26.699999999999999; ! Value Until Time 3 - -OS:Schedule:Day, - {2103cebf-d42f-4cd2-b503-7600479676a2}, ! Handle - Small Office ClgSetp Winter Design Day, ! Name - {c998de07-a854-476f-88ee-694f57ede232}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999; ! Value Until Time 1 - -OS:Schedule:Rule, - {40345165-334a-485e-87cf-103e70023132}, ! Handle - Small Office ClgSetp Rule 1, ! Name - {8334d03b-d787-4c01-a860-2e97c980572e}, ! Schedule Ruleset Name - 0, ! Rule Order - {d1455230-b62b-4375-80ca-cc36c3183857}, ! Day Schedule Name - Yes, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - No, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {d1455230-b62b-4375-80ca-cc36c3183857}, ! Handle - Small Office ClgSetp Rule 1 Day Schedule, ! Name - {c998de07-a854-476f-88ee-694f57ede232}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 24, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999; ! Value Until Time 1 - -OS:Schedule:Rule, - {0972da99-d044-41cb-8d26-0439235fb34a}, ! Handle - Small Office ClgSetp Rule 2, ! Name - {8334d03b-d787-4c01-a860-2e97c980572e}, ! Schedule Ruleset Name - 1, ! Rule Order - {81a56e50-b627-419b-920e-d3cef807b9f8}, ! Day Schedule Name - No, ! Apply Sunday - No, ! Apply Monday - No, ! Apply Tuesday - No, ! Apply Wednesday - No, ! Apply Thursday - No, ! Apply Friday - Yes, ! Apply Saturday - , ! Apply Holiday - DateRange, ! Date Specification Type - 1, ! Start Month - 1, ! Start Day - 12, ! End Month - 31; ! End Day - -OS:Schedule:Day, - {81a56e50-b627-419b-920e-d3cef807b9f8}, ! Handle - Small Office ClgSetp Rule 2 Day Schedule, ! Name - {c998de07-a854-476f-88ee-694f57ede232}, ! Schedule Type Limits Name - , ! Interpolate to Timestep - 6, ! Hour 1 - 0, ! Minute 1 - 26.699999999999999, ! Value Until Time 1 - 18, ! Hour 2 - 0, ! Minute 2 - 24, ! Value Until Time 2 - 24, ! Hour 3 - 0, ! Minute 3 - 26.699999999999999; ! Value Until Time 3 - -OS:SpaceType, - {6fcac478-58b9-4f2f-ab61-2fdf78ed207a}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8, !- Name - , !- Default Construction Set Name - {0b0d7d0e-8e0c-4d73-bbd0-4d262ac73220}, !- Default Schedule Set Name - {99b31bfd-0d42-45f4-a0d8-d4817aca24ae}, !- Group Rendering Name - {f6d5ea3e-58cf-41e5-81fb-02117411a981}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - BreakRoom; !- Standards Space Type - -OS:Rendering:Color, - {99b31bfd-0d42-45f4-a0d8-d4817aca24ae}, !- Handle - Rendering Color 17, !- Name - 230, !- Rendering Red Value - 157, !- Rendering Green Value - 120; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {0b0d7d0e-8e0c-4d73-bbd0-4d262ac73220}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {9d2a2115-85c5-438b-b32c-a4a858d8161a}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 11.6250232500465, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {4a230733-41f5-4ca6-96e0-5e44748f7df4}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 Lights, !- Name - {9d2a2115-85c5-438b-b32c-a4a858d8161a}, !- Lights Definition Name - {6fcac478-58b9-4f2f-ab61-2fdf78ed207a}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {f6d5ea3e-58cf-41e5-81fb-02117411a981}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 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:People:Definition, - {23d096cd-2bb1-423d-b1c8-baf5526ef2a6}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {5a10a8e5-74eb-41b6-8300-8c614f3cd681}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 People, !- Name - {23d096cd-2bb1-423d-b1c8-baf5526ef2a6}, !- People Definition Name - {6fcac478-58b9-4f2f-ab61-2fdf78ed207a}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {6eb84b2f-973d-476e-b524-53b69c751752}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 Infiltration, !- Name - {6fcac478-58b9-4f2f-ab61-2fdf78ed207a}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {5b57df41-243c-46ff-9790-d9497bd8edf0}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 48.0070404585254, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {e641d016-e7d6-4890-957c-3de2b21a699a}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 Electric Equipment, !- Name - {5b57df41-243c-46ff-9790-d9497bd8edf0}, !- Electric Equipment Definition Name - {6fcac478-58b9-4f2f-ab61-2fdf78ed207a}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {92dbe6d3-c9b9-43fc-90c3-a06b5ec93169}, !- Handle - 189.1-2009 - Office - BreakRoom - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {ac0a78a9-f73e-43b0-b8ae-e687babd2992}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8, !- Name - , !- Default Construction Set Name - {45d37156-65d2-4044-abc0-329c2491e0be}, !- Default Schedule Set Name - {6dc82c65-0965-48c5-9394-1f57bef18075}, !- Group Rendering Name - {2cbf38dd-78ec-43cf-9455-8dba2eee1857}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - ClosedOffice; !- Standards Space Type - -OS:Rendering:Color, - {6dc82c65-0965-48c5-9394-1f57bef18075}, !- Handle - Rendering Color 18, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {45d37156-65d2-4044-abc0-329c2491e0be}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {f855eb4f-a401-4c05-9693-85547aab5919}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 10.6562713125426, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {e6b87a14-1e18-49c7-85c2-84f072c938b2}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 Lights, !- Name - {f855eb4f-a401-4c05-9693-85547aab5919}, !- Lights Definition Name - {ac0a78a9-f73e-43b0-b8ae-e687babd2992}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {2cbf38dd-78ec-43cf-9455-8dba2eee1857}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 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:People:Definition, - {2a7bd42c-841d-4013-b4e7-019f52823262}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0511285744793712, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {283ae026-2477-4529-bb38-02c7e6065076}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 People, !- Name - {2a7bd42c-841d-4013-b4e7-019f52823262}, !- People Definition Name - {ac0a78a9-f73e-43b0-b8ae-e687babd2992}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {b655059c-3ce9-4b49-a0db-160442a03540}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 Infiltration, !- Name - {ac0a78a9-f73e-43b0-b8ae-e687babd2992}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {56de10a1-c355-43cc-8c70-789938bd1248}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 6.88890266669422, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {0f379c88-6f89-4030-bc79-090ef24b986e}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 Electric Equipment, !- Name - {56de10a1-c355-43cc-8c70-789938bd1248}, !- Electric Equipment Definition Name - {ac0a78a9-f73e-43b0-b8ae-e687babd2992}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {6b3eff15-c2f8-4f87-9fe3-6f7c3004ea5f}, !- Handle - 189.1-2009 - Office - ClosedOffice - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {b9bdae74-1b30-442c-a7ed-69d06b515457}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8, !- Name - , !- Default Construction Set Name - {e6c39dce-80ca-4ed4-a781-b5e18baff696}, !- Default Schedule Set Name - {202e2808-fe0a-49ec-8437-4c794472a9a0}, !- Group Rendering Name - {b8c9a3c5-53fb-4331-9614-87a518236f35}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Conference; !- Standards Space Type - -OS:Rendering:Color, - {202e2808-fe0a-49ec-8437-4c794472a9a0}, !- Handle - Rendering Color 19, !- Name - 230, !- Rendering Red Value - 196, !- Rendering Green Value - 120; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {e6c39dce-80ca-4ed4-a781-b5e18baff696}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {bcc996df-46dd-45ba-abe0-69433df53594}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 12.5937751875504, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {86c2e905-536c-4838-bf48-8aa4aebef755}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 Lights, !- Name - {bcc996df-46dd-45ba-abe0-69433df53594}, !- Lights Definition Name - {b9bdae74-1b30-442c-a7ed-69d06b515457}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {b8c9a3c5-53fb-4331-9614-87a518236f35}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 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:People:Definition, - {f07defcd-cf7a-424b-a3f5-c1672133261e}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {884b2aa3-62fe-4d6a-b8ec-c19497fc7da8}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 People, !- Name - {f07defcd-cf7a-424b-a3f5-c1672133261e}, !- People Definition Name - {b9bdae74-1b30-442c-a7ed-69d06b515457}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {23919b1f-4940-4b68-b1a0-5e68c2d5b78d}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 Infiltration, !- Name - {b9bdae74-1b30-442c-a7ed-69d06b515457}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {aca91e63-a266-464d-b600-e89b347c9d95}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 3.9826468541826, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {7ecb1b95-ffa4-4c84-b1e4-cf8c033ce8f7}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 Electric Equipment, !- Name - {aca91e63-a266-464d-b600-e89b347c9d95}, !- Electric Equipment Definition Name - {b9bdae74-1b30-442c-a7ed-69d06b515457}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {541fa24b-ddf2-4edf-83d9-2bed06917add}, !- Handle - 189.1-2009 - Office - Conference - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {7150cb23-2c41-4569-8cb3-ed7c1cd4f2f7}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8, !- Name - , !- Default Construction Set Name - {666e2765-a8cc-4272-9029-54b416bb2610}, !- Default Schedule Set Name - {340eeae9-9587-4e04-b7fe-21214fa0042c}, !- Group Rendering Name - {fd69f378-0e94-4fdd-a231-f37cf315cc66}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Corridor; !- Standards Space Type - -OS:Rendering:Color, - {340eeae9-9587-4e04-b7fe-21214fa0042c}, !- Handle - Rendering Color 20, !- Name - 169, !- Rendering Red Value - 31, !- Rendering Green Value - 31; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {666e2765-a8cc-4272-9029-54b416bb2610}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {a6e7a355-270c-45fb-9c56-5f4a3452110c}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 4.84375968751938, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {fed0a7aa-9bc2-4d98-bc74-465b35a409d4}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 Lights, !- Name - {a6e7a355-270c-45fb-9c56-5f4a3452110c}, !- Lights Definition Name - {7150cb23-2c41-4569-8cb3-ed7c1cd4f2f7}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {fd69f378-0e94-4fdd-a231-f37cf315cc66}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 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:People:Definition, - {cb9b3da7-3eea-4d6e-9db1-01acf0825dcd}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {42ce457e-2d95-4fe6-9cda-f5042dea1c96}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 People, !- Name - {cb9b3da7-3eea-4d6e-9db1-01acf0825dcd}, !- People Definition Name - {7150cb23-2c41-4569-8cb3-ed7c1cd4f2f7}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {ca37d410-b9c7-4e62-b5ca-b87627a332cc}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 Infiltration, !- Name - {7150cb23-2c41-4569-8cb3-ed7c1cd4f2f7}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {3c280509-8b4d-4af3-aac1-fa15404f8b6d}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 1.72222566667356, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {01d044ce-7e19-4288-a75a-77fc975d40d4}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 Electric Equipment, !- Name - {3c280509-8b4d-4af3-aac1-fa15404f8b6d}, !- Electric Equipment Definition Name - {7150cb23-2c41-4569-8cb3-ed7c1cd4f2f7}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {3bdf0199-3196-4d00-9272-a3b137675d31}, !- Handle - 189.1-2009 - Office - Corridor - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {ae0eddf0-a1d4-45c0-89c1-4f32cd232444}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ4-8, !- Name - , !- Default Construction Set Name - {4390b43b-ded0-461f-b061-f042bc13f91f}, !- Default Schedule Set Name - {09cc0a44-bde3-4ae8-97d5-6973b620eb23}, !- Group Rendering Name - {1fbee130-5b8b-41c4-b2e5-a35b678e1a1c}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Elec/MechRoom; !- Standards Space Type - -OS:Rendering:Color, - {09cc0a44-bde3-4ae8-97d5-6973b620eb23}, !- Handle - Rendering Color 21, !- Name - 41, !- Rendering Red Value - 31, !- Rendering Green Value - 169; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {4390b43b-ded0-461f-b061-f042bc13f91f}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - , !- Number of People Schedule Name - , !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {0d6e7075-d80b-44ae-9ee6-0b2ad52b1548}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 14.5312790625581, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {d0fd0a9a-f35d-4f92-b9b5-cc437f048b81}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Lights, !- Name - {0d6e7075-d80b-44ae-9ee6-0b2ad52b1548}, !- Lights Definition Name - {ae0eddf0-a1d4-45c0-89c1-4f32cd232444}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {1fbee130-5b8b-41c4-b2e5-a35b678e1a1c}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ4-8 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:SpaceInfiltration:DesignFlowRate, - {5886568b-d637-4e9b-b7c1-0d6b0bcc8fc9}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Infiltration, !- Name - {ae0eddf0-a1d4-45c0-89c1-4f32cd232444}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {08047a8f-2dc9-4514-aa3a-dcd71c961969}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 2.90625581251162, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {2d527502-0ea9-4d22-9420-1faee6f46df3}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Electric Equipment, !- Name - {08047a8f-2dc9-4514-aa3a-dcd71c961969}, !- Electric Equipment Definition Name - {ae0eddf0-a1d4-45c0-89c1-4f32cd232444}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {bc8bbc76-ab44-4992-ad1d-80d2dbc7e77e}, !- Handle - 189.1-2009 - Office - Elec/MechRoom - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {25788573-0369-4919-952e-9f4a8d287a07}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8, !- Name - , !- Default Construction Set Name - {a77ae8b7-4aa2-41f7-b5a6-8856ba6e1aa9}, !- Default Schedule Set Name - {03a758bb-e62a-48b9-97b4-e7c9725503de}, !- Group Rendering Name - {c78ecc49-33c1-4baa-8f4a-3a3d4e3253e7}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - IT_Room; !- Standards Space Type - -OS:Rendering:Color, - {03a758bb-e62a-48b9-97b4-e7c9725503de}, !- Handle - Rendering Color 22, !- Name - 41, !- Rendering Red Value - 31, !- Rendering Green Value - 169; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {a77ae8b7-4aa2-41f7-b5a6-8856ba6e1aa9}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {b22a9e34-087b-427c-b758-a0124a25cdc5}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 10.6562713125426, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {9d45cbfa-f2ce-4490-bfe6-9ea2b0ef403d}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 Lights, !- Name - {b22a9e34-087b-427c-b758-a0124a25cdc5}, !- Lights Definition Name - {25788573-0369-4919-952e-9f4a8d287a07}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {c78ecc49-33c1-4baa-8f4a-3a3d4e3253e7}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 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:People:Definition, - {a0c943ca-3fd3-4a76-8558-4194a944b98d}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {0e12ef15-0acb-4a55-95a0-2260cf7ad1a8}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 People, !- Name - {a0c943ca-3fd3-4a76-8558-4194a944b98d}, !- People Definition Name - {25788573-0369-4919-952e-9f4a8d287a07}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {06f80535-6c1b-4be5-8e24-e2f246b425c8}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 Infiltration, !- Name - {25788573-0369-4919-952e-9f4a8d287a07}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {75c6e605-824f-4e54-8dd0-f27abb35f641}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 16.7917002500672, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {23c00582-f748-4c1b-916b-1fa5c7686d7d}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 Electric Equipment, !- Name - {75c6e605-824f-4e54-8dd0-f27abb35f641}, !- Electric Equipment Definition Name - {25788573-0369-4919-952e-9f4a8d287a07}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {d067df76-cf76-4cf6-aa35-0cbb12b8656a}, !- Handle - 189.1-2009 - Office - IT_Room - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {12b0b8db-f33b-4234-a2c9-ba750ae671ef}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8, !- Name - , !- Default Construction Set Name - {69f043ea-7f0a-4f57-a9b9-d557929fc49e}, !- Default Schedule Set Name - {74dc8dad-959b-491c-a50a-9af6ecd0a669}, !- Group Rendering Name - {dbdfd940-1c36-4bd0-afb4-880a785c5e6f}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Lobby; !- Standards Space Type - -OS:Rendering:Color, - {74dc8dad-959b-491c-a50a-9af6ecd0a669}, !- Handle - Rendering Color 23, !- Name - 230, !- Rendering Red Value - 157, !- Rendering Green Value - 120; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {69f043ea-7f0a-4f57-a9b9-d557929fc49e}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {f8e9e766-9250-4cfa-86f6-1216a4564dfb}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 12.5937751875504, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {44ac18e1-7275-4b3a-b218-7e2e176f1a73}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 Lights, !- Name - {f8e9e766-9250-4cfa-86f6-1216a4564dfb}, !- Lights Definition Name - {12b0b8db-f33b-4234-a2c9-ba750ae671ef}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {dbdfd940-1c36-4bd0-afb4-880a785c5e6f}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 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:People:Definition, - {7e4b36df-78b6-45fb-a861-8e35ddce0df9}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {d1894ae1-fe0a-4638-8df5-d20ee93f1533}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 People, !- Name - {7e4b36df-78b6-45fb-a861-8e35ddce0df9}, !- People Definition Name - {12b0b8db-f33b-4234-a2c9-ba750ae671ef}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {d815095f-6e93-44e7-9812-f55b6c2aef2e}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 Infiltration, !- Name - {12b0b8db-f33b-4234-a2c9-ba750ae671ef}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {e8a069db-d0db-4d2f-8265-790a7831bafa}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 0.753473729169681, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {24778cfb-5eee-4ddc-902b-a11bb0bfef66}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 Electric Equipment, !- Name - {e8a069db-d0db-4d2f-8265-790a7831bafa}, !- Electric Equipment Definition Name - {12b0b8db-f33b-4234-a2c9-ba750ae671ef}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {3fabcd0e-e1a5-4e00-9e23-9e19d5c555d9}, !- Handle - 189.1-2009 - Office - Lobby - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {ad9972e4-489e-404e-841e-c9bbd72d0111}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8, !- Name - , !- Default Construction Set Name - {67cfc28b-9f66-4e18-8b2c-25a2ff33fd11}, !- Default Schedule Set Name - {ede0a72d-692f-411e-898f-ccb1f783c262}, !- Group Rendering Name - {f4a649b7-7f7c-4bc5-9b02-e4e1aa4803e9}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - OpenOffice; !- Standards Space Type - -OS:Rendering:Color, - {ede0a72d-692f-411e-898f-ccb1f783c262}, !- Handle - Rendering Color 24, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {67cfc28b-9f66-4e18-8b2c-25a2ff33fd11}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {3f7fc9e5-6ce2-4b91-9fc6-85d1867c2216}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {18a52544-7daa-4972-9e7f-9e27c5a4cd66}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 10.6562713125426, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {a396c5cc-c22f-42c9-be8e-af3d54d54456}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 Lights, !- Name - {18a52544-7daa-4972-9e7f-9e27c5a4cd66}, !- Lights Definition Name - {ad9972e4-489e-404e-841e-c9bbd72d0111}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {f4a649b7-7f7c-4bc5-9b02-e4e1aa4803e9}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 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:People:Definition, - {22b512ed-ce73-4779-9d6d-34a5d817a868}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.056510529687726, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {6b5422a3-490d-4e08-a37c-480ec55d22f6}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 People, !- Name - {22b512ed-ce73-4779-9d6d-34a5d817a868}, !- People Definition Name - {ad9972e4-489e-404e-841e-c9bbd72d0111}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {9f99f28a-55da-49b7-9354-17ccfd3b33e0}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 Infiltration, !- Name - {ad9972e4-489e-404e-841e-c9bbd72d0111}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {95fc5eef-d77d-4616-917f-974b5dabab66}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 7.6423763958639, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {8470e1c3-c0bc-4712-81bc-3382735de5cb}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 Electric Equipment, !- Name - {95fc5eef-d77d-4616-917f-974b5dabab66}, !- Electric Equipment Definition Name - {ad9972e4-489e-404e-841e-c9bbd72d0111}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {847f379b-0ddb-4308-a125-44b06cceb0c0}, !- Handle - 189.1-2009 - Office - OpenOffice - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {af24e503-88ef-4f50-95c1-1d393388f2d4}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8, !- Name - , !- Default Construction Set Name - {01dc8eb4-a4fa-4aaf-8d75-b7cfd75648a4}, !- Default Schedule Set Name - {b7fe6f07-3ac4-4ca1-9186-5c7889d7b3da}, !- Group Rendering Name - {6c78e848-e562-4461-b538-4e3e3c4e848c}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - PrintRoom; !- Standards Space Type - -OS:Rendering:Color, - {b7fe6f07-3ac4-4ca1-9186-5c7889d7b3da}, !- Handle - Rendering Color 25, !- Name - 41, !- Rendering Red Value - 31, !- Rendering Green Value - 169; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {01dc8eb4-a4fa-4aaf-8d75-b7cfd75648a4}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {abbc193f-2c53-49ff-8e03-589edefce026}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 10.6562713125426, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {c7396387-ee02-4cbd-bb73-db5af92230bf}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 Lights, !- Name - {abbc193f-2c53-49ff-8e03-589edefce026}, !- Lights Definition Name - {af24e503-88ef-4f50-95c1-1d393388f2d4}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {6c78e848-e562-4461-b538-4e3e3c4e848c}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 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:People:Definition, - {4cbb660a-8380-44eb-bc35-245838f929e8}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {89b76b4c-73be-47ed-9bf0-d29a5d09beee}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 People, !- Name - {4cbb660a-8380-44eb-bc35-245838f929e8}, !- People Definition Name - {af24e503-88ef-4f50-95c1-1d393388f2d4}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {68e0ada3-23ed-42e8-881a-ad68ae78ba59}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 Infiltration, !- Name - {af24e503-88ef-4f50-95c1-1d393388f2d4}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {cd6a7fd7-b08c-4cbb-9ce5-8ddc886a6124}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 30.0313100626201, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {47ea6833-7452-423c-b11a-cdcdc6e894f7}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 Electric Equipment, !- Name - {cd6a7fd7-b08c-4cbb-9ce5-8ddc886a6124}, !- Electric Equipment Definition Name - {af24e503-88ef-4f50-95c1-1d393388f2d4}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {9a24efdb-aaf9-4caf-8ef9-e063f557395c}, !- Handle - 189.1-2009 - Office - PrintRoom - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {8bff2199-45e8-4a71-b5fd-ede3fae4f6ff}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8, !- Name - , !- Default Construction Set Name - {e66e0cc6-efb5-4211-818f-1431a0e70233}, !- Default Schedule Set Name - {719a1449-7853-4161-927b-bdb7f01806ed}, !- Group Rendering Name - {1aeb672d-5c17-4118-b3f0-dfbc58007e1f}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Restroom; !- Standards Space Type - -OS:Rendering:Color, - {719a1449-7853-4161-927b-bdb7f01806ed}, !- Handle - Rendering Color 26, !- Name - 169, !- Rendering Red Value - 169, !- Rendering Green Value - 31; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {e66e0cc6-efb5-4211-818f-1431a0e70233}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {d607f8dd-35e4-4a28-bcbe-31e09c118ae0}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 8.71876743753488, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {369dc730-3d03-40c8-8ea1-7783c58a58ef}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 Lights, !- Name - {d607f8dd-35e4-4a28-bcbe-31e09c118ae0}, !- Lights Definition Name - {8bff2199-45e8-4a71-b5fd-ede3fae4f6ff}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {1aeb672d-5c17-4118-b3f0-dfbc58007e1f}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 Ventilation, !- Name - Sum, !- Outdoor Air Method - , !- Outdoor Air Flow per Person {m3/s-person} - 0.0048768, !- 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:People:Definition, - {8e492d6d-50ee-4026-a23a-6327d28aa1a3}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {de991af8-6b18-4490-9be9-307feba43cd2}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 People, !- Name - {8e492d6d-50ee-4026-a23a-6327d28aa1a3}, !- People Definition Name - {8bff2199-45e8-4a71-b5fd-ede3fae4f6ff}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {efad6973-728f-404e-84ce-bf89300a55cd}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 Infiltration, !- Name - {8bff2199-45e8-4a71-b5fd-ede3fae4f6ff}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {c817a3b9-a026-4a06-82cf-32d30b4ef116}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 0.753473729169681, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {36815876-83bd-4fa7-ad65-9cfc31a60c5d}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 Electric Equipment, !- Name - {c817a3b9-a026-4a06-82cf-32d30b4ef116}, !- Electric Equipment Definition Name - {8bff2199-45e8-4a71-b5fd-ede3fae4f6ff}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {ec97771e-4971-46b0-91e9-3785d44f364f}, !- Handle - 189.1-2009 - Office - Restroom - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {6cfd0d19-c82c-444b-b844-b898e9ccb38b}, !- Handle - 189.1-2009 - Office - Stair - CZ4-8, !- Name - , !- Default Construction Set Name - {1d7040c9-cc51-49e9-bced-99919b77079e}, !- Default Schedule Set Name - {6f557e2a-06b2-4e96-bd62-f7b1f6d0b22c}, !- Group Rendering Name - {06eb26bf-daae-4d7b-802f-f14f4973bffc}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Stair; !- Standards Space Type - -OS:Rendering:Color, - {6f557e2a-06b2-4e96-bd62-f7b1f6d0b22c}, !- Handle - Rendering Color 27, !- Name - 230, !- Rendering Red Value - 157, !- Rendering Green Value - 120; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {1d7040c9-cc51-49e9-bced-99919b77079e}, !- Handle - 189.1-2009 - Office - Stair - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - , !- Number of People Schedule Name - , !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - , !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {2783b7ad-e79e-4709-93a0-76d9b15480cb}, !- Handle - 189.1-2009 - Office - Stair - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 5.81251162502325, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {086e0aa7-9716-40a1-ad9a-9e539b32999b}, !- Handle - 189.1-2009 - Office - Stair - CZ4-8 Lights, !- Name - {2783b7ad-e79e-4709-93a0-76d9b15480cb}, !- Lights Definition Name - {6cfd0d19-c82c-444b-b844-b898e9ccb38b}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {06eb26bf-daae-4d7b-802f-f14f4973bffc}, !- Handle - 189.1-2009 - Office - Stair - CZ4-8 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:SpaceInfiltration:DesignFlowRate, - {2584ae7a-711d-473c-96df-a3bb8f824179}, !- Handle - 189.1-2009 - Office - Stair - CZ4-8 Infiltration, !- Name - {6cfd0d19-c82c-444b-b844-b898e9ccb38b}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ThermostatSetpoint:DualSetpoint, - {e23342a6-14bf-4244-a12e-b8f3f6c04563}, !- Handle - 189.1-2009 - Office - Stair - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {d0c52a2e-468a-4dde-bcb0-4952606e371d}, !- Handle - 189.1-2009 - Office - Storage - CZ4-8, !- Name - , !- Default Construction Set Name - {67b9c134-6af2-4034-8be9-99c918290f72}, !- Default Schedule Set Name - {e5e5daee-9c0f-481c-8a95-52831d130704}, !- Group Rendering Name - {891b5948-4e38-4554-a2f6-43f94ec5ae02}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Storage; !- Standards Space Type - -OS:Rendering:Color, - {e5e5daee-9c0f-481c-8a95-52831d130704}, !- Handle - Rendering Color 28, !- Name - 120, !- Rendering Red Value - 149, !- Rendering Green Value - 230; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {67b9c134-6af2-4034-8be9-99c918290f72}, !- Handle - 189.1-2009 - Office - Storage - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - , !- Number of People Schedule Name - , !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - , !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {a3530ea6-39e7-4538-9866-287cb9025bf1}, !- Handle - 189.1-2009 - Office - Storage - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 7.750015500031, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {f096f7ac-09c0-4f85-8905-690dca9182e1}, !- Handle - 189.1-2009 - Office - Storage - CZ4-8 Lights, !- Name - {a3530ea6-39e7-4538-9866-287cb9025bf1}, !- Lights Definition Name - {d0c52a2e-468a-4dde-bcb0-4952606e371d}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {891b5948-4e38-4554-a2f6-43f94ec5ae02}, !- Handle - 189.1-2009 - Office - Storage - CZ4-8 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:SpaceInfiltration:DesignFlowRate, - {a7ac93a3-1fc2-4daa-82df-d9b5ba2a505e}, !- Handle - 189.1-2009 - Office - Storage - CZ4-8 Infiltration, !- Name - {d0c52a2e-468a-4dde-bcb0-4952606e371d}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ThermostatSetpoint:DualSetpoint, - {6ae2b2b8-720b-4eaf-8895-80b1f0753cad}, !- Handle - 189.1-2009 - Office - Storage - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {badb4787-4e03-483b-a5d9-81df836430d2}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8, !- Name - , !- Default Construction Set Name - {6dfba6f2-b96a-492d-b774-c4c720d68d2b}, !- Default Schedule Set Name - {76d6f7c9-7ceb-45e9-8a19-835ab84a952b}, !- Group Rendering Name - {0f1e8aef-c843-4ab6-b548-4c72c5fef55a}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - Vending; !- Standards Space Type - -OS:Rendering:Color, - {76d6f7c9-7ceb-45e9-8a19-835ab84a952b}, !- Handle - Rendering Color 29, !- Name - 230, !- Rendering Red Value - 157, !- Rendering Green Value - 120; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {6dfba6f2-b96a-492d-b774-c4c720d68d2b}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {be0538a4-3720-422e-85be-2e617795d558}, !- Number of People Schedule Name - {2eaafb36-c8d9-471a-8f30-6e2188bd0fdb}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {d4102340-9627-4371-b8f6-a3790caa5373}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {5071fc8f-2a43-420e-b853-89de3fd548e0}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {d8b3e03e-2d32-4c27-b42a-dd840c225670}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 Lights Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Lighting Level {W} - 4.84375968751938, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:Lights, - {40216c47-a5be-4b81-9ebe-654734752677}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 Lights, !- Name - {d8b3e03e-2d32-4c27-b42a-dd840c225670}, !- Lights Definition Name - {badb4787-4e03-483b-a5d9-81df836430d2}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {0f1e8aef-c843-4ab6-b548-4c72c5fef55a}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 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:People:Definition, - {f760ff07-53a3-4162-8890-9d0990ffc17f}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0107639104167097, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {281a8e29-5aab-4167-83d6-3d9fe2313cd8}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 People, !- Name - {f760ff07-53a3-4162-8890-9d0990ffc17f}, !- People Definition Name - {badb4787-4e03-483b-a5d9-81df836430d2}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {b9453158-d790-4fab-b5ae-0e40fc0505ce}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 Infiltration, !- Name - {badb4787-4e03-483b-a5d9-81df836430d2}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {bbac7541-8a86-4bd8-963a-8f9a28f77e61}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 41.4410551043324, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {eddb3a2b-a77b-4511-9cb5-b14f74a42d15}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 Electric Equipment, !- Name - {bbac7541-8a86-4bd8-963a-8f9a28f77e61}, !- Electric Equipment Definition Name - {badb4787-4e03-483b-a5d9-81df836430d2}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {6c78a447-312c-4c28-b3aa-6da71f9cf8d3}, !- Handle - 189.1-2009 - Office - Vending - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {968bcc4c-fd98-438b-b61b-5f81da1d8956}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8, !- Name - , !- Default Construction Set Name - {b9bfde29-315f-4eb8-bf9a-46a78dff4fac}, !- Default Schedule Set Name - {a76d196b-e761-4493-8631-b48b5e34c13c}, !- Group Rendering Name - {243951cc-1d54-4682-88de-92f00facb5d4}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - WholeBuilding - Lg Office; !- Standards Space Type - -OS:Rendering:Color, - {a76d196b-e761-4493-8631-b48b5e34c13c}, !- Handle - Rendering Color 30, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {b9bfde29-315f-4eb8-bf9a-46a78dff4fac}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {ee654552-7290-4128-a647-073eff68ebb6}, !- Number of People Schedule Name - {264acba7-523a-484e-8e51-ae85870ba167}, !- People Activity Level Schedule Name - {3ce9efa4-e219-47f8-a14a-7affd9c11d70}, !- Lighting Schedule Name - {6197bef3-80c6-4043-b8a4-b9cd96652248}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {e0eb0ae2-9b39-46b2-b9f9-f7879620c44e}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {aa22ac73-8979-4986-b736-acbd0777b85c}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 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} - -OS:Lights, - {b303525b-5f5d-4c4d-b9b8-65dd3f84b284}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Lights, !- Name - {aa22ac73-8979-4986-b736-acbd0777b85c}, !- Lights Definition Name - {968bcc4c-fd98-438b-b61b-5f81da1d8956}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {243951cc-1d54-4682-88de-92f00facb5d4}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 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:People:Definition, - {9d7eb10a-2add-4a6a-a03e-056a6b1ae96b}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {03f6b94b-31fa-4bf8-8d80-15daaf19f543}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 People, !- Name - {9d7eb10a-2add-4a6a-a03e-056a6b1ae96b}, !- People Definition Name - {968bcc4c-fd98-438b-b61b-5f81da1d8956}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {78e4e1af-4f99-4e7e-a352-e31956fd36bf}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Infiltration, !- Name - {968bcc4c-fd98-438b-b61b-5f81da1d8956}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {76753a4b-a553-4dd0-802b-90b0d1a1d966}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 5.81251412763851, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {2b65f72d-8ebb-4261-9f95-737986f7c212}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Electric Equipment, !- Name - {76753a4b-a553-4dd0-802b-90b0d1a1d966}, !- Electric Equipment Definition Name - {968bcc4c-fd98-438b-b61b-5f81da1d8956}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {2829a6a3-d557-49c2-883a-6f3c5888d3dc}, !- Handle - 189.1-2009 - Office - WholeBuilding - Lg Office - CZ4-8 Thermostat, !- Name - {e1c00ef5-f530-4453-a67b-ca54f0ae084f}, !- Heating Setpoint Temperature Schedule Name - {205b7ba7-36bf-4caa-b304-f7da82550d15}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {e43c6330-829b-403f-9ef7-6b119710b699}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8, !- Name - , !- Default Construction Set Name - {172a4339-c515-4808-9bf0-cd607a6b94aa}, !- Default Schedule Set Name - {d962ce0f-1f09-4520-8086-d251309638ff}, !- Group Rendering Name - {3157c89d-76b6-49f9-b874-c887b361d5a2}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - WholeBuilding - Md Office; !- Standards Space Type - -OS:Rendering:Color, - {d962ce0f-1f09-4520-8086-d251309638ff}, !- Handle - Rendering Color 31, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {172a4339-c515-4808-9bf0-cd607a6b94aa}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {c46af6b1-d997-440b-a480-2b785127791c}, !- Number of People Schedule Name - {4401923f-7369-4704-af97-5f02eccc07c4}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {e7df833e-4db6-469d-ad96-14b52ff0ceef}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {4b35ab56-cec3-45c0-bd82-7c7c88e72873}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {dfa9825e-f1b4-468b-b1e4-5c934b4e8532}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 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} - -OS:Lights, - {3f8dcdaf-a8d7-44f4-9031-8174616a0a98}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Lights, !- Name - {dfa9825e-f1b4-468b-b1e4-5c934b4e8532}, !- Lights Definition Name - {e43c6330-829b-403f-9ef7-6b119710b699}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {3157c89d-76b6-49f9-b874-c887b361d5a2}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 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:People:Definition, - {795edcf3-25aa-491d-a678-58d2ca199b9b}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {3c49975f-c212-45d2-acc5-def109da8abd}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 People, !- Name - {795edcf3-25aa-491d-a678-58d2ca199b9b}, !- People Definition Name - {e43c6330-829b-403f-9ef7-6b119710b699}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {df024ec1-be72-4029-a6ce-a7a769ef9e4d}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Infiltration, !- Name - {e43c6330-829b-403f-9ef7-6b119710b699}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {538b53f1-6409-45f7-aab7-31348cfbeb43}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 5.81251162502325, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {d39e66d5-58ca-4811-aff8-b5c8352cd6ce}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Electric Equipment, !- Name - {538b53f1-6409-45f7-aab7-31348cfbeb43}, !- Electric Equipment Definition Name - {e43c6330-829b-403f-9ef7-6b119710b699}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {125be356-b9df-4681-bbaa-d4c8cacde878}, !- Handle - 189.1-2009 - Office - WholeBuilding - Md Office - CZ4-8 Thermostat, !- Name - {de733bb4-ab71-44d2-ab3a-a9b7c2a54774}, !- Heating Setpoint Temperature Schedule Name - {e9bd9cb4-1124-4ccf-bf18-c5ad994faa55}; !- Cooling Setpoint Temperature Schedule Name - -OS:SpaceType, - {af544d5a-8953-43ac-a2f2-b7ebb1e82e3a}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8, !- Name - , !- Default Construction Set Name - {6784963e-ba4d-4175-87dd-b5831f929d87}, !- Default Schedule Set Name - {2fd05332-007b-4350-8fd3-4733ddca3f69}, !- Group Rendering Name - {22c007c1-ce62-40f2-8ab0-14c6a644baf2}, !- Design Specification Outdoor Air Object Name - Office, !- Standards Building Type - WholeBuilding - Sm Office; !- Standards Space Type - -OS:Rendering:Color, - {2fd05332-007b-4350-8fd3-4733ddca3f69}, !- Handle - Rendering Color 32, !- Name - 120, !- Rendering Red Value - 230, !- Rendering Green Value - 199; !- Rendering Blue Value - -OS:DefaultScheduleSet, - {6784963e-ba4d-4175-87dd-b5831f929d87}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Schedule Set, !- Name - , !- Hours of Operation Schedule Name - {7db91015-b01f-42c8-b02c-a13d4ed39198}, !- Number of People Schedule Name - {67a55331-2096-4c9b-981a-b63f113d0dd9}, !- People Activity Level Schedule Name - {8a273f29-9e00-4685-a53d-4e9734fa3bef}, !- Lighting Schedule Name - {a51b8fe3-0466-410b-a880-21be07500a52}, !- Electric Equipment Schedule Name - , !- Gas Equipment Schedule Name - , !- Hot Water Equipment Schedule Name - {cb7cb752-a33a-400e-97f3-836bf023796e}, !- Infiltration Schedule Name - , !- Steam Equipment Schedule Name - ; !- Other Equipment Schedule Name - -OS:Lights:Definition, - {c5b24316-59b0-434d-bbd1-d9024a57a7f8}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 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} - -OS:Lights, - {ee01b7ab-7d60-4088-8e4b-98136df7f22f}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Lights, !- Name - {c5b24316-59b0-434d-bbd1-d9024a57a7f8}, !- Lights Definition Name - {af544d5a-8953-43ac-a2f2-b7ebb1e82e3a}; !- Space or SpaceType Name - -OS:DesignSpecification:OutdoorAir, - {22c007c1-ce62-40f2-8ab0-14c6a644baf2}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 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:People:Definition, - {c97216c8-66f4-458c-95f4-2ede85764002}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 People Definition, !- Name - People/Area, !- Number of People Calculation Method - , !- Number of People {people} - 0.0538195520835486, !- People per Space Floor Area {person/m2} - , !- Space Floor Area per Person {m2/person} - 0.3; !- Fraction Radiant - -OS:People, - {adf7594e-c7bc-44e3-8611-369b76c12e69}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 People, !- Name - {c97216c8-66f4-458c-95f4-2ede85764002}, !- People Definition Name - {af544d5a-8953-43ac-a2f2-b7ebb1e82e3a}; !- Space or SpaceType Name - -OS:SpaceInfiltration:DesignFlowRate, - {181313d1-1146-4ec1-a3a2-fbbeceebc667}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Infiltration, !- Name - {af544d5a-8953-43ac-a2f2-b7ebb1e82e3a}, !- Space or SpaceType Name - , !- Schedule Name - Flow/ExteriorArea, !- Design Flow Rate Calculation Method - , !- Design Flow Rate {m3/s} - , !- Flow per Space Floor Area {m3/s-m2} - 0.000226568, !- Flow per Exterior Surface Area {m3/s-m2} - , !- Air Changes per Hour {1/hr} - , !- Constant Term Coefficient - , !- Temperature Term Coefficient - , !- Velocity Term Coefficient - ; !- Velocity Squared Term Coefficient - -OS:ElectricEquipment:Definition, - {f65d6b4d-82ed-4ebf-bc2d-60f944322d6e}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Electric Equipment Definition, !- Name - Watts/Area, !- Design Level Calculation Method - , !- Design Level {W} - 5.81251162502325, !- Watts per Space Floor Area {W/m2} - ; !- Watts per Person {W/person} - -OS:ElectricEquipment, - {b623d4f8-3118-49ac-bc0d-3c98d880b97c}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Electric Equipment, !- Name - {f65d6b4d-82ed-4ebf-bc2d-60f944322d6e}, !- Electric Equipment Definition Name - {af544d5a-8953-43ac-a2f2-b7ebb1e82e3a}; !- Space or SpaceType Name - -OS:ThermostatSetpoint:DualSetpoint, - {7d3d60df-38bd-402a-8cc6-cb780862d808}, !- Handle - 189.1-2009 - Office - WholeBuilding - Sm Office - CZ4-8 Thermostat, !- Name - {a8fc5971-56bf-485f-a8b6-fc00357a220a}, !- Heating Setpoint Temperature Schedule Name - {8334d03b-d787-4c01-a860-2e97c980572e}; !- Cooling Setpoint Temperature Schedule Name - -OS:DefaultConstructionSet, - {4526526b-2bc4-45b3-b597-da3d92ad09a1}, !- Handle - 189.1-2009 - CZ1 - Office, !- Name - {94698301-6b84-4a6f-8b78-75bca600fb17}, !- Default Exterior Surface Constructions Name - {30976b66-935b-4753-a4c5-4dde3dad9985}, !- Default Interior Surface Constructions Name - {a0baf7b0-7330-421a-9c8c-7addd1712d20}, !- Default Ground Contact Surface Constructions Name - {8c8dde84-fcf4-4c1e-ace0-a8bff3aee1ab}, !- Default Exterior SubSurface Constructions Name - {af21604d-d2d4-48d6-ad7c-2a2dbef9e849}, !- Default Interior SubSurface Constructions Name - {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name - , !- Space Shading Construction Name - , !- Building Shading Construction Name - ; !- Site Shading Construction Name - -OS:DefaultSurfaceConstructions, - {94698301-6b84-4a6f-8b78-75bca600fb17}, !- Handle - Default Surface Constructions 1, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {c79253de-386e-46f7-8631-b7bc0fd326fd}, !- Wall Construction Name - {94f9c7d5-7c2c-4130-9083-b2afb613c345}; !- Roof Ceiling Construction Name - -OS:Construction, - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Handle - ExtSlabCarpet 4in ClimateZone 1-8, !- Name - {46dc58c7-b8ea-415a-8606-35a0b11fe039}, !- Surface Rendering Name - {b0084fcb-96e4-4ea6-8b82-68ce2789bc5d}, !- Layer 1 - {778222fb-2d70-4bd3-87aa-e0e7025f46d9}; !- Layer 2 - -OS:StandardsInformation:Construction, - {be48e1b7-5a23-4b52-b581-d47874f332d0}, !- Handle - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Construction Name - ExteriorFloor, !- Intended Surface Type - ; !- Standards Construction Type - -OS:Material, - {b0084fcb-96e4-4ea6-8b82-68ce2789bc5d}, !- Handle - MAT-CC05 4 HW CONCRETE, !- Name - Rough, !- Roughness - 0.1016, !- Thickness {m} - 1.311, !- Conductivity {W/m-K} - 2240, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.85, !- Solar Absorptance - 0.85; !- Visible Absorptance - -OS:Material:NoMass, - {778222fb-2d70-4bd3-87aa-e0e7025f46d9}, !- Handle - CP02 CARPET PAD, !- Name - Smooth, !- Roughness - 0.1, !- Thermal Resistance {m2-K/W} - 0.9, !- Thermal Absorptance - 0.8, !- Solar Absorptance - 0.8; !- Visible Absorptance - -OS:Construction, - {c79253de-386e-46f7-8631-b7bc0fd326fd}, !- Handle - ASHRAE 189.1-2009 ExtWall Mass ClimateZone 1, !- Name - {636bc1bd-3423-4cbd-a7ac-cd596f301582}, !- Surface Rendering Name - {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 - {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 - {35df83f0-9c9a-4bd0-867b-e4f56f2d21e0}, !- Layer 3 - {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 - -OS:StandardsInformation:Construction, - {c35bdbe1-9364-40c4-a088-3593de04f1fd}, !- Handle - {c79253de-386e-46f7-8631-b7bc0fd326fd}, !- Construction Name - ExteriorWall, !- Intended Surface Type - Mass; !- Standards Construction Type - -OS:Material, - {56962c43-17db-4226-8ddc-220e96c9d631}, !- 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.92, !- Solar Absorptance - 0.92; !- Visible Absorptance - -OS:Material, - {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Handle - 8IN Concrete HW, !- Name - MediumRough, !- Roughness - 0.2033, !- Thickness {m} - 1.72959999999999, !- Conductivity {W/m-K} - 2242.99999999999, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.65, !- Solar Absorptance - 0.65; !- Visible Absorptance - -OS:Material, - {35df83f0-9c9a-4bd0-867b-e4f56f2d21e0}, !- Handle - Wall Insulation [31], !- Name - MediumRough, !- Roughness - 0.0337000000000001, !- Thickness {m} - 0.0432, !- Conductivity {W/m-K} - 91, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.5, !- Solar Absorptance - 0.5; !- Visible Absorptance - -OS:Material, - {b6d8e415-7411-437a-ac2c-78a8b90db9d2}, !- 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:Construction, - {94f9c7d5-7c2c-4130-9083-b2afb613c345}, !- Handle - ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 1, !- Name - {71ceef6d-12d0-4e82-89ca-e3101fac6664}, !- Surface Rendering Name - {6710a532-69d6-4fff-84fd-c78074630b20}, !- Layer 1 - {87585ab0-524e-4577-85fa-ca9d328a544b}, !- Layer 2 - {14035dbf-33ad-4b63-a0f4-bc09dc3e2743}; !- Layer 3 - -OS:StandardsInformation:Construction, - {8077a8bc-469c-4708-9d1e-1a587be91ef0}, !- Handle - {94f9c7d5-7c2c-4130-9083-b2afb613c345}, !- Construction Name - ExteriorRoof, !- Intended Surface Type - IEAD; !- Standards Construction Type - -OS:Material, - {6710a532-69d6-4fff-84fd-c78074630b20}, !- 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, - {87585ab0-524e-4577-85fa-ca9d328a544b}, !- Handle - Roof Insulation [18], !- Name - MediumRough, !- Roughness - 0.1693, !- Thickness {m} - 0.049, !- Conductivity {W/m-K} - 265, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:Material, - {14035dbf-33ad-4b63-a0f4-bc09dc3e2743}, !- Handle - Metal Decking, !- Name - MediumSmooth, !- Roughness - 0.0015, !- Thickness {m} - 45.006, !- Conductivity {W/m-K} - 7680, !- Density {kg/m3} - 418.4, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.6, !- Solar Absorptance - 0.6; !- Visible Absorptance - -OS:DefaultSurfaceConstructions, - {30976b66-935b-4753-a4c5-4dde3dad9985}, !- Handle - Default Surface Constructions 2, !- Name - {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name - {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name - {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name - -OS:Construction, - {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Handle - Interior Floor, !- Name - {04a70558-9b0a-4809-8c15-d7f1882136f8}, !- Surface Rendering Name - {9732ca82-5b07-4b63-b379-a76d13f9d0d2}, !- Layer 1 - {c7326da9-9b42-4f08-b9c2-710e29f1df68}, !- Layer 2 - {5b28cd98-6ada-46e3-ab5c-8ce18c82e2e4}; !- Layer 3 - -OS:StandardsInformation:Construction, - {663cbab6-e62e-4117-aefb-5a2c9b9cd1b3}, !- Handle - {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Construction Name - InteriorFloor, !- Intended Surface Type - ; !- Standards Construction Type - -OS:Material, - {9732ca82-5b07-4b63-b379-a76d13f9d0d2}, !- Handle - F16 Acoustic tile, !- Name - MediumSmooth, !- Roughness - 0.0191, !- Thickness {m} - 0.06, !- Conductivity {W/m-K} - 368, !- Density {kg/m3} - 590.000000000002, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.3, !- Solar Absorptance - 0.3; !- Visible Absorptance - -OS:Material:AirGap, - {c7326da9-9b42-4f08-b9c2-710e29f1df68}, !- Handle - F05 Ceiling air space resistance, !- Name - 0.18; !- Thermal Resistance {m2-K/W} - -OS:Material, - {5b28cd98-6ada-46e3-ab5c-8ce18c82e2e4}, !- Handle - M11 100mm lightweight concrete, !- Name - MediumRough, !- Roughness - 0.1016, !- Thickness {m} - 0.53, !- Conductivity {W/m-K} - 1280, !- Density {kg/m3} - 840.000000000002, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.5, !- Solar Absorptance - 0.5; !- Visible Absorptance - -OS:Construction, - {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Handle - Interior Wall, !- Name - {24055de0-4136-450a-bc8d-d8ee32c93212}, !- Surface Rendering Name - {2dde63ec-8c12-47e9-a694-a5c55907b2a7}, !- Layer 1 - {205d1797-4786-41aa-bb49-c62de03322d9}, !- Layer 2 - {2dde63ec-8c12-47e9-a694-a5c55907b2a7}; !- Layer 3 - -OS:StandardsInformation:Construction, - {bf9c6bdf-1d79-4160-843a-67a65bd63099}, !- Handle - {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Construction Name - InteriorWall, !- Intended Surface Type - ; !- Standards Construction Type - -OS:Material, - {2dde63ec-8c12-47e9-a694-a5c55907b2a7}, !- Handle - G01a 19mm gypsum board, !- Name - MediumSmooth, !- Roughness - 0.019, !- Thickness {m} - 0.16, !- Conductivity {W/m-K} - 800, !- Density {kg/m3} - 1090, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.4, !- Solar Absorptance - 0.4; !- Visible Absorptance - -OS:Material:AirGap, - {205d1797-4786-41aa-bb49-c62de03322d9}, !- Handle - F04 Wall air space resistance, !- Name - 0.15; !- Thermal Resistance {m2-K/W} - -OS:Construction, - {edd9ecd3-4290-4d56-b5a9-ef02bf102418}, !- Handle - Interior Ceiling, !- Name - {778e8a0a-a11f-4cdc-b209-ca9fa58a7fd7}, !- Surface Rendering Name - {5b28cd98-6ada-46e3-ab5c-8ce18c82e2e4}, !- Layer 1 - {c7326da9-9b42-4f08-b9c2-710e29f1df68}, !- Layer 2 - {9732ca82-5b07-4b63-b379-a76d13f9d0d2}; !- Layer 3 - -OS:StandardsInformation:Construction, - {ebe3b12b-5ab0-4ea3-a460-6d15ad1d838c}, !- Handle - {edd9ecd3-4290-4d56-b5a9-ef02bf102418}, !- Construction Name - InteriorCeiling, !- Intended Surface Type - ; !- Standards Construction Type - -OS:DefaultSurfaceConstructions, - {a0baf7b0-7330-421a-9c8c-7addd1712d20}, !- Handle - Default Surface Constructions 3, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name - -OS:DefaultSubSurfaceConstructions, - {8c8dde84-fcf4-4c1e-ace0-a8bff3aee1ab}, !- Handle - Default Sub Surface Constructions 1, !- Name - {0644291c-bb2c-4d3e-8d12-d9bf784b59f3}, !- Fixed Window Construction Name - {0644291c-bb2c-4d3e-8d12-d9bf784b59f3}, !- Operable Window Construction Name - {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name - -OS:Construction, - {0644291c-bb2c-4d3e-8d12-d9bf784b59f3}, !- Handle - ASHRAE 189.1-2009 ExtWindow ClimateZone 1, !- Name - {c2c680d2-f325-40ed-95af-d91b806f1ec6}, !- Surface Rendering Name - {7504c39d-35b9-46a8-af6b-598ea9efbc00}; !- Layer 1 - -OS:StandardsInformation:Construction, - {2f79b030-385e-4a8e-9611-a6086da78f3b}, !- Handle - {0644291c-bb2c-4d3e-8d12-d9bf784b59f3}, !- Construction Name - ExteriorWindow, !- Intended Surface Type - ; !- Standards Construction Type - -OS:WindowMaterial:Glazing, - {7504c39d-35b9-46a8-af6b-598ea9efbc00}, !- Handle - Theoretical Glass [167], !- Name - SpectralAverage, !- Optical Data Type - , !- Window Glass Spectral Data Set Name - 0.00299999999999999, !- Thickness {m} - 0.2374, !- Solar Transmittance at Normal Incidence - 0.7126, !- Front Side Solar Reflectance at Normal Incidence - 0, !- Back Side Solar Reflectance at Normal Incidence - 0.2512, !- Visible Transmittance at Normal Incidence - 0.6988, !- Front Side Visible Reflectance at Normal Incidence - 0, !- Back Side Visible Reflectance at Normal Incidence - 0, !- Infrared Transmittance at Normal Incidence - 0.985, !- Front Side Infrared Hemispherical Emissivity - 0.985, !- Back Side Infrared Hemispherical Emissivity - 2.1073, !- Conductivity {W/m-K} - 1, !- Dirt Correction Factor for Solar and Visible Transmittance - No; !- Solar Diffusing - -OS:Construction, - {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Handle - Exterior Door, !- Name - {e86c4cfc-a78a-4674-ba86-da0778391d75}, !- Surface Rendering Name - {c6e9c62f-1f07-4a3e-9b2c-2831b69154d4}, !- Layer 1 - {ae918277-1c95-4bfe-88be-0a83ad1a7f17}; !- Layer 2 - -OS:StandardsInformation:Construction, - {8360869b-2b70-474f-bade-2c09b27cfba6}, !- Handle - {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Construction Name - ExteriorDoor, !- Intended Surface Type - ; !- Standards Construction Type - -OS:Material, - {c6e9c62f-1f07-4a3e-9b2c-2831b69154d4}, !- 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:Material, - {ae918277-1c95-4bfe-88be-0a83ad1a7f17}, !- Handle - I01 25mm insulation board, !- Name - MediumRough, !- Roughness - 0.0254, !- Thickness {m} - 0.03, !- Conductivity {W/m-K} - 43, !- Density {kg/m3} - 1210, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.6, !- Solar Absorptance - 0.6; !- Visible Absorptance - -OS:Construction, - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Handle - Interior Window, !- Name - {17a12f4b-94a3-4b11-aee4-8fdfaca5c4df}, !- Surface Rendering Name - {572356bb-0c24-49d0-b480-38deaae93b50}; !- Layer 1 - -OS:StandardsInformation:Construction, - {4fba2562-eb53-42df-a812-1a96a11e00db}, !- Handle - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Construction Name - InteriorWindow, !- Intended Surface Type - ; !- Standards Construction Type - -OS:WindowMaterial:Glazing, - {572356bb-0c24-49d0-b480-38deaae93b50}, !- 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, !- Back Side Solar Reflectance at Normal Incidence - 0.898, !- Visible Transmittance at Normal Incidence - 0.081, !- Front Side Visible Reflectance at Normal Incidence - 0, !- 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:DefaultSubSurfaceConstructions, - {af21604d-d2d4-48d6-ad7c-2a2dbef9e849}, !- Handle - Default Sub Surface Constructions 2, !- Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name - {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- 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, - {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Handle - Interior Door, !- Name - {ccf8d0cb-0b4e-4bde-b89e-93647118a409}, !- Surface Rendering Name - {ae50953e-1941-4cdc-9cd9-2741ffa65317}; !- Layer 1 - -OS:StandardsInformation:Construction, - {4762d527-aeec-484d-9813-4b846d1e2743}, !- Handle - {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Construction Name - InteriorDoor, !- Intended Surface Type - ; !- Standards Construction Type - -OS:Material, - {ae50953e-1941-4cdc-9cd9-2741ffa65317}, !- 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:Construction, - {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Handle - Interior Partition, !- Name - {62e34ae8-ba70-4da1-925b-57bf2c7ef24b}, !- Surface Rendering Name - {ae50953e-1941-4cdc-9cd9-2741ffa65317}; !- Layer 1 - -OS:StandardsInformation:Construction, - {bbf8ba28-8bef-42c1-b5d6-7469584234ea}, !- Handle - {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Construction Name - InteriorPartition, !- Intended Surface Type - ; !- Standards Construction Type - -OS:DefaultConstructionSet, - {687d05db-8053-4a94-b114-53e0716a9896}, !- Handle - 189.1-2009 - CZ2 - Office, !- Name - {8edba1bd-b329-4c83-a9b8-09990e95b65e}, !- Default Exterior Surface Constructions Name - {e18c1749-b591-41fb-9e64-177679114054}, !- Default Interior Surface Constructions Name - {69098a8f-01d4-41f8-97e8-f3616bf95c30}, !- Default Ground Contact Surface Constructions Name - {26c0a2ac-6869-41a8-85e0-493990988654}, !- Default Exterior SubSurface Constructions Name - {31e1c75d-6ff4-480b-8189-458ca9a5f35c}, !- Default Interior SubSurface Constructions Name - {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name - , !- Space Shading Construction Name - , !- Building Shading Construction Name - ; !- Site Shading Construction Name - -OS:DefaultSurfaceConstructions, - {8edba1bd-b329-4c83-a9b8-09990e95b65e}, !- Handle - Default Surface Constructions 4, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {99407b2e-49f5-4dd2-a138-e5f57ad89854}, !- Wall Construction Name - {6e592600-ac13-4db1-bf26-a5a95984aa4d}; !- Roof Ceiling Construction Name - -OS:Construction, - {99407b2e-49f5-4dd2-a138-e5f57ad89854}, !- Handle - ASHRAE 189.1-2009 ExtWall Mass ClimateZone 2, !- Name - {d9de7cbd-050f-4e61-8f9b-075aa1df65bb}, !- Surface Rendering Name - {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 - {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 - {9aee91bc-9ebe-405c-8a50-5030bc542822}, !- Layer 3 - {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 - -OS:StandardsInformation:Construction, - {85ebc66f-75e7-41c3-b466-fe2b2df44e89}, !- Handle - {99407b2e-49f5-4dd2-a138-e5f57ad89854}, !- Construction Name - ExteriorWall, !- Intended Surface Type - Mass; !- Standards Construction Type - -OS:Material, - {9aee91bc-9ebe-405c-8a50-5030bc542822}, !- Handle - Wall Insulation [35], !- Name - MediumRough, !- Roughness - 0.0452, !- Thickness {m} - 0.0432, !- Conductivity {W/m-K} - 91, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.5, !- Solar Absorptance - 0.5; !- Visible Absorptance - -OS:Construction, - {6e592600-ac13-4db1-bf26-a5a95984aa4d}, !- Handle - ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 2-5, !- Name - {1931b433-ad5c-43ae-8248-796522c09dae}, !- Surface Rendering Name - {6710a532-69d6-4fff-84fd-c78074630b20}, !- Layer 1 - {5dcafaa7-3d40-49db-9ee5-cc3b2bb2278c}, !- Layer 2 - {14035dbf-33ad-4b63-a0f4-bc09dc3e2743}; !- Layer 3 - -OS:StandardsInformation:Construction, - {27c0d4ca-5cef-498b-bf78-a2e0e38f4e08}, !- Handle - {6e592600-ac13-4db1-bf26-a5a95984aa4d}, !- Construction Name - ExteriorRoof, !- Intended Surface Type - IEAD; !- Standards Construction Type - -OS:Material, - {5dcafaa7-3d40-49db-9ee5-cc3b2bb2278c}, !- Handle - Roof Insulation [21], !- Name - MediumRough, !- Roughness - 0.2105, !- Thickness {m} - 0.049, !- Conductivity {W/m-K} - 265, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance - -OS:DefaultSurfaceConstructions, - {e18c1749-b591-41fb-9e64-177679114054}, !- Handle - Default Surface Constructions 5, !- Name - {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name - {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name - {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {69098a8f-01d4-41f8-97e8-f3616bf95c30}, !- Handle - Default Surface Constructions 6, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name +OS:Schedule:Ruleset, + {751149f3-4831-4b8a-bc4c-8e2257596d05}, !- Handle + Medium Office Infiltration Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + {e0619557-4de5-4563-9cb0-dc3be3068de9}, !- Default Day Schedule Name + {1e853b2c-b3e8-4bdd-9e62-ca6f51df43f7}, !- Summer Design Day Schedule Name + {986ff3c0-78d3-4e81-9526-f1b54d0a46ba}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {e0619557-4de5-4563-9cb0-dc3be3068de9}, !- Handle + Medium Office Infiltration Default Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 1; !- Value Until Time 1 -OS:DefaultSubSurfaceConstructions, - {26c0a2ac-6869-41a8-85e0-493990988654}, !- Handle - Default Sub Surface Constructions 3, !- Name - {7a0f32f0-ed41-4458-b35f-782d54c4cf3c}, !- Fixed Window Construction Name - {7a0f32f0-ed41-4458-b35f-782d54c4cf3c}, !- Operable Window Construction Name - {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name +OS:Schedule:Day, + {5eb24303-369e-4e34-9a05-037133fff59a}, !- Handle + Medium Office Infiltration Summer Design Day Schedule, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 -OS:Construction, - {7a0f32f0-ed41-4458-b35f-782d54c4cf3c}, !- Handle - ASHRAE 189.1-2009 ExtWindow ClimateZone 2, !- Name - {fa64966f-7624-43ea-a584-54dd0654c4fa}, !- Surface Rendering Name - {0df6dfac-0759-43e9-8314-9539c41eefda}; !- Layer 1 +OS:Schedule:Day, + {1e853b2c-b3e8-4bdd-9e62-ca6f51df43f7}, !- Handle + Medium Office Infiltration Summer Design Day Schedule 1, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 -OS:StandardsInformation:Construction, - {56d08b42-76df-4617-82fc-10413928e30e}, !- Handle - {7a0f32f0-ed41-4458-b35f-782d54c4cf3c}, !- Construction Name - ExteriorWindow, !- Intended Surface Type - ; !- Standards Construction Type +OS:Schedule:Rule, + {4f2749c9-e9b6-4567-a825-88497df3ab28}, !- Handle + Medium Office Infiltration Schedule Weekdays Rule, !- Name + {751149f3-4831-4b8a-bc4c-8e2257596d05}, !- Schedule Ruleset Name + 1, !- Rule Order + {455400c4-a7e4-4cd0-b998-7f6a71e9da88}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes; !- Apply Friday + +OS:Schedule:Day, + {455400c4-a7e4-4cd0-b998-7f6a71e9da88}, !- Handle + Medium Office Infiltration Weekdays Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 -OS:WindowMaterial:Glazing, - {0df6dfac-0759-43e9-8314-9539c41eefda}, !- Handle - Theoretical Glass [197], !- Name - SpectralAverage, !- Optical Data Type - , !- Window Glass Spectral Data Set Name - 0.00299999999999999, !- Thickness {m} - 0.2349, !- Solar Transmittance at Normal Incidence - 0.7151, !- Front Side Solar Reflectance at Normal Incidence - 0, !- Back Side Solar Reflectance at Normal Incidence - 0.2512, !- Visible Transmittance at Normal Incidence - 0.6988, !- Front Side Visible Reflectance at Normal Incidence - 0, !- Back Side Visible Reflectance at Normal Incidence - 0, !- Infrared Transmittance at Normal Incidence - 0.9, !- Front Side Infrared Hemispherical Emissivity - 0.9, !- Back Side Infrared Hemispherical Emissivity - 0.0415, !- Conductivity {W/m-K} - 1, !- Dirt Correction Factor for Solar and Visible Transmittance - No; !- Solar Diffusing +OS:Schedule:Day, + {59b8e85c-bee0-45a1-ae91-bc7c14d7febf}, !- Handle + Medium Office Infiltration Winter Design Day Schedule, !- Name + , !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 18, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 -OS:DefaultSubSurfaceConstructions, - {31e1c75d-6ff4-480b-8189-458ca9a5f35c}, !- Handle - Default Sub Surface Constructions 4, !- Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name - {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- 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:Schedule:Day, + {986ff3c0-78d3-4e81-9526-f1b54d0a46ba}, !- Handle + Medium Office Infiltration Winter Design Day Schedule 1, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 18, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 -OS:DefaultConstructionSet, - {3506f604-9b28-4c01-8fc6-87fabe876a1b}, !- Handle - 189.1-2009 - CZ3 - Office, !- Name - {79cccbfe-3f49-4acb-bdf2-e7139171fa8f}, !- Default Exterior Surface Constructions Name - {d2c070d0-e055-4eab-91fe-70399799fd2c}, !- Default Interior Surface Constructions Name - {8e86a490-adb3-49ef-8ad5-5a0e28d39cf9}, !- Default Ground Contact Surface Constructions Name - {8e17c840-44c6-43f4-81f8-12f4bcac2369}, !- Default Exterior SubSurface Constructions Name - {2e3cc8bd-5113-4870-b568-af600af67faa}, !- Default Interior SubSurface Constructions Name - {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name - , !- Space Shading Construction Name - , !- Building Shading Construction Name - ; !- Site Shading Construction Name +OS:Schedule:Rule, + {0343ffb5-05c5-4c73-940a-a859eecc0201}, !- Handle + Medium Office Infiltration Schedule Saturday Rule, !- Name + {751149f3-4831-4b8a-bc4c-8e2257596d05}, !- Schedule Ruleset Name + 0, !- Rule Order + {904b23f8-0f80-4ee6-9c62-439bde0f5068}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes; !- Apply Saturday + +OS:Schedule:Day, + {904b23f8-0f80-4ee6-9c62-439bde0f5068}, !- Handle + Medium Office Infiltration Saturday Schedule, !- Name + {2599d124-517d-4e7e-848f-fb2deeba0793}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 1, !- Value Until Time 1 + 18, !- Hour 2 + 0, !- Minute 2 + 0.25, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 1; !- Value Until Time 3 -OS:DefaultSurfaceConstructions, - {79cccbfe-3f49-4acb-bdf2-e7139171fa8f}, !- Handle - Default Surface Constructions 7, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {dd95d8d1-cb40-4462-b3ef-6d971a9babc7}, !- Wall Construction Name - {6e592600-ac13-4db1-bf26-a5a95984aa4d}; !- Roof Ceiling Construction Name +OS:Schedule:Ruleset, + {27a785cd-7d7f-4549-8adc-8eab52da6415}, !- Handle + Medium Office Cooling Setpoint Schedule, !- Name + {67a065c0-22e3-420b-a098-c1929910950b}, !- Schedule Type Limits Name + {17f67c1f-81f0-4388-82d9-32b61a5cfd1f}, !- Default Day Schedule Name + {aebc615b-09d0-4c01-975b-c4e3be3aa5e6}; !- Summer Design Day Schedule Name -OS:Construction, - {dd95d8d1-cb40-4462-b3ef-6d971a9babc7}, !- Handle - ASHRAE 189.1-2009 ExtWall Mass ClimateZone 3, !- Name - {460f8255-5f86-432f-a773-d413b7d383bc}, !- Surface Rendering Name - {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 - {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 - {0237a258-22d1-4ebf-9808-109d59b975c9}, !- Layer 3 - {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 +OS:Schedule:Day, + {17f67c1f-81f0-4388-82d9-32b61a5cfd1f}, !- Handle + Medium Office Cooling Setpoint All Other Days Schedule, !- Name + {67a065c0-22e3-420b-a098-c1929910950b}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 26.7; !- Value Until Time 1 -OS:StandardsInformation:Construction, - {467ca491-6c1d-4847-a1dd-a5fe4331f049}, !- Handle - {dd95d8d1-cb40-4462-b3ef-6d971a9babc7}, !- Construction Name - ExteriorWall, !- Intended Surface Type - Mass; !- Standards Construction Type +OS:Schedule:Day, + {a108bea3-580c-416f-8db2-35d946623ed7}, !- Handle + Medium Office Cooling Setpoint Summer Design Day Schedule, !- Name + {67a065c0-22e3-420b-a098-c1929910950b}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 26.7, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 24, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 26.7; !- Value Until Time 3 -OS:Material, - {0237a258-22d1-4ebf-9808-109d59b975c9}, !- Handle - Wall Insulation [36], !- Name - MediumRough, !- Roughness - 0.0565999999999999, !- Thickness {m} - 0.0432, !- Conductivity {W/m-K} - 91, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.5, !- Solar Absorptance - 0.5; !- Visible Absorptance +OS:Schedule:Day, + {aebc615b-09d0-4c01-975b-c4e3be3aa5e6}, !- Handle + Medium Office Cooling Setpoint Summer Design Day Schedule 1, !- Name + {67a065c0-22e3-420b-a098-c1929910950b}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 26.7, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 24, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 26.7; !- Value Until Time 3 -OS:DefaultSurfaceConstructions, - {d2c070d0-e055-4eab-91fe-70399799fd2c}, !- Handle - Default Surface Constructions 8, !- Name - {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name - {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name - {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name +OS:Schedule:Rule, + {52fcd171-ef2a-4925-849f-180dbee801bd}, !- Handle + Medium Office Cooling Setpoint Schedule Weekdays Rule, !- Name + {27a785cd-7d7f-4549-8adc-8eab52da6415}, !- Schedule Ruleset Name + 1, !- Rule Order + {cd29805f-ba5c-418c-a3ec-6523a0818dac}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes; !- Apply Friday + +OS:Schedule:Day, + {cd29805f-ba5c-418c-a3ec-6523a0818dac}, !- Handle + Medium Office Cooling Setpoint Weekdays Schedule, !- Name + {67a065c0-22e3-420b-a098-c1929910950b}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 26.7, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 24, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 26.7; !- Value Until Time 3 -OS:DefaultSurfaceConstructions, - {8e86a490-adb3-49ef-8ad5-5a0e28d39cf9}, !- Handle - Default Surface Constructions 9, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name +OS:Schedule:Rule, + {f1232600-4bfc-4b4e-9008-3361d42541a5}, !- Handle + Medium Office Cooling Setpoint Schedule Saturday Rule, !- Name + {27a785cd-7d7f-4549-8adc-8eab52da6415}, !- Schedule Ruleset Name + 0, !- Rule Order + {ba0c1822-0105-4215-96c0-d093b2f8e1c3}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes; !- Apply Saturday + +OS:Schedule:Day, + {ba0c1822-0105-4215-96c0-d093b2f8e1c3}, !- Handle + Medium Office Cooling Setpoint Saturday Schedule, !- Name + {67a065c0-22e3-420b-a098-c1929910950b}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 26.7, !- Value Until Time 1 + 18, !- Hour 2 + 0, !- Minute 2 + 24, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 26.7; !- Value Until Time 3 -OS:DefaultSubSurfaceConstructions, - {8e17c840-44c6-43f4-81f8-12f4bcac2369}, !- Handle - Default Sub Surface Constructions 5, !- Name - {253b4c5e-eec6-44ee-a66e-86e873e08a61}, !- Fixed Window Construction Name - {253b4c5e-eec6-44ee-a66e-86e873e08a61}, !- Operable Window Construction Name - {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name +OS:Schedule:Ruleset, + {9d750b08-f5bd-410d-a629-1a2ec1405410}, !- Handle + Medium Office Heating Setpoint Schedule, !- Name + {67a065c0-22e3-420b-a098-c1929910950b}, !- Schedule Type Limits Name + {99982627-1c6f-4c3d-84d8-c1717ce8edc9}, !- Default Day Schedule Name + , !- Summer Design Day Schedule Name + {d620edaa-a5bd-45af-b3a1-1923c2bbec31}; !- Winter Design Day Schedule Name + +OS:Schedule:Day, + {99982627-1c6f-4c3d-84d8-c1717ce8edc9}, !- Handle + Medium Office Heating Setpoint All Other Days Schedule, !- Name + {67a065c0-22e3-420b-a098-c1929910950b}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 15.6; !- Value Until Time 1 -OS:Construction, - {253b4c5e-eec6-44ee-a66e-86e873e08a61}, !- Handle - ASHRAE 189.1-2009 ExtWindow ClimateZone 3, !- Name - {8f9423e5-3ed6-4351-be9e-dbbdd330b500}, !- Surface Rendering Name - {64d8cad3-3a12-4843-92ce-a114da8ac461}; !- Layer 1 +OS:Schedule:Day, + {0735d0fc-a576-409a-8045-02d53253c695}, !- Handle + Medium Office Heating Setpoint Winter Design Day Schedule, !- Name + {67a065c0-22e3-420b-a098-c1929910950b}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 21; !- Value Until Time 1 -OS:StandardsInformation:Construction, - {61f36c91-69cb-4354-9f7e-cfa1cb96b197}, !- Handle - {253b4c5e-eec6-44ee-a66e-86e873e08a61}, !- Construction Name - ExteriorWindow, !- Intended Surface Type - ; !- Standards Construction Type +OS:Schedule:Day, + {d620edaa-a5bd-45af-b3a1-1923c2bbec31}, !- Handle + Medium Office Heating Setpoint Winter Design Day Schedule 1, !- Name + {67a065c0-22e3-420b-a098-c1929910950b}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 24, !- Hour 1 + 0, !- Minute 1 + 21; !- Value Until Time 1 -OS:WindowMaterial:Glazing, - {64d8cad3-3a12-4843-92ce-a114da8ac461}, !- Handle - Theoretical Glass [202], !- Name - SpectralAverage, !- Optical Data Type - , !- Window Glass Spectral Data Set Name - 0.00299999999999999, !- Thickness {m} - 0.2325, !- Solar Transmittance at Normal Incidence - 0.7175, !- Front Side Solar Reflectance at Normal Incidence - 0, !- Back Side Solar Reflectance at Normal Incidence - 0.3192, !- Visible Transmittance at Normal Incidence - 0.6308, !- Front Side Visible Reflectance at Normal Incidence - 0, !- Back Side Visible Reflectance at Normal Incidence - 0, !- Infrared Transmittance at Normal Incidence - 0.9, !- Front Side Infrared Hemispherical Emissivity - 0.9, !- Back Side Infrared Hemispherical Emissivity - 0.0192, !- Conductivity {W/m-K} - 1, !- Dirt Correction Factor for Solar and Visible Transmittance - No; !- Solar Diffusing +OS:Schedule:Rule, + {1bf651d8-1a5a-4c41-9727-9a50ec355d68}, !- Handle + Medium Office Heating Setpoint Schedule Weekdays Rule, !- Name + {9d750b08-f5bd-410d-a629-1a2ec1405410}, !- Schedule Ruleset Name + 1, !- Rule Order + {1b1eb11f-6a46-4dab-ba23-adb7828c2415}, !- Day Schedule Name + , !- Apply Sunday + Yes, !- Apply Monday + Yes, !- Apply Tuesday + Yes, !- Apply Wednesday + Yes, !- Apply Thursday + Yes; !- Apply Friday + +OS:Schedule:Day, + {1b1eb11f-6a46-4dab-ba23-adb7828c2415}, !- Handle + Medium Office Heating Setpoint Weekdays Schedule, !- Name + {67a065c0-22e3-420b-a098-c1929910950b}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 15.6, !- Value Until Time 1 + 22, !- Hour 2 + 0, !- Minute 2 + 21, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 15.6; !- Value Until Time 3 -OS:DefaultSubSurfaceConstructions, - {2e3cc8bd-5113-4870-b568-af600af67faa}, !- Handle - Default Sub Surface Constructions 6, !- Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name - {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- 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:Schedule:Rule, + {d90a4e90-0c34-40db-9511-9812ae9a6fae}, !- Handle + Medium Office Heating Setpoint Schedule Saturday Rule, !- Name + {9d750b08-f5bd-410d-a629-1a2ec1405410}, !- Schedule Ruleset Name + 0, !- Rule Order + {b846224e-7431-4366-840a-2f6ce8704db8}, !- Day Schedule Name + , !- Apply Sunday + , !- Apply Monday + , !- Apply Tuesday + , !- Apply Wednesday + , !- Apply Thursday + , !- Apply Friday + Yes; !- Apply Saturday + +OS:Schedule:Day, + {b846224e-7431-4366-840a-2f6ce8704db8}, !- Handle + Medium Office Heating Setpoint Saturday Schedule, !- Name + {67a065c0-22e3-420b-a098-c1929910950b}, !- Schedule Type Limits Name + , !- Interpolate to Timestep + 6, !- Hour 1 + 0, !- Minute 1 + 15.6, !- Value Until Time 1 + 18, !- Hour 2 + 0, !- Minute 2 + 21, !- Value Until Time 2 + 24, !- Hour 3 + 0, !- Minute 3 + 15.6; !- Value Until Time 3 OS:DefaultConstructionSet, - {b7cdc63e-a919-41dd-86e1-dece88dfdb28}, !- Handle - 189.1-2009 - CZ4 - Office, !- Name - {3ef37f21-bbe3-4f3b-9b65-3ad9770f3a44}, !- Default Exterior Surface Constructions Name - {92813ed9-8be8-4db7-93eb-d9414bb5857c}, !- Default Interior Surface Constructions Name - {a1c91290-96c5-4ee4-988a-5b2845afb68b}, !- Default Ground Contact Surface Constructions Name - {8236d225-796d-412a-a2e2-1295101f741d}, !- Default Exterior SubSurface Constructions Name - {a9819d00-d437-4adf-b7bd-7824978b9e03}, !- Default Interior SubSurface Constructions Name - {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name + {56549bce-d164-415a-97c4-3df6fb245d7d}, !- Handle + Default Constructions, !- Name + {36b060a4-b30a-4c49-a830-c775b2f8f166}, !- Default Exterior Surface Constructions Name + {0a6292f9-226d-48a3-83ad-68367a6ab446}, !- Default Interior Surface Constructions Name + {2eeea86c-4213-4f3a-abef-1f063925e8fe}, !- Default Ground Contact Surface Constructions Name + {e4b65bdf-b9c9-46c3-8d1d-22da7d1e70bf}, !- Default Exterior SubSurface Constructions Name + {0a22b1b9-7268-473c-bb95-960f8790b573}, !- Default Interior SubSurface Constructions Name + {c3e28441-358a-4764-b5ee-ac181d98e294}, !- Interior Partition Construction Name , !- Space Shading Construction Name , !- Building Shading Construction Name - ; !- Site Shading Construction Name + , !- Site Shading Construction Name + ; !- Adiabatic Surface Construction Name OS:DefaultSurfaceConstructions, - {3ef37f21-bbe3-4f3b-9b65-3ad9770f3a44}, !- Handle - Default Surface Constructions 10, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {b23633e3-75a0-470c-b30f-e321d99e7ed1}, !- Wall Construction Name - {6e592600-ac13-4db1-bf26-a5a95984aa4d}; !- Roof Ceiling Construction Name - -OS:Construction, - {b23633e3-75a0-470c-b30f-e321d99e7ed1}, !- Handle - ASHRAE 189.1-2009 ExtWall Mass ClimateZone 4, !- Name - {584c45ae-4787-45d1-9dd4-f33b0f8347f9}, !- Surface Rendering Name - {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 - {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 - {b60a50b3-1951-483d-a113-6fc416753502}, !- Layer 3 - {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 - -OS:StandardsInformation:Construction, - {3f492503-4801-4755-8e33-6b43c94c88c0}, !- Handle - {b23633e3-75a0-470c-b30f-e321d99e7ed1}, !- Construction Name - ExteriorWall, !- Intended Surface Type - Mass; !- Standards Construction Type - -OS:Material, - {b60a50b3-1951-483d-a113-6fc416753502}, !- Handle - Wall Insulation [37], !- Name - MediumRough, !- Roughness - 0.0680999999999999, !- Thickness {m} - 0.0432, !- Conductivity {W/m-K} - 91, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.5, !- Solar Absorptance - 0.5; !- Visible Absorptance + {36b060a4-b30a-4c49-a830-c775b2f8f166}, !- Handle + Exterior Surface Constructions, !- Name + , !- Floor Construction Name + {711df98d-713b-42d9-a14c-97c75511cf1c}, !- Wall Construction Name + {e4c297b6-3a99-4e2e-a09a-ba73fe200473}; !- Roof Ceiling Construction Name OS:DefaultSurfaceConstructions, - {92813ed9-8be8-4db7-93eb-d9414bb5857c}, !- Handle - Default Surface Constructions 11, !- Name - {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name - {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name - {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name + {0a6292f9-226d-48a3-83ad-68367a6ab446}, !- Handle + Interior Surface Constructions, !- Name + {cd8846fe-b309-4921-859d-b7ef6621f679}, !- Floor Construction Name + {89fec660-d918-4610-9613-55dd20334c5b}, !- Wall Construction Name + {38c1cacd-e9e3-4ac8-84a0-4c94c49b794b}; !- Roof Ceiling Construction Name OS:DefaultSurfaceConstructions, - {a1c91290-96c5-4ee4-988a-5b2845afb68b}, !- Handle - Default Surface Constructions 12, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name + {2eeea86c-4213-4f3a-abef-1f063925e8fe}, !- Handle + Ground Contact Surface Constructions, !- Name + {7bc4709e-786a-4797-8f77-763dad33de89}, !- Floor Construction Name + , !- Wall Construction Name + ; !- Roof Ceiling Construction Name OS:DefaultSubSurfaceConstructions, - {8236d225-796d-412a-a2e2-1295101f741d}, !- Handle - Default Sub Surface Constructions 7, !- Name - {a19abee3-5e27-4244-9552-a3961f6ec2b6}, !- Fixed Window Construction Name - {a19abee3-5e27-4244-9552-a3961f6ec2b6}, !- Operable Window Construction Name - {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name + {e4b65bdf-b9c9-46c3-8d1d-22da7d1e70bf}, !- Handle + Exterior SubSurface Constructions, !- Name + {7e27ca26-5115-478b-be7c-282a93c2f243}, !- Fixed Window Construction Name + {7e27ca26-5115-478b-be7c-282a93c2f243}, !- Operable Window Construction Name + {e8c06423-835d-4d7a-bf60-44ab7e433add}, !- Door Construction Name + {7e27ca26-5115-478b-be7c-282a93c2f243}, !- Glass Door Construction Name + {e8c06423-835d-4d7a-bf60-44ab7e433add}, !- Overhead Door Construction Name + {7e27ca26-5115-478b-be7c-282a93c2f243}, !- Skylight Construction Name + {7e27ca26-5115-478b-be7c-282a93c2f243}, !- Tubular Daylight Dome Construction Name + {7e27ca26-5115-478b-be7c-282a93c2f243}; !- Tubular Daylight Diffuser Construction Name -OS:Construction, - {a19abee3-5e27-4244-9552-a3961f6ec2b6}, !- Handle - ASHRAE 189.1-2009 ExtWindow ClimateZone 4-5, !- Name - {d0c8c19d-30d5-48bd-a3a0-3c16ccc1303b}, !- Surface Rendering Name - {9914bb36-b162-493f-a77d-317b37a6dfe0}; !- Layer 1 +OS:DefaultSubSurfaceConstructions, + {0a22b1b9-7268-473c-bb95-960f8790b573}, !- Handle + Interior SubSurface Constructions, !- Name + {7c762dbd-ae14-4dbe-b1be-4cf027a30199}, !- Fixed Window Construction Name + {7c762dbd-ae14-4dbe-b1be-4cf027a30199}, !- Operable Window Construction Name + {963fb0b1-9082-453d-9e10-5ba7995e22ea}, !- Door Construction Name + {7c762dbd-ae14-4dbe-b1be-4cf027a30199}, !- Glass Door Construction Name + {963fb0b1-9082-453d-9e10-5ba7995e22ea}, !- Overhead Door Construction Name + {7c762dbd-ae14-4dbe-b1be-4cf027a30199}, !- Skylight Construction Name + {7c762dbd-ae14-4dbe-b1be-4cf027a30199}, !- Tubular Daylight Dome Construction Name + {7c762dbd-ae14-4dbe-b1be-4cf027a30199}; !- Tubular Daylight Diffuser Construction Name -OS:StandardsInformation:Construction, - {d55825e5-87d9-473f-9fe3-b54e798b73b2}, !- Handle - {a19abee3-5e27-4244-9552-a3961f6ec2b6}, !- Construction Name - ExteriorWindow, !- Intended Surface Type - ; !- Standards Construction Type +OS:Material, + {b4f6ef24-1fd4-49cd-8c82-8b553afde2a9}, !- Handle + M01 100mm brick, !- Name + MediumRough, !- Roughness + 0.1016, !- Thickness {m} + 0.89, !- Conductivity {W/m-K} + 1920, !- Density {kg/m3} + 790; !- Specific Heat {J/kg-K} -OS:WindowMaterial:Glazing, - {9914bb36-b162-493f-a77d-317b37a6dfe0}, !- Handle - Theoretical Glass [207], !- Name - SpectralAverage, !- Optical Data Type - , !- Window Glass Spectral Data Set Name - 0.00299999999999999, !- Thickness {m} - 0.3311, !- Solar Transmittance at Normal Incidence - 0.6189, !- Front Side Solar Reflectance at Normal Incidence - 0, !- Back Side Solar Reflectance at Normal Incidence - 0.44, !- Visible Transmittance at Normal Incidence - 0.51, !- Front Side Visible Reflectance at Normal Incidence - 0, !- Back Side Visible Reflectance at Normal Incidence - 0, !- Infrared Transmittance at Normal Incidence - 0.9, !- Front Side Infrared Hemispherical Emissivity - 0.9, !- Back Side Infrared Hemispherical Emissivity - 0.0133, !- Conductivity {W/m-K} - 1, !- Dirt Correction Factor for Solar and Visible Transmittance - No; !- Solar Diffusing +OS:Material, + {86ae65d1-eb25-44de-be95-1b90fe0f1c58}, !- Handle + M15 200mm heavyweight concrete, !- Name + MediumRough, !- Roughness + 0.2032, !- Thickness {m} + 1.95, !- Conductivity {W/m-K} + 2240, !- Density {kg/m3} + 900; !- Specific Heat {J/kg-K} -OS:DefaultSubSurfaceConstructions, - {a9819d00-d437-4adf-b7bd-7824978b9e03}, !- Handle - Default Sub Surface Constructions 8, !- Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name - {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- 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:Material, + {520cffc6-8fb5-4f2f-859b-1c787b6a4c1c}, !- Handle + I02 50mm insulation board, !- Name + MediumRough, !- Roughness + 0.0508, !- Thickness {m} + 0.03, !- Conductivity {W/m-K} + 43, !- Density {kg/m3} + 1210; !- Specific Heat {J/kg-K} -OS:DefaultConstructionSet, - {58749418-1c83-496b-94e6-80aa0fd3ac39}, !- Handle - 189.1-2009 - CZ5 - Office, !- Name - {f6881ecb-7aaf-431a-b1d2-61de79238f70}, !- Default Exterior Surface Constructions Name - {d97abec2-033d-43ce-a763-4ed6937bae4d}, !- Default Interior Surface Constructions Name - {d684c8db-7bf4-4966-b9eb-ea0c2afdf86b}, !- Default Ground Contact Surface Constructions Name - {bb191ec6-d6ab-407d-9fb2-31dc2ae3bb75}, !- Default Exterior SubSurface Constructions Name - {b6d85e89-1972-4d08-8dd6-1ad51c17f701}, !- Default Interior SubSurface Constructions Name - {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name - , !- Space Shading Construction Name - , !- Building Shading Construction Name - ; !- Site Shading Construction Name +OS:Material:AirGap, + {d0cb840d-6a14-4d4a-acc5-6e2c709c006d}, !- Handle + F04 Wall air space resistance, !- Name + 0.15; !- Thermal Resistance {m2-K/W} -OS:DefaultSurfaceConstructions, - {f6881ecb-7aaf-431a-b1d2-61de79238f70}, !- Handle - Default Surface Constructions 13, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {69871c9e-7438-4e91-92bd-66fabb7f9850}, !- Wall Construction Name - {6e592600-ac13-4db1-bf26-a5a95984aa4d}; !- Roof Ceiling Construction Name +OS:Material, + {96622a6b-2c1d-42b4-8986-b8bd79559523}, !- Handle + G01a 19mm gypsum board, !- Name + MediumSmooth, !- Roughness + 0.019, !- Thickness {m} + 0.16, !- Conductivity {W/m-K} + 800, !- Density {kg/m3} + 1090; !- Specific Heat {J/kg-K} OS:Construction, - {69871c9e-7438-4e91-92bd-66fabb7f9850}, !- Handle - ASHRAE 189.1-2009 ExtWall Mass ClimateZone 5, !- Name - {7540a07b-c6b7-4faf-a374-fc8ad428bb83}, !- Surface Rendering Name - {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 - {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 - {0681dbd1-2005-474d-9af1-f3e3c9bdfdd6}, !- Layer 3 - {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 + {711df98d-713b-42d9-a14c-97c75511cf1c}, !- Handle + Exterior Wall, !- Name + , !- Surface Rendering Name + {b4f6ef24-1fd4-49cd-8c82-8b553afde2a9}, !- Layer 1 + {86ae65d1-eb25-44de-be95-1b90fe0f1c58}, !- Layer 2 + {520cffc6-8fb5-4f2f-859b-1c787b6a4c1c}, !- Layer 3 + {d0cb840d-6a14-4d4a-acc5-6e2c709c006d}, !- Layer 4 + {96622a6b-2c1d-42b4-8986-b8bd79559523}; !- Layer 5 OS:StandardsInformation:Construction, - {99c16b51-1376-4d0d-ae82-9abe62b5b9bc}, !- Handle - {69871c9e-7438-4e91-92bd-66fabb7f9850}, !- Construction Name - ExteriorWall, !- Intended Surface Type - Mass; !- Standards Construction Type + {99aa52cb-6ccd-4c45-9df8-bdd509f1a6c1}, !- Handle + {711df98d-713b-42d9-a14c-97c75511cf1c}, !- Construction Name + , !- Intended Surface Type + , !- Standards Construction Type + 2, !- Perturbable Layer + Insulation, !- Perturbable Layer Type + ; !- Other Perturbable Layer Type OS:Material, - {0681dbd1-2005-474d-9af1-f3e3c9bdfdd6}, !- Handle - Wall Insulation [40], !- Name + {056eb249-5bf8-43f9-a57e-4f0380b4d125}, !- Handle + M11 100mm lightweight concrete, !- Name MediumRough, !- Roughness - 0.0793999999999999, !- Thickness {m} - 0.0432, !- Conductivity {W/m-K} - 91, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.5, !- Solar Absorptance - 0.5; !- Visible Absorptance - -OS:DefaultSurfaceConstructions, - {d97abec2-033d-43ce-a763-4ed6937bae4d}, !- Handle - Default Surface Constructions 14, !- Name - {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name - {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name - {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {d684c8db-7bf4-4966-b9eb-ea0c2afdf86b}, !- Handle - Default Surface Constructions 15, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name - -OS:DefaultSubSurfaceConstructions, - {bb191ec6-d6ab-407d-9fb2-31dc2ae3bb75}, !- Handle - Default Sub Surface Constructions 9, !- Name - {a19abee3-5e27-4244-9552-a3961f6ec2b6}, !- Fixed Window Construction Name - {a19abee3-5e27-4244-9552-a3961f6ec2b6}, !- Operable Window Construction Name - {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name - -OS:DefaultSubSurfaceConstructions, - {b6d85e89-1972-4d08-8dd6-1ad51c17f701}, !- Handle - Default Sub Surface Constructions 10, !- Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name - {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - , !- Tubular Daylight Dome Construction Name - ; !- Tubular Daylight Diffuser Construction Name + 0.1016, !- Thickness {m} + 0.53, !- Conductivity {W/m-K} + 1280, !- Density {kg/m3} + 840; !- Specific Heat {J/kg-K} -OS:DefaultConstructionSet, - {7fbfa4b5-c598-498c-9e7e-cc1d23784e59}, !- Handle - 189.1-2009 - CZ6 - Office, !- Name - {f4c2eff4-616f-4e59-a975-63e8f99df809}, !- Default Exterior Surface Constructions Name - {d61c2378-904c-4c76-bac0-dbd9f6c49c7c}, !- Default Interior Surface Constructions Name - {d64e486a-afe2-4d33-9add-91d98c40c1d7}, !- Default Ground Contact Surface Constructions Name - {5897f70f-27c7-4970-9e2c-db9bebccea4e}, !- Default Exterior SubSurface Constructions Name - {ec05d2f3-b3ec-4dfb-820b-5fffaeb8776d}, !- Default Interior SubSurface Constructions Name - {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name - , !- Space Shading Construction Name - , !- Building Shading Construction Name - ; !- Site Shading Construction Name +OS:Material:AirGap, + {4cf58d4f-21e7-482f-88b6-5e80eceb4049}, !- Handle + F05 Ceiling air space resistance, !- Name + 0.18; !- Thermal Resistance {m2-K/W} -OS:DefaultSurfaceConstructions, - {f4c2eff4-616f-4e59-a975-63e8f99df809}, !- Handle - Default Surface Constructions 16, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {73014c8f-a248-42b8-886b-3d7b760f079b}, !- Wall Construction Name - {e58f4a9d-2329-4c5d-8385-2f9db5c419bf}; !- Roof Ceiling Construction Name +OS:Material, + {4b5f5320-5757-4192-a678-ffc0d748e4e6}, !- Handle + F16 Acoustic tile, !- Name + MediumSmooth, !- Roughness + 0.0191, !- Thickness {m} + 0.06, !- Conductivity {W/m-K} + 368, !- Density {kg/m3} + 590; !- Specific Heat {J/kg-K} OS:Construction, - {73014c8f-a248-42b8-886b-3d7b760f079b}, !- Handle - ASHRAE 189.1-2009 ExtWall Mass ClimateZone 6, !- Name - {fe59cf72-f9c8-46a7-8dc4-3896724fe5d7}, !- Surface Rendering Name - {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 - {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 - {033ceb3a-fd60-4fdb-a0f3-c9fa51ea2e6e}, !- Layer 3 - {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 - -OS:StandardsInformation:Construction, - {7eeba261-f29b-4f29-92ab-43160d53769c}, !- Handle - {73014c8f-a248-42b8-886b-3d7b760f079b}, !- Construction Name - ExteriorWall, !- Intended Surface Type - Mass; !- Standards Construction Type - -OS:Material, - {033ceb3a-fd60-4fdb-a0f3-c9fa51ea2e6e}, !- Handle - Wall Insulation [42], !- Name - MediumRough, !- Roughness - 0.0913999999999999, !- Thickness {m} - 0.0432, !- Conductivity {W/m-K} - 91, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.5, !- Solar Absorptance - 0.5; !- Visible Absorptance + {e4c297b6-3a99-4e2e-a09a-ba73fe200473}, !- Handle + Exterior Roof, !- Name + , !- Surface Rendering Name + {056eb249-5bf8-43f9-a57e-4f0380b4d125}, !- Layer 1 + {4cf58d4f-21e7-482f-88b6-5e80eceb4049}, !- Layer 2 + {4b5f5320-5757-4192-a678-ffc0d748e4e6}; !- Layer 3 OS:Construction, - {e58f4a9d-2329-4c5d-8385-2f9db5c419bf}, !- Handle - ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 6, !- Name - {b4a51fb4-31db-4ab6-b13d-652c879a9a2c}, !- Surface Rendering Name - {97a1b867-7bc8-4285-9ece-5ae126192f3c}, !- Layer 1 - {6073d808-4e57-40c9-919a-2473ff43dfee}, !- Layer 2 - {14035dbf-33ad-4b63-a0f4-bc09dc3e2743}; !- Layer 3 + {cd8846fe-b309-4921-859d-b7ef6621f679}, !- Handle + Interior Floor, !- Name + , !- Surface Rendering Name + {4b5f5320-5757-4192-a678-ffc0d748e4e6}, !- Layer 1 + {4cf58d4f-21e7-482f-88b6-5e80eceb4049}, !- Layer 2 + {056eb249-5bf8-43f9-a57e-4f0380b4d125}; !- Layer 3 -OS:StandardsInformation:Construction, - {76a41f7e-250b-4af4-9af6-365bb137bdae}, !- Handle - {e58f4a9d-2329-4c5d-8385-2f9db5c419bf}, !- Construction Name - ExteriorRoof, !- Intended Surface Type - Metal; !- Standards Construction Type +OS:Construction:AirBoundary, + {89fec660-d918-4610-9613-55dd20334c5b}, !- Handle + Air Wall, !- Name + , !- Air Exchange Method + 0; !- Simple Mixing Air Changes per Hour {1/hr} -OS:Material, - {97a1b867-7bc8-4285-9ece-5ae126192f3c}, !- Handle - Metal Roofing, !- Name - MediumSmooth, !- Roughness - 0.0015, !- Thickness {m} - 45.006, !- Conductivity {W/m-K} - 7680, !- Density {kg/m3} - 418.4, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.6, !- Solar Absorptance - 0.6; !- Visible Absorptance +OS:Construction, + {38c1cacd-e9e3-4ac8-84a0-4c94c49b794b}, !- Handle + Interior Ceiling, !- Name + , !- Surface Rendering Name + {056eb249-5bf8-43f9-a57e-4f0380b4d125}, !- Layer 1 + {4cf58d4f-21e7-482f-88b6-5e80eceb4049}, !- Layer 2 + {4b5f5320-5757-4192-a678-ffc0d748e4e6}; !- Layer 3 OS:Material, - {6073d808-4e57-40c9-919a-2473ff43dfee}, !- Handle - Roof Insulation [25], !- Name - MediumRough, !- Roughness - 0.263, !- Thickness {m} - 0.049, !- Conductivity {W/m-K} - 265, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} + {62c80237-6114-44b2-ab31-95662cd7cc18}, !- Handle + MAT-CC05 8 HW CONCRETE, !- Name + Rough, !- Roughness + 0.2032, !- Thickness {m} + 1.311, !- Conductivity {W/m-K} + 2240, !- Density {kg/m3} + 836.8, !- Specific Heat {J/kg-K} 0.9, !- Thermal Absorptance 0.7, !- Solar Absorptance 0.7; !- Visible Absorptance -OS:DefaultSurfaceConstructions, - {d61c2378-904c-4c76-bac0-dbd9f6c49c7c}, !- Handle - Default Surface Constructions 17, !- Name - {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name - {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name - {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name - -OS:DefaultSurfaceConstructions, - {d64e486a-afe2-4d33-9add-91d98c40c1d7}, !- Handle - Default Surface Constructions 18, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name - -OS:DefaultSubSurfaceConstructions, - {5897f70f-27c7-4970-9e2c-db9bebccea4e}, !- Handle - Default Sub Surface Constructions 11, !- Name - {b343d191-cd60-41c8-9583-fcdf8aef2341}, !- Fixed Window Construction Name - {b343d191-cd60-41c8-9583-fcdf8aef2341}, !- Operable Window Construction Name - {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name +OS:Material:NoMass, + {e4c63ccd-f0db-47d2-ba66-89356cbe3b0d}, !- Handle + CP02 CARPET PAD, !- Name + VeryRough, !- Roughness + 0.2165, !- Thermal Resistance {m2-K/W} + 0.9, !- Thermal Absorptance + 0.7, !- Solar Absorptance + 0.8; !- Visible Absorptance OS:Construction, - {b343d191-cd60-41c8-9583-fcdf8aef2341}, !- Handle - ASHRAE 189.1-2009 ExtWindow ClimateZone 6, !- Name - {50151bcc-32ed-4ff3-8085-9658f2079102}, !- Surface Rendering Name - {49faa92b-2c62-4fe3-87e7-99e278102799}; !- Layer 1 - -OS:StandardsInformation:Construction, - {f1ab38d8-53bd-46fb-87a1-ae1dd7cc8561}, !- Handle - {b343d191-cd60-41c8-9583-fcdf8aef2341}, !- Construction Name - ExteriorWindow, !- Intended Surface Type - ; !- Standards Construction Type + {7bc4709e-786a-4797-8f77-763dad33de89}, !- Handle + Slab, !- Name + , !- Surface Rendering Name + {62c80237-6114-44b2-ab31-95662cd7cc18}, !- Layer 1 + {e4c63ccd-f0db-47d2-ba66-89356cbe3b0d}; !- Layer 2 + +OS:WindowMaterial:SimpleGlazingSystem, + {bc0400a3-0425-49b3-b6cf-bb22cd11d97f}, !- Handle + Simple Glazing, !- Name + 3.23646, !- U-Factor {W/m2-K} + 0.39, !- Solar Heat Gain Coefficient + 0.6; !- Visible Transmittance OS:WindowMaterial:Glazing, - {49faa92b-2c62-4fe3-87e7-99e278102799}, !- Handle - Theoretical Glass [216], !- Name + {1ab211c6-700a-4b26-8817-5568e1ead62c}, !- Handle + Clear 3mm, !- Name SpectralAverage, !- Optical Data Type , !- Window Glass Spectral Data Set Name - 0.00299999999999999, !- Thickness {m} - 0.3801, !- Solar Transmittance at Normal Incidence - 0.5699, !- Front Side Solar Reflectance at Normal Incidence - 0, !- Back Side Solar Reflectance at Normal Incidence - 0.5079, !- Visible Transmittance at Normal Incidence - 0.4421, !- Front Side Visible Reflectance at Normal Incidence - 0, !- Back Side Visible Reflectance at Normal Incidence + 0.003, !- 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.9, !- Front Side Infrared Hemispherical Emissivity - 0.9, !- Back Side Infrared Hemispherical Emissivity - 0.0133, !- Conductivity {W/m-K} - 1, !- Dirt Correction Factor for Solar and Visible Transmittance - No; !- Solar Diffusing - -OS:DefaultSubSurfaceConstructions, - {ec05d2f3-b3ec-4dfb-820b-5fffaeb8776d}, !- Handle - Default Sub Surface Constructions 12, !- Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name - {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- 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:DefaultConstructionSet, - {1cff5d19-5572-4e19-88b4-346c54265f57}, !- Handle - 189.1-2009 - CZ7-8 - Office, !- Name - {6e044d24-cbba-456f-af36-8b86f1508f50}, !- Default Exterior Surface Constructions Name - {e3c760b2-11c7-4984-bdaf-ed3f8f1fbab8}, !- Default Interior Surface Constructions Name - {5a5b254f-3a7d-49cd-8c7b-df8e0f5efded}, !- Default Ground Contact Surface Constructions Name - {c766fd3a-9093-42fa-9514-2c1fa80247f2}, !- Default Exterior SubSurface Constructions Name - {af87ce18-ae87-4260-a697-cd25f4095498}, !- Default Interior SubSurface Constructions Name - {ead91c2f-4359-42f5-b36e-9a36c9253598}, !- Interior Partition Construction Name - , !- Space Shading Construction Name - , !- Building Shading Construction Name - ; !- Site Shading Construction Name + 0.084, !- Front Side Infrared Hemispherical Emissivity + 0.084, !- Back Side Infrared Hemispherical Emissivity + 0.9; !- Conductivity {W/m-K} -OS:DefaultSurfaceConstructions, - {6e044d24-cbba-456f-af36-8b86f1508f50}, !- Handle - Default Surface Constructions 19, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {d28d8415-2d7a-4256-be8e-91b455fe8889}, !- Wall Construction Name - {c6bbd742-fc9f-439b-94f4-e8038f26f5bd}; !- Roof Ceiling Construction Name +OS:WindowMaterial:Gas, + {157e7fd6-3b51-427a-be84-4b991eb70a78}, !- Handle + Air 13mm, !- Name + Air, !- Gas Type + 0.0127; !- Thickness {m} OS:Construction, - {d28d8415-2d7a-4256-be8e-91b455fe8889}, !- Handle - ASHRAE 189.1-2009 ExtWall Mass ClimateZone 7-8, !- Name - {db7b8f16-f0f4-463e-a33a-c93df442ca33}, !- Surface Rendering Name - {56962c43-17db-4226-8ddc-220e96c9d631}, !- Layer 1 - {4cc6a40e-03a3-48aa-95cb-72a4e9afb846}, !- Layer 2 - {6f104856-6bc7-479e-87b3-44c13f6b441e}, !- Layer 3 - {b6d8e415-7411-437a-ac2c-78a8b90db9d2}; !- Layer 4 + {7e27ca26-5115-478b-be7c-282a93c2f243}, !- Handle + Exterior Window, !- Name + , !- Surface Rendering Name + {bc0400a3-0425-49b3-b6cf-bb22cd11d97f}; !- Layer 1 -OS:StandardsInformation:Construction, - {d740a5ed-3362-4965-952b-69d154d88d11}, !- Handle - {d28d8415-2d7a-4256-be8e-91b455fe8889}, !- Construction Name - ExteriorWall, !- Intended Surface Type - Mass; !- Standards Construction Type +OS:Material, + {b0db5f5d-248c-42c1-8cfb-fe7b1d968152}, !- Handle + F08 Metal surface, !- Name + Smooth, !- Roughness + 0.0008, !- Thickness {m} + 45.28, !- Conductivity {W/m-K} + 7824, !- Density {kg/m3} + 500; !- Specific Heat {J/kg-K} OS:Material, - {6f104856-6bc7-479e-87b3-44c13f6b441e}, !- Handle - Wall Insulation [44], !- Name + {a3d21362-5c59-4463-abf3-62ce10cfd326}, !- Handle + I02 25mm insulation board, !- Name MediumRough, !- Roughness - 0.1104, !- Thickness {m} - 0.0432, !- Conductivity {W/m-K} - 91, !- Density {kg/m3} - 836.999999999999, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.5, !- Solar Absorptance - 0.5; !- Visible Absorptance + 0.0254, !- Thickness {m} + 0.03, !- Conductivity {W/m-K} + 43, !- Density {kg/m3} + 1210; !- Specific Heat {J/kg-K} OS:Construction, - {c6bbd742-fc9f-439b-94f4-e8038f26f5bd}, !- Handle - ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 7-8, !- Name - {2582cb70-8314-41a6-ac75-d4fef244dffc}, !- Surface Rendering Name - {6710a532-69d6-4fff-84fd-c78074630b20}, !- Layer 1 - {210f210b-6002-4820-ae10-eb2b372d7687}, !- Layer 2 - {14035dbf-33ad-4b63-a0f4-bc09dc3e2743}; !- Layer 3 + {e8c06423-835d-4d7a-bf60-44ab7e433add}, !- Handle + Exterior Door, !- Name + , !- Surface Rendering Name + {b0db5f5d-248c-42c1-8cfb-fe7b1d968152}, !- Layer 1 + {a3d21362-5c59-4463-abf3-62ce10cfd326}; !- Layer 2 OS:StandardsInformation:Construction, - {252369f7-3f86-46ff-a0c8-1399371eb759}, !- Handle - {c6bbd742-fc9f-439b-94f4-e8038f26f5bd}, !- Construction Name - ExteriorRoof, !- Intended Surface Type - IEAD; !- Standards Construction Type + {50100f31-3e18-456c-be21-f0c2a43be4d3}, !- Handle + {e8c06423-835d-4d7a-bf60-44ab7e433add}, !- Construction Name + , !- Intended Surface Type + , !- Standards Construction Type + 1, !- Perturbable Layer + Insulation, !- Perturbable Layer Type + ; !- Other Perturbable Layer Type + +OS:Construction, + {7c762dbd-ae14-4dbe-b1be-4cf027a30199}, !- Handle + Interior Window, !- Name + , !- Surface Rendering Name + {bc0400a3-0425-49b3-b6cf-bb22cd11d97f}; !- Layer 1 OS:Material, - {210f210b-6002-4820-ae10-eb2b372d7687}, !- Handle - Roof Insulation [26], !- Name - MediumRough, !- Roughness - 0.2941, !- Thickness {m} - 0.049, !- Conductivity {W/m-K} - 265, !- Density {kg/m3} - 836.800000000001, !- Specific Heat {J/kg-K} - 0.9, !- Thermal Absorptance - 0.7, !- Solar Absorptance - 0.7; !- Visible Absorptance + {e09b2b91-f13b-4541-9ed5-8c5f62f446fd}, !- 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} -OS:DefaultSurfaceConstructions, - {e3c760b2-11c7-4984-bdaf-ed3f8f1fbab8}, !- Handle - Default Surface Constructions 20, !- Name - {4ee71df9-85c1-4a24-9be8-bee433f9e015}, !- Floor Construction Name - {7ea68359-ad75-4d6c-8862-e2965b9ee3ab}, !- Wall Construction Name - {edd9ecd3-4290-4d56-b5a9-ef02bf102418}; !- Roof Ceiling Construction Name +OS:Construction, + {963fb0b1-9082-453d-9e10-5ba7995e22ea}, !- Handle + Interior Door, !- Name + , !- Surface Rendering Name + {e09b2b91-f13b-4541-9ed5-8c5f62f446fd}; !- Layer 1 -OS:DefaultSurfaceConstructions, - {5a5b254f-3a7d-49cd-8c7b-df8e0f5efded}, !- Handle - Default Surface Constructions 21, !- Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Floor Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}, !- Wall Construction Name - {78a5e5c5-806e-400a-a800-196f73e1d063}; !- Roof Ceiling Construction Name +OS:Construction, + {c3e28441-358a-4764-b5ee-ac181d98e294}, !- Handle + Interior Partition, !- Name + , !- Surface Rendering Name + {e09b2b91-f13b-4541-9ed5-8c5f62f446fd}; !- Layer 1 -OS:DefaultSubSurfaceConstructions, - {c766fd3a-9093-42fa-9514-2c1fa80247f2}, !- Handle - Default Sub Surface Constructions 13, !- Name - {b7889a36-262c-4dbe-b8ee-96206687aa1b}, !- Fixed Window Construction Name - {b7889a36-262c-4dbe-b8ee-96206687aa1b}, !- Operable Window Construction Name - {f16a7fb7-d40d-43c5-9ad7-3bfe84654a03}, !- Door Construction Name - , !- Glass Door Construction Name - , !- Overhead Door Construction Name - , !- Skylight Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Tubular Daylight Dome Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}; !- Tubular Daylight Diffuser Construction Name +OS:SpaceType, + {93a7ab25-10e4-4c0d-b56a-d7319e18651d}, !- Handle + Space Type 1; !- Name -OS:Construction, - {b7889a36-262c-4dbe-b8ee-96206687aa1b}, !- Handle - ASHRAE 189.1-2009 ExtWindow ClimateZone 7-8, !- Name - {b95d9e0a-a5a9-4295-870c-608321ecd650}, !- Surface Rendering Name - {705e5f44-c97a-4686-b0f1-97f4494d238d}; !- Layer 1 +OS:Lights:Definition, + {166a8100-fb3d-40f3-919e-925748d95a43}, !- Handle + Lights Definition 1, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Lighting Level {W} + 10, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} -OS:StandardsInformation:Construction, - {20aa7704-c7fd-4a24-aa3b-7f69c9544b7c}, !- Handle - {b7889a36-262c-4dbe-b8ee-96206687aa1b}, !- Construction Name - ExteriorWindow, !- Intended Surface Type - ; !- Standards Construction Type +OS:Lights, + {36c6641b-8573-4ed9-97b8-21ad2f2ec402}, !- Handle + Lights 1, !- Name + {166a8100-fb3d-40f3-919e-925748d95a43}, !- Lights Definition Name + {93a7ab25-10e4-4c0d-b56a-d7319e18651d}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory -OS:WindowMaterial:Glazing, - {705e5f44-c97a-4686-b0f1-97f4494d238d}, !- Handle - Theoretical Glass [221], !- Name - SpectralAverage, !- Optical Data Type - , !- Window Glass Spectral Data Set Name - 0.00299999999999999, !- Thickness {m} - 0.4296, !- Solar Transmittance at Normal Incidence - 0.5204, !- Front Side Solar Reflectance at Normal Incidence - 0, !- Back Side Solar Reflectance at Normal Incidence - 0.4503, !- Visible Transmittance at Normal Incidence - 0.4997, !- Front Side Visible Reflectance at Normal Incidence - 0, !- Back Side Visible Reflectance at Normal Incidence - 0, !- Infrared Transmittance at Normal Incidence - 0.9, !- Front Side Infrared Hemispherical Emissivity - 0.9, !- Back Side Infrared Hemispherical Emissivity - 0.0089, !- Conductivity {W/m-K} - 1, !- Dirt Correction Factor for Solar and Visible Transmittance - No; !- Solar Diffusing +OS:ElectricEquipment:Definition, + {0badd48e-27c5-4864-a8e9-ba6e2ac9944b}, !- Handle + Electric Equipment Definition 1, !- Name + Watts/Area, !- Design Level Calculation Method + , !- Design Level {W} + 5, !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} -OS:DefaultSubSurfaceConstructions, - {af87ce18-ae87-4260-a697-cd25f4095498}, !- Handle - Default Sub Surface Constructions 14, !- Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Fixed Window Construction Name - {ae4fa780-ed05-42e8-925d-8cfdef96ee27}, !- Operable Window Construction Name - {ffeb525e-fabf-4359-8b2f-bec6d1975f7c}, !- 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:Material:AirWall, - {8ea9f6e6-0bb1-424a-a9d5-8fb8da2c8afe}, !- Handle - Air Wall Material; !- Name +OS:ElectricEquipment, + {d7a670c5-41ac-4ec6-8e2c-fce1b619a335}, !- Handle + Electric Equipment 1, !- Name + {0badd48e-27c5-4864-a8e9-ba6e2ac9944b}, !- Electric Equipment Definition Name + {93a7ab25-10e4-4c0d-b56a-d7319e18651d}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory -OS:Construction, - {7a29ba3c-05e0-4ba6-a7bf-72746f63eedc}, !- Handle - Air Wall, !- Name - {16a7176a-d244-49b5-bec6-6d107e067adf}, !- Surface Rendering Name - {8ea9f6e6-0bb1-424a-a9d5-8fb8da2c8afe}; !- Layer 1 +OS:People:Definition, + {15ebd5c2-6956-407a-b9ae-0b936fc3a0b7}, !- Handle + People Definition 1, !- Name + People/Area, !- Number of People Calculation Method + , !- Number of People {people} + 0.05, !- People per Space Floor Area {person/m2} + , !- Space Floor Area per Person {m2/person} + 0.3; !- Fraction Radiant + +OS:People, + {ea59485b-8095-4797-a3bf-5ae8a0b81317}, !- Handle + People 1, !- Name + {15ebd5c2-6956-407a-b9ae-0b936fc3a0b7}, !- People Definition Name + {93a7ab25-10e4-4c0d-b56a-d7319e18651d}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + , !- Work Efficiency Schedule Name + , !- Clothing Insulation Schedule Name + , !- Air Velocity Schedule Name + 1; !- Multiplier OS:Facility, - {50a42c9a-3973-4de3-b7ee-0cd8b0200231}; !- Handle - -OS:Rendering:Color, - {d9de7cbd-050f-4e61-8f9b-075aa1df65bb}, !- Handle - Rendering Color 33, !- Name - 250, !- Rendering Red Value - 235, !- Rendering Green Value - 215; !- Rendering Blue Value - -OS:Rendering:Color, - {62e34ae8-ba70-4da1-925b-57bf2c7ef24b}, !- Handle - Rendering Color 34, !- Name - 255, !- Rendering Red Value - 250, !- Rendering Green Value - 205; !- Rendering Blue Value - -OS:Rendering:Color, - {17a12f4b-94a3-4b11-aee4-8fdfaca5c4df}, !- Handle - Rendering Color 35, !- Name - 47, !- Rendering Red Value - 79, !- Rendering Green Value - 79; !- Rendering Blue Value - -OS:Rendering:Color, - {ccf8d0cb-0b4e-4bde-b89e-93647118a409}, !- Handle - Rendering Color 36, !- Name - 245, !- Rendering Red Value - 255, !- Rendering Green Value - 250; !- Rendering Blue Value - -OS:Rendering:Color, - {e86c4cfc-a78a-4674-ba86-da0778391d75}, !- Handle - Rendering Color 37, !- Name - 85, !- Rendering Red Value - 107, !- Rendering Green Value - 47; !- Rendering Blue Value - -OS:Rendering:Color, - {1931b433-ad5c-43ae-8248-796522c09dae}, !- Handle - Rendering Color 38, !- Name - 50, !- Rendering Red Value - 205, !- Rendering Green Value - 50; !- Rendering Blue Value - -OS:Rendering:Color, - {c2c680d2-f325-40ed-95af-d91b806f1ec6}, !- Handle - Rendering Color 39, !- Name - 0, !- Rendering Red Value - 100, !- Rendering Green Value - 0; !- Rendering Blue Value - -OS:Rendering:Color, - {fa64966f-7624-43ea-a584-54dd0654c4fa}, !- Handle - Rendering Color 40, !- Name - 255, !- Rendering Red Value - 182, !- Rendering Green Value - 193; !- Rendering Blue Value - -OS:Rendering:Color, - {778e8a0a-a11f-4cdc-b209-ca9fa58a7fd7}, !- Handle - Rendering Color 41, !- Name - 178, !- Rendering Red Value - 34, !- Rendering Green Value - 34; !- Rendering Blue Value - -OS:Rendering:Color, - {460f8255-5f86-432f-a773-d413b7d383bc}, !- Handle - Rendering Color 42, !- Name - 248, !- Rendering Red Value - 248, !- Rendering Green Value - 255; !- Rendering Blue Value - -OS:Rendering:Color, - {24055de0-4136-450a-bc8d-d8ee32c93212}, !- Handle - Rendering Color 43, !- Name - 139, !- Rendering Red Value - 0, !- Rendering Green Value - 0; !- Rendering Blue Value - -OS:Rendering:Color, - {8f9423e5-3ed6-4351-be9e-dbbdd330b500}, !- Handle - Rendering Color 44, !- Name - 0, !- Rendering Red Value - 255, !- Rendering Green Value - 255; !- Rendering Blue Value - -OS:Rendering:Color, - {04a70558-9b0a-4809-8c15-d7f1882136f8}, !- Handle - Rendering Color 45, !- Name - 50, !- Rendering Red Value - 205, !- Rendering Green Value - 50; !- Rendering Blue Value - -OS:Rendering:Color, - {584c45ae-4787-45d1-9dd4-f33b0f8347f9}, !- Handle - Rendering Color 46, !- Name - 210, !- Rendering Red Value - 180, !- Rendering Green Value - 140; !- Rendering Blue Value - -OS:Rendering:Color, - {d0c8c19d-30d5-48bd-a3a0-3c16ccc1303b}, !- Handle - Rendering Color 47, !- Name - 250, !- Rendering Red Value - 250, !- Rendering Green Value - 210; !- Rendering Blue Value - -OS:Rendering:Color, - {7540a07b-c6b7-4faf-a374-fc8ad428bb83}, !- Handle - Rendering Color 48, !- Name - 0, !- Rendering Red Value - 206, !- Rendering Green Value - 209; !- Rendering Blue Value - -OS:Rendering:Color, - {636bc1bd-3423-4cbd-a7ac-cd596f301582}, !- Handle - Rendering Color 49, !- Name - 255, !- Rendering Red Value - 255, !- Rendering Green Value - 240; !- Rendering Blue Value - -OS:Rendering:Color, - {fe59cf72-f9c8-46a7-8dc4-3896724fe5d7}, !- Handle - Rendering Color 50, !- Name - 221, !- Rendering Red Value - 160, !- Rendering Green Value - 221; !- Rendering Blue Value - -OS:Rendering:Color, - {46dc58c7-b8ea-415a-8606-35a0b11fe039}, !- Handle - Rendering Color 51, !- Name - 192, !- Rendering Red Value - 192, !- Rendering Green Value - 192; !- Rendering Blue Value - -OS:Rendering:Color, - {b4a51fb4-31db-4ab6-b13d-652c879a9a2c}, !- Handle - Rendering Color 52, !- Name - 245, !- Rendering Red Value - 245, !- Rendering Green Value - 245; !- Rendering Blue Value - -OS:Rendering:Color, - {50151bcc-32ed-4ff3-8085-9658f2079102}, !- Handle - Rendering Color 53, !- Name - 255, !- Rendering Red Value - 228, !- Rendering Green Value - 225; !- Rendering Blue Value - -OS:Rendering:Color, - {db7b8f16-f0f4-463e-a33a-c93df442ca33}, !- Handle - Rendering Color 54, !- Name - 0, !- Rendering Red Value - 0, !- Rendering Green Value - 139; !- Rendering Blue Value - -OS:Rendering:Color, - {2582cb70-8314-41a6-ac75-d4fef244dffc}, !- Handle - Rendering Color 55, !- Name - 32, !- Rendering Red Value - 178, !- Rendering Green Value - 170; !- Rendering Blue Value - -OS:Rendering:Color, - {b95d9e0a-a5a9-4295-870c-608321ecd650}, !- Handle - Rendering Color 56, !- Name - 219, !- Rendering Red Value - 112, !- Rendering Green Value - 147; !- Rendering Blue Value - -OS:Rendering:Color, - {16a7176a-d244-49b5-bec6-6d107e067adf}, !- Handle - Rendering Color 57, !- Name - 165, !- Rendering Red Value - 42, !- Rendering Green Value - 42; !- Rendering Blue Value - -OS:Rendering:Color, - {71ceef6d-12d0-4e82-89ca-e3101fac6664}, !- Handle - Rendering Color 58, !- Name - 0, !- Rendering Red Value - 0, !- Rendering Green Value - 0; !- Rendering Blue Value + {be84008d-c372-471c-8e61-3555b9eb6a1d}; !- Handle + +OS:Building, + {a09e3747-baf7-4d1c-af15-64e45abea83e}, !- Handle + Building 1, !- Name + , !- Building Sector Type + , !- North Axis {deg} + , !- Nominal Floor to Floor Height {m} + {93a7ab25-10e4-4c0d-b56a-d7319e18651d}, !- Space Type Name + {56549bce-d164-415a-97c4-3df6fb245d7d}, !- Default Construction Set Name + {e80ca19b-df2a-43b9-bfcd-917af9c94757}; !- Default Schedule Set Name + +OS:ThermalZone, + {ad63d9d5-8e59-455e-b669-06ff61e09394}, !- Handle + Thermal Zone 1, !- Name + , !- Multiplier + , !- Ceiling Height {m} + , !- Volume {m3} + , !- Floor Area {m2} + , !- Zone Inside Convection Algorithm + , !- Zone Outside Convection Algorithm + , !- Zone Conditioning Equipment List Name + {9d2cd073-4f15-46a0-a620-81fbc2fb522c}, !- Zone Air Inlet Port List + {759a1848-8de1-49a9-a7cc-52c26b28c77c}, !- Zone Air Exhaust Port List + {1d388e9e-77e2-4c7e-aed6-97832e51311b}, !- Zone Air Node Name + {64c7e3a6-26c9-48ef-9f05-36a6eb240541}, !- Zone Return Air Port List + {78471604-5880-405a-a7bf-6962be2444eb}, !- Primary Daylighting Control Name + 0.25, !- Fraction of Zone Controlled by Primary Daylighting Control + , !- Secondary Daylighting Control Name + , !- Fraction of Zone Controlled by Secondary Daylighting Control + {d3e63294-0dfa-44d4-adc1-1611b1f3077c}, !- Illuminance Map Name + , !- Group Rendering Name + {cf936510-33bd-4695-8697-3060cafb2b71}, !- Thermostat Name + No; !- Use Ideal Air Loads + +OS:Node, + {c74edcfa-f302-4d99-8680-fd8be201825f}, !- Handle + Node 1, !- Name + {1d388e9e-77e2-4c7e-aed6-97832e51311b}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {1d388e9e-77e2-4c7e-aed6-97832e51311b}, !- Handle + {ad63d9d5-8e59-455e-b669-06ff61e09394}, !- Source Object + 11, !- Outlet Port + {c74edcfa-f302-4d99-8680-fd8be201825f}, !- Target Object + 2; !- Inlet Port + +OS:PortList, + {9d2cd073-4f15-46a0-a620-81fbc2fb522c}, !- Handle + {ad63d9d5-8e59-455e-b669-06ff61e09394}, !- HVAC Component + {b95bc29d-8fcc-4657-a052-2ac11150ddac}; !- Port 1 + +OS:PortList, + {759a1848-8de1-49a9-a7cc-52c26b28c77c}, !- Handle + {ad63d9d5-8e59-455e-b669-06ff61e09394}; !- HVAC Component + +OS:PortList, + {64c7e3a6-26c9-48ef-9f05-36a6eb240541}, !- Handle + {ad63d9d5-8e59-455e-b669-06ff61e09394}, !- HVAC Component + {8d0529bf-fb9d-4a1a-a07a-81a18fb90db2}; !- Port 1 + +OS:Sizing:Zone, + {1c16b4d3-cc57-4485-9836-f4b0e5636f92}, !- Handle + {ad63d9d5-8e59-455e-b669-06ff61e09394}, !- 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, + {953ae768-b316-43e3-846d-c5bc62791eb1}, !- Handle + Zone HVAC Equipment List 1, !- Name + {ad63d9d5-8e59-455e-b669-06ff61e09394}, !- Thermal Zone + , !- Load Distribution Scheme + {c4b6be6e-bb86-44cc-a382-6e41534f0a81}, !- 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:ThermostatSetpoint:DualSetpoint, + {cf936510-33bd-4695-8697-3060cafb2b71}, !- Handle + Thermostat Setpoint Dual Setpoint 1, !- Name + {9d750b08-f5bd-410d-a629-1a2ec1405410}, !- Heating Setpoint Temperature Schedule Name + {27a785cd-7d7f-4549-8adc-8eab52da6415}; !- Cooling Setpoint Temperature Schedule Name OS:BuildingStory, - {50868583-cd6e-4b33-9980-93aced1f0725}, !- Handle + {82b460b1-887d-484a-a18e-91dbb331fdfd}, !- Handle Building Story 1, !- Name 0, !- Nominal Z Coordinate {m} - 3.048, !- Nominal Floor to Floor Height {m} + 3, !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {3382e11a-163a-4157-8831-d7c6831e1559}; !- Group Rendering Name + ; !- Group Rendering Name OS:Space, - {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Handle - Space 101, !- Name + {74bc3e52-5058-49f7-9130-ff957c236d15}, !- Handle + Space 1, !- Name , !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name , !- Direction of Relative North {deg} - 0, !- X Origin {m} - 3.048, !- Y Origin {m} - 0, !- Z Origin {m} - {50868583-cd6e-4b33-9980-93aced1f0725}; !- Building Story Name + , !- X Origin {m} + , !- Y Origin {m} + , !- Z Origin {m} + {82b460b1-887d-484a-a18e-91dbb331fdfd}, !- Building Story Name + {ad63d9d5-8e59-455e-b669-06ff61e09394}; !- Thermal Zone Name OS:Surface, - {34613696-6b52-44f1-a5ff-a36900647fd1}, !- Handle + {259d6fe3-5b4c-4a3a-b758-7c30addd3ae9}, !- Handle Surface 1, !- Name Floor, !- Surface Type , !- Construction Name - {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Space Name + {74bc3e52-5058-49f7-9130-ff957c236d15}, !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 3.048, 0, 0, !- X,Y,Z Vertex 1 {m} - 3.048, -3.048, 0, !- X,Y,Z Vertex 2 {m} - 0, -3.048, 0, !- X,Y,Z Vertex 3 {m} - 0, 0, 0; !- X,Y,Z Vertex 4 {m} + 0, 0, 0, !- X,Y,Z Vertex 1 {m} + 0, 10, 0, !- X,Y,Z Vertex 2 {m} + 10, 10, 0, !- X,Y,Z Vertex 3 {m} + 10, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {e6da7134-b845-4c2b-92d8-471d959b0232}, !- Handle + {3b05a573-5022-4ce1-bd1a-1568c7f0858d}, !- Handle Surface 2, !- Name Wall, !- Surface Type , !- Construction Name - {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Space Name - Surface, !- Outside Boundary Condition - {002dd6d5-ccf2-4528-bee3-372935270e38}, !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure + {74bc3e52-5058-49f7-9130-ff957c236d15}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 3.048, 0, 3.048, !- X,Y,Z Vertex 1 {m} - 3.048, 0, 0, !- X,Y,Z Vertex 2 {m} - 0, 0, 0, !- X,Y,Z Vertex 3 {m} - 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} + 0, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 10, 3, !- X,Y,Z Vertex 2 {m} + 0, 10, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {8e228e17-f447-4351-8255-68a903116bf5}, !- Handle + {2d0998ac-2115-4061-9b64-6fca18182bf1}, !- Handle Surface 3, !- Name Wall, !- Surface Type , !- Construction Name - {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Space Name + {74bc3e52-5058-49f7-9130-ff957c236d15}, !- Space Name Surface, !- Outside Boundary Condition - {0931ca6c-82dd-4ac5-8014-24c0b87d9ba8}, !- Outside Boundary Condition Object + {d72f5ba2-618d-4346-ac81-60c98fe6d862}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 3.048, -3.048, 3.048, !- X,Y,Z Vertex 1 {m} - 3.048, -3.048, 0, !- X,Y,Z Vertex 2 {m} - 3.048, 0, 0, !- X,Y,Z Vertex 3 {m} - 3.048, 0, 3.048; !- X,Y,Z Vertex 4 {m} + 0, 10, 3, !- X,Y,Z Vertex 1 {m} + 10, 10, 3, !- X,Y,Z Vertex 2 {m} + 10, 10, 0, !- X,Y,Z Vertex 3 {m} + 0, 10, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {5cfd7343-beef-4dd8-96ff-05ad91c84aad}, !- Handle + {cdfb1b83-a50c-4a6f-a78d-5b2daeb4f672}, !- Handle Surface 4, !- Name Wall, !- Surface Type , !- Construction Name - {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Space Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure + {74bc3e52-5058-49f7-9130-ff957c236d15}, !- Space Name + Surface, !- Outside Boundary Condition + {a79833c9-45b1-4b32-94e4-07e3cb8f8317}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, -3.048, 3.048, !- X,Y,Z Vertex 1 {m} - 0, -3.048, 0, !- X,Y,Z Vertex 2 {m} - 3.048, -3.048, 0, !- X,Y,Z Vertex 3 {m} - 3.048, -3.048, 3.048; !- X,Y,Z Vertex 4 {m} + 10, 10, 3, !- X,Y,Z Vertex 1 {m} + 10, 0, 3, !- X,Y,Z Vertex 2 {m} + 10, 0, 0, !- X,Y,Z Vertex 3 {m} + 10, 10, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {bf033db5-8c2d-4f1b-b467-6f8ae942fd52}, !- Handle + {0bd94c04-e022-41bc-b26e-ed4a5789ef4c}, !- Handle Surface 5, !- Name Wall, !- Surface Type , !- Construction Name - {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Space Name + {74bc3e52-5058-49f7-9130-ff957c236d15}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} - 0, 0, 0, !- X,Y,Z Vertex 2 {m} - 0, -3.048, 0, !- X,Y,Z Vertex 3 {m} - 0, -3.048, 3.048; !- X,Y,Z Vertex 4 {m} + 10, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 0, 3, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 10, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {2ee589ef-ee4e-4ccf-82dc-5bd481b7f155}, !- Handle + {fb62da72-b94a-4712-954e-90f342beb021}, !- Handle Surface 6, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {5d7c8dbb-9c19-4b55-8b12-ebb5162e3678}, !- Space Name + {74bc3e52-5058-49f7-9130-ff957c236d15}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 3.048, -3.048, 3.048, !- X,Y,Z Vertex 1 {m} - 3.048, 0, 3.048, !- X,Y,Z Vertex 2 {m} - 0, 0, 3.048, !- X,Y,Z Vertex 3 {m} - 0, -3.048, 3.048; !- X,Y,Z Vertex 4 {m} + 10, 0, 3, !- X,Y,Z Vertex 1 {m} + 10, 10, 3, !- X,Y,Z Vertex 2 {m} + 0, 10, 3, !- X,Y,Z Vertex 3 {m} + 0, 0, 3; !- X,Y,Z Vertex 4 {m} OS:Space, - {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Handle - Space 102, !- Name + {6409a335-f7db-458e-a2eb-3ec5412d45eb}, !- Handle + Space 2, !- Name , !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name , !- Direction of Relative North {deg} - 6.096, !- X Origin {m} - 0, !- Y Origin {m} - 0, !- Z Origin {m} - {50868583-cd6e-4b33-9980-93aced1f0725}; !- Building Story Name + 10, !- X Origin {m} + , !- Y Origin {m} + , !- Z Origin {m} + {82b460b1-887d-484a-a18e-91dbb331fdfd}, !- Building Story Name + {ad63d9d5-8e59-455e-b669-06ff61e09394}; !- Thermal Zone Name OS:Surface, - {19d18d73-c9ca-4549-a15e-3a457813fcf2}, !- Handle + {a79833c9-45b1-4b32-94e4-07e3cb8f8317}, !- Handle Surface 7, !- Name - Floor, !- Surface Type + Wall, !- Surface Type , !- Construction Name - {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name - Ground, !- Outside Boundary Condition - , !- Outside Boundary Condition Object + {6409a335-f7db-458e-a2eb-3ec5412d45eb}, !- Space Name + Surface, !- Outside Boundary Condition + {cdfb1b83-a50c-4a6f-a78d-5b2daeb4f672}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, 3.048, 0, !- X,Y,Z Vertex 1 {m} - 0, 0, 0, !- X,Y,Z Vertex 2 {m} - -3.048, 0, 0, !- X,Y,Z Vertex 3 {m} - -3.048, 3.048, 0; !- X,Y,Z Vertex 4 {m} + 0, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 10, 3, !- X,Y,Z Vertex 2 {m} + 0, 10, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {b3fe4f2a-ff3a-493e-9743-c7be2c1ce9d2}, !- Handle + {403570ef-bf82-420d-b7e0-8ace47859e23}, !- Handle Surface 8, !- Name - Wall, !- Surface Type + Floor, !- Surface Type , !- Construction Name - {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name - Outdoors, !- Outside Boundary Condition + {6409a335-f7db-458e-a2eb-3ec5412d45eb}, !- Space Name + Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - -3.048, 0, 3.048, !- X,Y,Z Vertex 1 {m} - -3.048, 0, 0, !- X,Y,Z Vertex 2 {m} - 0, 0, 0, !- X,Y,Z Vertex 3 {m} - 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} + 0, 0, 0, !- X,Y,Z Vertex 1 {m} + 0, 10, 0, !- X,Y,Z Vertex 2 {m} + 10, 10, 0, !- X,Y,Z Vertex 3 {m} + 10, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {0931ca6c-82dd-4ac5-8014-24c0b87d9ba8}, !- Handle + {434202f6-35d5-4ffc-895b-88397e1c1f90}, !- Handle Surface 9, !- Name Wall, !- Surface Type , !- Construction Name - {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name + {6409a335-f7db-458e-a2eb-3ec5412d45eb}, !- Space Name Surface, !- Outside Boundary Condition - {8e228e17-f447-4351-8255-68a903116bf5}, !- Outside Boundary Condition Object + {2bfda192-df03-47bc-83da-b4da408f3e7a}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - -3.048, 3.048, 3.048, !- X,Y,Z Vertex 1 {m} - -3.048, 3.048, 0, !- X,Y,Z Vertex 2 {m} - -3.048, 0, 0, !- X,Y,Z Vertex 3 {m} - -3.048, 0, 3.048; !- X,Y,Z Vertex 4 {m} + 0, 10, 3, !- X,Y,Z Vertex 1 {m} + 10, 10, 3, !- X,Y,Z Vertex 2 {m} + 10, 10, 0, !- X,Y,Z Vertex 3 {m} + 0, 10, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {53f098ba-949b-4003-a566-b63754a87202}, !- Handle + {d2d77a3e-41ec-42c2-b840-5bbf3a2e1f07}, !- Handle Surface 10, !- Name Wall, !- Surface Type , !- Construction Name - {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name - Surface, !- Outside Boundary Condition - {a0c1b5bc-da84-48af-8e48-32fcb79ef150}, !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure + {6409a335-f7db-458e-a2eb-3ec5412d45eb}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, 3.048, 3.048, !- X,Y,Z Vertex 1 {m} - 0, 3.048, 0, !- X,Y,Z Vertex 2 {m} - -3.048, 3.048, 0, !- X,Y,Z Vertex 3 {m} - -3.048, 3.048, 3.048; !- X,Y,Z Vertex 4 {m} + 10, 10, 3, !- X,Y,Z Vertex 1 {m} + 10, 0, 3, !- X,Y,Z Vertex 2 {m} + 10, 0, 0, !- X,Y,Z Vertex 3 {m} + 10, 10, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {80879f81-820f-4603-b611-b68e1595cb6e}, !- Handle + {7dd96c5d-7857-4dd9-b2eb-2c1952e8003f}, !- Handle Surface 11, !- Name Wall, !- Surface Type , !- Construction Name - {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name + {6409a335-f7db-458e-a2eb-3ec5412d45eb}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} - 0, 0, 0, !- X,Y,Z Vertex 2 {m} - 0, 3.048, 0, !- X,Y,Z Vertex 3 {m} - 0, 3.048, 3.048; !- X,Y,Z Vertex 4 {m} + 10, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 0, 3, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 10, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {7fab646c-6a8f-452d-8ba0-c4c385d0eb50}, !- Handle + {6864424d-28cc-482f-b63b-f73c53c3a138}, !- Handle Surface 12, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {8e444b86-da4a-4808-a97b-44d486743eb3}, !- Space Name + {6409a335-f7db-458e-a2eb-3ec5412d45eb}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} - 0, 3.048, 3.048, !- X,Y,Z Vertex 2 {m} - -3.048, 3.048, 3.048, !- X,Y,Z Vertex 3 {m} - -3.048, 0, 3.048; !- X,Y,Z Vertex 4 {m} + 10, 0, 3, !- X,Y,Z Vertex 1 {m} + 10, 10, 3, !- X,Y,Z Vertex 2 {m} + 0, 10, 3, !- X,Y,Z Vertex 3 {m} + 0, 0, 3; !- X,Y,Z Vertex 4 {m} OS:Space, - {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Handle - Space 103, !- Name + {fddbffe3-9308-4c74-88cb-96a33e175978}, !- Handle + Space 3, !- Name , !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name , !- Direction of Relative North {deg} - 0, !- X Origin {m} - 6.096, !- Y Origin {m} - 0, !- Z Origin {m} - {50868583-cd6e-4b33-9980-93aced1f0725}; !- Building Story Name + , !- X Origin {m} + 10, !- Y Origin {m} + , !- Z Origin {m} + {82b460b1-887d-484a-a18e-91dbb331fdfd}, !- Building Story Name + {ad63d9d5-8e59-455e-b669-06ff61e09394}; !- Thermal Zone Name OS:Surface, - {74a5de71-ac42-4838-888e-c4db7769715a}, !- Handle + {1e023521-e41a-4105-85bb-c7ed115e1069}, !- Handle Surface 13, !- Name - Floor, !- Surface Type + Wall, !- Surface Type , !- Construction Name - {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Space Name - Ground, !- Outside Boundary Condition + {fddbffe3-9308-4c74-88cb-96a33e175978}, !- Space Name + Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 3.048, 0, 0, !- X,Y,Z Vertex 1 {m} - 3.048, -3.048, 0, !- X,Y,Z Vertex 2 {m} - 0, -3.048, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 10, 3, !- X,Y,Z Vertex 2 {m} + 0, 10, 0, !- X,Y,Z Vertex 3 {m} 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {04c217f9-794f-482e-9566-bc9939ac2b67}, !- Handle + {53af9c9c-b862-410f-99ce-07299bb5e271}, !- Handle Surface 14, !- Name - Wall, !- Surface Type + Floor, !- Surface Type , !- Construction Name - {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Space Name - Outdoors, !- Outside Boundary Condition + {fddbffe3-9308-4c74-88cb-96a33e175978}, !- Space Name + Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 3.048, 0, 3.048, !- X,Y,Z Vertex 1 {m} - 3.048, 0, 0, !- X,Y,Z Vertex 2 {m} - 0, 0, 0, !- X,Y,Z Vertex 3 {m} - 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} + 0, 0, 0, !- X,Y,Z Vertex 1 {m} + 0, 10, 0, !- X,Y,Z Vertex 2 {m} + 10, 10, 0, !- X,Y,Z Vertex 3 {m} + 10, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {35cbb3e8-0b70-4fd5-9713-bb391d09a5fc}, !- Handle + {9676e8fc-bdb5-4e3c-bce9-5e924f1b167b}, !- Handle Surface 15, !- Name Wall, !- Surface Type , !- Construction Name - {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Space Name - Surface, !- Outside Boundary Condition - {2380e7e5-5843-486a-880b-888b9dee3a31}, !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure + {fddbffe3-9308-4c74-88cb-96a33e175978}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 3.048, -3.048, 3.048, !- X,Y,Z Vertex 1 {m} - 3.048, -3.048, 0, !- X,Y,Z Vertex 2 {m} - 3.048, 0, 0, !- X,Y,Z Vertex 3 {m} - 3.048, 0, 3.048; !- X,Y,Z Vertex 4 {m} + 0, 10, 3, !- X,Y,Z Vertex 1 {m} + 10, 10, 3, !- X,Y,Z Vertex 2 {m} + 10, 10, 0, !- X,Y,Z Vertex 3 {m} + 0, 10, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {002dd6d5-ccf2-4528-bee3-372935270e38}, !- Handle + {4b1eeb6e-ba4c-44c0-bd86-651981f54d1a}, !- Handle Surface 16, !- Name Wall, !- Surface Type , !- Construction Name - {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Space Name + {fddbffe3-9308-4c74-88cb-96a33e175978}, !- Space Name Surface, !- Outside Boundary Condition - {e6da7134-b845-4c2b-92d8-471d959b0232}, !- Outside Boundary Condition Object + {edc9494f-e6a8-463f-8dcf-3f46770bbcd1}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, -3.048, 3.048, !- X,Y,Z Vertex 1 {m} - 0, -3.048, 0, !- X,Y,Z Vertex 2 {m} - 3.048, -3.048, 0, !- X,Y,Z Vertex 3 {m} - 3.048, -3.048, 3.048; !- X,Y,Z Vertex 4 {m} + 10, 10, 3, !- X,Y,Z Vertex 1 {m} + 10, 0, 3, !- X,Y,Z Vertex 2 {m} + 10, 0, 0, !- X,Y,Z Vertex 3 {m} + 10, 10, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {29c6e6ba-2a04-4ad6-9f09-69b0692bd305}, !- Handle + {d72f5ba2-618d-4346-ac81-60c98fe6d862}, !- Handle Surface 17, !- Name Wall, !- Surface Type , !- Construction Name - {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Space Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure + {fddbffe3-9308-4c74-88cb-96a33e175978}, !- Space Name + Surface, !- Outside Boundary Condition + {2d0998ac-2115-4061-9b64-6fca18182bf1}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} - 0, 0, 0, !- X,Y,Z Vertex 2 {m} - 0, -3.048, 0, !- X,Y,Z Vertex 3 {m} - 0, -3.048, 3.048; !- X,Y,Z Vertex 4 {m} + 10, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 0, 3, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 10, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {f7e843c5-68c1-43f0-9204-c49b0f3332a6}, !- Handle + {b7b20701-dffa-40e1-9c05-2426e143c8b0}, !- Handle Surface 18, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {b5a1aae9-e0e9-4254-bf19-cebfb520aed5}, !- Space Name + {fddbffe3-9308-4c74-88cb-96a33e175978}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 3.048, -3.048, 3.048, !- X,Y,Z Vertex 1 {m} - 3.048, 0, 3.048, !- X,Y,Z Vertex 2 {m} - 0, 0, 3.048, !- X,Y,Z Vertex 3 {m} - 0, -3.048, 3.048; !- X,Y,Z Vertex 4 {m} + 10, 0, 3, !- X,Y,Z Vertex 1 {m} + 10, 10, 3, !- X,Y,Z Vertex 2 {m} + 0, 10, 3, !- X,Y,Z Vertex 3 {m} + 0, 0, 3; !- X,Y,Z Vertex 4 {m} OS:Space, - {3810e56a-95f5-4687-b896-06caf8120348}, !- Handle - Space 104, !- Name + {fd7ce3a0-27c0-478d-91eb-b3de96035577}, !- Handle + Space 4, !- Name , !- Space Type Name , !- Default Construction Set Name , !- Default Schedule Set Name , !- Direction of Relative North {deg} - 6.096, !- X Origin {m} - 3.048, !- Y Origin {m} - 0, !- Z Origin {m} - {50868583-cd6e-4b33-9980-93aced1f0725}; !- Building Story Name + 10, !- X Origin {m} + 10, !- Y Origin {m} + , !- Z Origin {m} + {82b460b1-887d-484a-a18e-91dbb331fdfd}, !- Building Story Name + {ad63d9d5-8e59-455e-b669-06ff61e09394}; !- Thermal Zone Name OS:Surface, - {81f77032-b16a-42d2-9517-02ae4c166df8}, !- Handle + {edc9494f-e6a8-463f-8dcf-3f46770bbcd1}, !- Handle Surface 19, !- Name - Floor, !- Surface Type + Wall, !- Surface Type , !- Construction Name - {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name - Ground, !- Outside Boundary Condition - , !- Outside Boundary Condition Object + {fd7ce3a0-27c0-478d-91eb-b3de96035577}, !- Space Name + Surface, !- Outside Boundary Condition + {4b1eeb6e-ba4c-44c0-bd86-651981f54d1a}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, 3.048, 0, !- X,Y,Z Vertex 1 {m} - 0, 0, 0, !- X,Y,Z Vertex 2 {m} - -3.048, 0, 0, !- X,Y,Z Vertex 3 {m} - -3.048, 3.048, 0; !- X,Y,Z Vertex 4 {m} + 0, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 10, 3, !- X,Y,Z Vertex 2 {m} + 0, 10, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {a0c1b5bc-da84-48af-8e48-32fcb79ef150}, !- Handle + {4358023b-92d7-410c-81e3-a7628e717a7b}, !- Handle Surface 20, !- Name - Wall, !- Surface Type + Floor, !- Surface Type , !- Construction Name - {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name - Surface, !- Outside Boundary Condition - {53f098ba-949b-4003-a566-b63754a87202}, !- Outside Boundary Condition Object + {fd7ce3a0-27c0-478d-91eb-b3de96035577}, !- Space Name + Ground, !- Outside Boundary Condition + , !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - -3.048, 0, 3.048, !- X,Y,Z Vertex 1 {m} - -3.048, 0, 0, !- X,Y,Z Vertex 2 {m} - 0, 0, 0, !- X,Y,Z Vertex 3 {m} - 0, 0, 3.048; !- X,Y,Z Vertex 4 {m} + 0, 0, 0, !- X,Y,Z Vertex 1 {m} + 0, 10, 0, !- X,Y,Z Vertex 2 {m} + 10, 10, 0, !- X,Y,Z Vertex 3 {m} + 10, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {2380e7e5-5843-486a-880b-888b9dee3a31}, !- Handle + {bb896818-7ba2-4bc8-9e30-d27515e24d25}, !- Handle Surface 21, !- Name Wall, !- Surface Type , !- Construction Name - {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name - Surface, !- Outside Boundary Condition - {35cbb3e8-0b70-4fd5-9713-bb391d09a5fc}, !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure + {fd7ce3a0-27c0-478d-91eb-b3de96035577}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - -3.048, 3.048, 3.048, !- X,Y,Z Vertex 1 {m} - -3.048, 3.048, 0, !- X,Y,Z Vertex 2 {m} - -3.048, 0, 0, !- X,Y,Z Vertex 3 {m} - -3.048, 0, 3.048; !- X,Y,Z Vertex 4 {m} + 0, 10, 3, !- X,Y,Z Vertex 1 {m} + 10, 10, 3, !- X,Y,Z Vertex 2 {m} + 10, 10, 0, !- X,Y,Z Vertex 3 {m} + 0, 10, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {3ce940a4-dffc-4da5-8e17-a47c6fde3c37}, !- Handle + {3afafab1-89f8-4b76-aa13-d37e4b600665}, !- Handle Surface 22, !- Name Wall, !- Surface Type , !- Construction Name - {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name + {fd7ce3a0-27c0-478d-91eb-b3de96035577}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, 3.048, 3.048, !- X,Y,Z Vertex 1 {m} - 0, 3.048, 0, !- X,Y,Z Vertex 2 {m} - -3.048, 3.048, 0, !- X,Y,Z Vertex 3 {m} - -3.048, 3.048, 3.048; !- X,Y,Z Vertex 4 {m} + 10, 10, 3, !- X,Y,Z Vertex 1 {m} + 10, 0, 3, !- X,Y,Z Vertex 2 {m} + 10, 0, 0, !- X,Y,Z Vertex 3 {m} + 10, 10, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {5adfa187-cd8e-4214-9ea8-4a4f634cf64c}, !- Handle + {2bfda192-df03-47bc-83da-b4da408f3e7a}, !- Handle Surface 23, !- Name Wall, !- Surface Type , !- Construction Name - {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure + {fd7ce3a0-27c0-478d-91eb-b3de96035577}, !- Space Name + Surface, !- Outside Boundary Condition + {434202f6-35d5-4ffc-895b-88397e1c1f90}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} - 0, 0, 0, !- X,Y,Z Vertex 2 {m} - 0, 3.048, 0, !- X,Y,Z Vertex 3 {m} - 0, 3.048, 3.048; !- X,Y,Z Vertex 4 {m} + 10, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 0, 3, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 10, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {8d537633-3f6b-476a-b746-cea3a8736eed}, !- Handle + {9d2c8eca-9d12-4088-bd3c-599ec6e69e02}, !- Handle Surface 24, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {3810e56a-95f5-4687-b896-06caf8120348}, !- Space Name + {fd7ce3a0-27c0-478d-91eb-b3de96035577}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, 0, 3.048, !- X,Y,Z Vertex 1 {m} - 0, 3.048, 3.048, !- X,Y,Z Vertex 2 {m} - -3.048, 3.048, 3.048, !- X,Y,Z Vertex 3 {m} - -3.048, 0, 3.048; !- X,Y,Z Vertex 4 {m} - -OS:Rendering:Color, - {3382e11a-163a-4157-8831-d7c6831e1559}, !- Handle - Rendering Color 59, !- Name - 186, !- Rendering Red Value - 85, !- Rendering Green Value - 211; !- Rendering Blue Value + 10, 0, 3, !- X,Y,Z Vertex 1 {m} + 10, 10, 3, !- X,Y,Z Vertex 2 {m} + 0, 10, 3, !- X,Y,Z Vertex 3 {m} + 0, 0, 3; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {c338f8b3-5a59-499c-98ca-df5a820387cd}, !- Handle + {ca797f30-9a7d-4aae-95dd-b923bbc2eb73}, !- Handle Sub Surface 1, !- Name - FixedWindow, !- Sub Surface Type + Door, !- Sub Surface Type , !- Construction Name - {04c217f9-794f-482e-9566-bc9939ac2b67}, !- Surface Name + {0bd94c04-e022-41bc-b26e-ed4a5789ef4c}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground - , !- Shading Control Name , !- Frame and Divider Name , !- Multiplier , !- Number of Vertices - 3.0226, 0, 1.99986440677966, !- X,Y,Z Vertex 1 {m} - 3.0226, 0, 0.76, !- X,Y,Z Vertex 2 {m} - 0.0254000000000003, 0, 0.76, !- X,Y,Z Vertex 3 {m} - 0.0254000000000003, 0, 1.99986440677966; !- X,Y,Z Vertex 4 {m} + 2, 0, 2, !- X,Y,Z Vertex 1 {m} + 2, 0, 0, !- X,Y,Z Vertex 2 {m} + 4, 0, 0, !- X,Y,Z Vertex 3 {m} + 4, 0, 2; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {dbcac169-5385-435a-ac98-e7891b7f2a0a}, !- Handle + {e81f7e4b-c692-42c0-aa60-59d77f692e9b}, !- Handle Sub Surface 2, !- Name FixedWindow, !- Sub Surface Type , !- Construction Name - {29c6e6ba-2a04-4ad6-9f09-69b0692bd305}, !- Surface Name + {d2d77a3e-41ec-42c2-b840-5bbf3a2e1f07}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground - , !- Shading Control Name , !- Frame and Divider Name , !- Multiplier , !- Number of Vertices - 0, -0.0254, 1.99986440677966, !- X,Y,Z Vertex 1 {m} - 0, -0.0254, 0.76, !- X,Y,Z Vertex 2 {m} - 0, -3.0226, 0.76, !- X,Y,Z Vertex 3 {m} - 0, -3.0226, 1.99986440677966; !- X,Y,Z Vertex 4 {m} - -OS:SubSurface, - {bf6c0bb6-20be-45a4-a12e-df2480492bc9}, !- Handle - Sub Surface 3, !- Name - FixedWindow, !- Sub Surface Type + 10, 2, 2, !- X,Y,Z Vertex 1 {m} + 10, 2, 1, !- X,Y,Z Vertex 2 {m} + 10, 8, 1, !- X,Y,Z Vertex 3 {m} + 10, 8, 2; !- X,Y,Z Vertex 4 {m} + +OS:ShadingSurfaceGroup, + {62e5ef2f-9ee3-4451-88a8-1865dcd23f3b}, !- Handle + Sub Surface 2 Shading Surfaces, !- Name + Space, !- Shading Surface Type + {6409a335-f7db-458e-a2eb-3ec5412d45eb}, !- Space Name + , !- Direction of Relative North {deg} + , !- X Origin {m} + , !- Y Origin {m} + , !- Z Origin {m} + {e81f7e4b-c692-42c0-aa60-59d77f692e9b}; !- Shaded Object Name + +OS:ShadingSurface, + {84de4f27-23c5-4110-b09e-6adeaa05d322}, !- Handle + Shading Surface 1, !- Name , !- Construction Name - {3ce940a4-dffc-4da5-8e17-a47c6fde3c37}, !- Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Shading Control Name - , !- Frame and Divider Name - , !- Multiplier + {62e5ef2f-9ee3-4451-88a8-1865dcd23f3b}, !- Shading Surface Group Name + , !- Transmittance Schedule Name , !- Number of Vertices - -0.0254, 3.048, 1.99986440677966, !- X,Y,Z Vertex 1 {m} - -0.0254, 3.048, 0.76, !- X,Y,Z Vertex 2 {m} - -3.0226, 3.048, 0.76, !- X,Y,Z Vertex 3 {m} - -3.0226, 3.048, 1.99986440677966; !- X,Y,Z Vertex 4 {m} - -OS:SubSurface, - {d4037884-9d56-4f6f-ac6d-65640af8fdc2}, !- Handle - Sub Surface 4, !- Name - FixedWindow, !- Sub Surface Type + 10, 8.1, 2.1, !- X,Y,Z Vertex 1 {m} + 10, 1.9, 2.1, !- X,Y,Z Vertex 2 {m} + 10.55, 1.9, 2.1, !- X,Y,Z Vertex 3 {m} + 10.55, 8.1, 2.1; !- X,Y,Z Vertex 4 {m} + +OS:Daylighting:Control, + {78471604-5880-405a-a7bf-6962be2444eb}, !- Handle + Daylighting Control 1, !- Name + {6409a335-f7db-458e-a2eb-3ec5412d45eb}, !- Space Name + 5, !- Position X-Coordinate {m} + 5, !- Position Y-Coordinate {m} + 1.1; !- Position Z-Coordinate {m} + +OS:IlluminanceMap, + {d3e63294-0dfa-44d4-adc1-1611b1f3077c}, !- Handle + Illuminance Map 1, !- Name + {6409a335-f7db-458e-a2eb-3ec5412d45eb}, !- Space Name + 1, !- Origin X-Coordinate {m} + 1, !- Origin Y-Coordinate {m} + 1.1, !- Origin Z-Coordinate {m} + , !- Psi Rotation Around X-Axis {deg} + , !- Theta Rotation Around Y-Axis {deg} + , !- Phi Rotation Around Z-Axis {deg} + 8, !- X Length {m} + , !- Number of X Grid Points + 8; !- Y Length {m} + +OS:Glare:Sensor, + {a0e660b3-4740-4edf-98f3-af88f5a5d008}, !- Handle + Glare Sensor 1, !- Name + {6409a335-f7db-458e-a2eb-3ec5412d45eb}, !- Space Name + 5, !- Position X-Coordinate {m} + 5, !- Position Y-Coordinate {m} + 1.1; !- Position Z-Coordinate {m} + +OS:InteriorPartitionSurfaceGroup, + {fbf98fa9-4775-4707-9326-58c72cc7ee3d}, !- Handle + Interior Partition Surface Group 1, !- Name + {6409a335-f7db-458e-a2eb-3ec5412d45eb}; !- Space Name + +OS:InteriorPartitionSurface, + {2823b64b-0cca-44c6-9b1a-5985b31877ec}, !- Handle + Interior Partition Surface 1, !- Name , !- Construction Name - {5adfa187-cd8e-4214-9ea8-4a4f634cf64c}, !- Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Shading Control Name - , !- Frame and Divider Name - , !- Multiplier + {fbf98fa9-4775-4707-9326-58c72cc7ee3d}, !- Interior Partition Surface Group Name + , !- Convert to Internal Mass + , !- Surface Area {m2} , !- Number of Vertices - 0, 0.0254, 1.99986440677966, !- X,Y,Z Vertex 1 {m} - 0, 0.0254, 0.76, !- X,Y,Z Vertex 2 {m} - 0, 3.0226, 0.76, !- X,Y,Z Vertex 3 {m} - 0, 3.0226, 1.99986440677966; !- X,Y,Z Vertex 4 {m} + 5, 8, 1, !- X,Y,Z Vertex 1 {m} + 5, 6, 1, !- X,Y,Z Vertex 2 {m} + 8, 6, 1, !- X,Y,Z Vertex 3 {m} + 8, 8, 1; !- X,Y,Z Vertex 4 {m} -OS:SubSurface, - {e34c1857-0462-47ea-9da7-7fe1b23da808}, !- Handle - Sub Surface 5, !- Name - FixedWindow, !- Sub Surface Type - , !- Construction Name - {5cfd7343-beef-4dd8-96ff-05ad91c84aad}, !- Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Shading Control Name - , !- Frame and Divider Name - , !- Multiplier - , !- Number of Vertices - 0.0254, -3.048, 1.99986440677966, !- X,Y,Z Vertex 1 {m} - 0.0254, -3.048, 0.76, !- X,Y,Z Vertex 2 {m} - 3.0226, -3.048, 0.76, !- X,Y,Z Vertex 3 {m} - 3.0226, -3.048, 1.99986440677966; !- X,Y,Z Vertex 4 {m} +OS:ElectricEquipment:Definition, + {5c8f45f6-7da6-4a42-99e7-c72396521b1a}, !- Handle + Printer Definition, !- Name + EquipmentLevel, !- Design Level Calculation Method + 200, !- Design Level {W} + , !- Watts per Space Floor Area {W/m2} + ; !- Watts per Person {W/person} -OS:SubSurface, - {e7397205-f157-47fc-ad9a-a675aab3b3c7}, !- Handle - Sub Surface 6, !- Name - FixedWindow, !- Sub Surface Type - , !- Construction Name - {80879f81-820f-4603-b611-b68e1595cb6e}, !- Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Shading Control Name - , !- Frame and Divider Name +OS:ElectricEquipment, + {20ec42d0-606d-4182-ae95-67b4ebec2c7f}, !- Handle + Printer, !- Name + {5c8f45f6-7da6-4a42-99e7-c72396521b1a}, !- Electric Equipment Definition Name + {fd7ce3a0-27c0-478d-91eb-b3de96035577}, !- Space or SpaceType Name + , !- Schedule Name , !- Multiplier - , !- Number of Vertices - 0, 0.0254, 1.99986440677966, !- X,Y,Z Vertex 1 {m} - 0, 0.0254, 0.76, !- X,Y,Z Vertex 2 {m} - 0, 3.0226, 0.76, !- X,Y,Z Vertex 3 {m} - 0, 3.0226, 1.99986440677966; !- X,Y,Z Vertex 4 {m} + General; !- End-Use Subcategory -OS:SubSurface, - {f4f4b729-630c-44aa-b175-61ca8c5dbc18}, !- Handle - Sub Surface 7, !- Name - FixedWindow, !- Sub Surface Type +OS:ShadingSurfaceGroup, + {82c84622-0484-4a47-aa04-172a40e8dc13}, !- Handle + Shading Surface Group 1, !- Name + Building; !- Shading Surface Type + +OS:ShadingSurface, + {4aeca613-f73b-4163-a190-f49d5632961a}, !- Handle + Shading Surface 2, !- Name , !- Construction Name - {b3fe4f2a-ff3a-493e-9743-c7be2c1ce9d2}, !- Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Shading Control Name - , !- Frame and Divider Name - , !- Multiplier + {82c84622-0484-4a47-aa04-172a40e8dc13}, !- Shading Surface Group Name + , !- Transmittance Schedule Name , !- Number of Vertices - -3.0226, 0, 1.99986440677966, !- X,Y,Z Vertex 1 {m} - -3.0226, 0, 0.76, !- X,Y,Z Vertex 2 {m} - -0.0254000000000003, 0, 0.76, !- X,Y,Z Vertex 3 {m} - -0.0254000000000003, 0, 1.99986440677966; !- X,Y,Z Vertex 4 {m} - -OS:SubSurface, - {3c09fbeb-0873-4676-861c-11a90d465e89}, !- Handle - Sub Surface 8, !- Name - FixedWindow, !- Sub Surface Type + 2, 0, 2, !- X,Y,Z Vertex 1 {m} + 2, -1, 2, !- X,Y,Z Vertex 2 {m} + 4, -1, 2, !- X,Y,Z Vertex 3 {m} + 4, 0, 2; !- X,Y,Z Vertex 4 {m} + +OS:ShadingSurfaceGroup, + {9d3f4897-2043-4102-877b-72bf929f844a}, !- Handle + Shading Surface Group 2, !- Name + Site; !- Shading Surface Type + +OS:ShadingSurface, + {b6a887e6-d4ea-4f4c-824e-1486218b2b4d}, !- Handle + Shading Surface 3, !- Name , !- Construction Name - {bf033db5-8c2d-4f1b-b467-6f8ae942fd52}, !- Surface Name - , !- Outside Boundary Condition Object - , !- View Factor to Ground - , !- Shading Control Name - , !- Frame and Divider Name - , !- Multiplier + {9d3f4897-2043-4102-877b-72bf929f844a}, !- Shading Surface Group Name + , !- Transmittance Schedule Name , !- Number of Vertices - 0, -0.0254, 1.99986440677966, !- X,Y,Z Vertex 1 {m} - 0, -0.0254, 0.76, !- X,Y,Z Vertex 2 {m} - 0, -3.0226, 0.76, !- X,Y,Z Vertex 3 {m} - 0, -3.0226, 1.99986440677966; !- X,Y,Z Vertex 4 {m} - -OS:Site, - {e923bd3f-b042-4911-a936-d37cf26af839}, !- Handle - Site 1, !- Name - , !- Latitude {deg} - , !- Longitude {deg} - , !- Time Zone {hr} - , !- Elevation {m} - ; !- Terrain - -OS:YearDescription, - {b216c53e-5b6b-4973-8442-5822dbdeacee}; !- Handle - -OS:ClimateZones, - {221ea9ed-6eb8-4a9e-8e5a-9f17ea245a5b}, !- Handle - , !- Active Institution - , !- Active Year - ASHRAE, !- Climate Zone Institution Name 1 - ANSI/ASHRAE Standard 169, !- Climate Zone Document Name 1 - 2006, !- Climate Zone Document Year 1 - , !- Climate Zone Value 1 - CEC, !- Climate Zone Institution Name 2 - California Climate Zone Descriptions, !- Climate Zone Document Name 2 - 1995, !- Climate Zone Document Year 2 - ; !- Climate Zone Value 2 - -OS:SimulationControl, - {d7639ae2-d32d-4ec9-8805-d736b33d8ed7}; !- Handle - -OS:Sizing:Parameters, - {3e229137-ae9f-4efa-8ea3-4acd5b93cbd8}, !- Handle - 1.25, !- Heating Sizing Factor - 1.15; !- Cooling Sizing Factor - -OS:Timestep, - {92bdf5f7-18f8-48b3-8bdf-5b839c3592c3}, !- Handle - 6; !- Number of Timesteps per Hour - -OS:ShadowCalculation, - {ec138f8c-4f93-4204-88a2-991a62608f6a}, !- Handle - 20, !- Calculation Frequency - 15000; !- Maximum Figures in Shadow Overlap Calculations + -30, 0, 20, !- X,Y,Z Vertex 1 {m} + -30, 0, 0, !- X,Y,Z Vertex 2 {m} + -30, 20, 0, !- X,Y,Z Vertex 3 {m} + -30, 20, 20; !- X,Y,Z Vertex 4 {m} + +OS:Schedule:Compact, + {e0bea2f0-f838-4e43-94a1-bb3d65bf475c}, !- Handle + ALWAYS_ON, !- Name + {221fc513-b7d2-4a1d-a7d4-37ccdbb8138f}, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00, !- Field 3 + 1; !- Field 4 + +OS:Fan:ConstantVolume, + {1d2ea0be-3902-43ae-9442-a6194b6a1e8a}, !- Handle + Standard Fan, !- Name + {e0bea2f0-f838-4e43-94a1-bb3d65bf475c}, !- Availability Schedule Name + , !- Fan Total Efficiency + , !- Pressure Rise {Pa} + AutoSize, !- Maximum Flow Rate {m3/s} + , !- Motor Efficiency + , !- Motor In Airstream Fraction + {bb427e50-7232-4ba5-ba51-f1fc72557c32}, !- Air Inlet Node Name + {1d03de79-5c9b-4fdc-b150-f89710dcf71b}, !- Air Outlet Node Name + ; !- End-Use Subcategory -OS:HeatBalanceAlgorithm, - {f9a03de5-79c9-409d-a764-bd2a8d39b93c}, !- Handle - ConductionTransferFunction, !- Algorithm - 200; !- Surface Temperature Upper Limit {C} +OS:ScheduleTypeLimits, + {221fc513-b7d2-4a1d-a7d4-37ccdbb8138f}, !- Handle + OnOff, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Discrete, !- Numeric Type + Availability; !- Unit Type + +OS:Coil:Heating:Gas, + {4e930292-0a33-490d-95dc-e03551ed6b21}, !- Handle + Coil Heating Gas 1, !- Name + {e0bea2f0-f838-4e43-94a1-bb3d65bf475c}, !- Availability Schedule Name + 0.8, !- Gas Burner Efficiency + AutoSize, !- Nominal Capacity {W} + {be9b1062-82de-4dfb-b4ec-0b914ec88e58}, !- Air Inlet Node Name + {37af4a8c-fa90-4887-ba5c-4e1fc893287c}, !- Air Outlet Node Name + , !- Temperature Setpoint Node Name + 0, !- On Cycle Parasitic Electric Load {W} + , !- Part Load Fraction Correlation Curve Name + 0; !- Off Cycle Parasitic Gas Load {W} + +OS:Curve:Biquadratic, + {476eb5bd-5bdf-4ba2-93e1-001c0fdbad40}, !- Handle + Curve Biquadratic 1, !- Name + 0.42415, !- Coefficient1 Constant + 0.04426, !- Coefficient2 x + -0.00042, !- Coefficient3 x**2 + 0.00333, !- Coefficient4 y + -8e-05, !- Coefficient5 y**2 + -0.00021, !- Coefficient6 x*y + 17, !- Minimum Value of x + 22, !- Maximum Value of x + 13, !- Minimum Value of y + 46, !- Maximum Value of y + -1000, !- Minimum Curve Output + 1000; !- Maximum Curve Output + +OS:Curve:Quadratic, + {4966ee43-62ff-4532-b35d-7f7168abe5dd}, !- Handle + Curve Quadratic 1, !- Name + 0.77136, !- Coefficient1 Constant + 0.34053, !- Coefficient2 x + -0.11088, !- Coefficient3 x**2 + 0.75918, !- Minimum Value of x + 1.13877, !- Maximum Value of x + -1000, !- Minimum Curve Output + 1000; !- Maximum Curve Output + +OS:Curve:Biquadratic, + {a69c9ad3-1870-45b0-a83c-e80e30c6061a}, !- Handle + Curve Biquadratic 2, !- Name + 1.23649, !- Coefficient1 Constant + -0.02431, !- Coefficient2 x + 0.00057, !- Coefficient3 x**2 + -0.01434, !- Coefficient4 y + 0.00063, !- Coefficient5 y**2 + -0.00038, !- Coefficient6 x*y + 17, !- Minimum Value of x + 22, !- Maximum Value of x + 0, !- Minimum Value of y + 46, !- Maximum Value of y + -1000, !- Minimum Curve Output + 1000; !- Maximum Curve Output + +OS:Curve:Quadratic, + {ef204f17-e9a9-4f35-a153-5930a902184c}, !- Handle + Curve Quadratic 2, !- Name + 1.2055, !- Coefficient1 Constant + -0.32953, !- Coefficient2 x + 0.12308, !- Coefficient3 x**2 + 0.75918, !- Minimum Value of x + 1.13877, !- Maximum Value of x + -1000, !- Minimum Curve Output + 1000; !- Maximum Curve Output + +OS:Curve:Quadratic, + {3bcdf981-2f2b-46ca-b48c-fb705c146fe7}, !- Handle + Curve Quadratic 3, !- Name + 0.771, !- Coefficient1 Constant + 0.229, !- Coefficient2 x + 0, !- Coefficient3 x**2 + 0, !- Minimum Value of x + 1, !- Maximum Value of x + 0.71, !- Minimum Curve Output + 1; !- Maximum Curve Output + +OS:Coil:Cooling:DX:SingleSpeed, + {4171296c-5ffd-458d-bdb3-8a8845c56938}, !- Handle + Coil Cooling DX Single Speed 1, !- Name + {e0bea2f0-f838-4e43-94a1-bb3d65bf475c}, !- Availability Schedule Name + autosize, !- Rated Total Cooling Capacity {W} + autosize, !- Rated Sensible Heat Ratio + 3, !- Rated COP {W/W} + autosize, !- Rated Air Flow Rate {m3/s} + 773.3, !- Rated Evaporator Fan Power Per Volume Flow Rate 2017 {W/(m3/s)} + 934.4, !- Rated Evaporator Fan Power Per Volume Flow Rate 2023 {W/(m3/s)} + {20bbd574-3fbe-48c7-96d8-b173eacc8e51}, !- Air Inlet Node Name + {f614aaab-2cae-4489-8c9f-04fdde6f477b}, !- Air Outlet Node Name + {476eb5bd-5bdf-4ba2-93e1-001c0fdbad40}, !- Total Cooling Capacity Function of Temperature Curve Name + {4966ee43-62ff-4532-b35d-7f7168abe5dd}, !- Total Cooling Capacity Function of Flow Fraction Curve Name + {a69c9ad3-1870-45b0-a83c-e80e30c6061a}, !- Energy Input Ratio Function of Temperature Curve Name + {ef204f17-e9a9-4f35-a153-5930a902184c}, !- Energy Input Ratio Function of Flow Fraction Curve Name + {3bcdf981-2f2b-46ca-b48c-fb705c146fe7}, !- Part Load Fraction Correlation Curve Name + -25, !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C} + 0, !- Nominal Time for Condensate Removal to Begin {s} + 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 0, !- Maximum Cycling Rate {cycles/hr} + 0, !- Latent Capacity Time Constant {s} + , !- Condenser Air Inlet Node Name + AirCooled, !- Condenser Type + 0.9, !- Evaporative Condenser Effectiveness {dimensionless} + autosize, !- Evaporative Condenser Air Flow Rate {m3/s} + autosize, !- Evaporative Condenser Pump Rated Power Consumption {W} + 0, !- Crankcase Heater Capacity {W} + , !- Crankcase Heater Capacity Function of Temperature Curve Name + 10, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C} + , !- Supply Water Storage Tank Name + , !- Condensate Collection Water Storage Tank Name + 0, !- Basin Heater Capacity {W/K} + 2; !- Basin Heater Setpoint Temperature {C} + +OS:EvaporativeCooler:Direct:ResearchSpecial, + {84c34ee6-8731-47e5-9c30-1842744543e4}, !- Handle + Evaporative Cooler Direct Research Special 1, !- Name + {e0bea2f0-f838-4e43-94a1-bb3d65bf475c}, !- Availability Schedule Name + 1, !- Cooler Design Effectiveness + 0, !- Recirculating Water Pump Power Consumption {W} + , !- Primary Air Design Flow Rate {m3/s} + {405e9fd1-fff1-46a8-9d42-34090b7fa064}, !- Air Inlet Node Name + {560e26ce-8417-4f13-aefb-00c819851912}, !- Air Outlet Node Name + {a5d91a3f-d02d-453e-90bb-3f72c84b44e3}, !- Sensor Node Name + 0, !- Drift Loss Fraction + 0, !- Blowdown Concentration Ratio + , !- Effectiveness Flow Ratio Modifier Curve Name + 0.1, !- Water Pump Power Sizing Factor {W/(m3/s)} + , !- Water Pump Power Modifier Curve Name + 16, !- Evaporative Operation Minimum Drybulb Temperature + 24, !- Evaporative Operation Maximum Limit Wetbulb Temperature + 28; !- Evaporative Operation Maximum Limit Drybulb Temperature + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {c4b6be6e-bb86-44cc-a382-6e41534f0a81}, !- Handle + Air Terminal Single Duct Constant Volume No Reheat 1, !- Name + {e0bea2f0-f838-4e43-94a1-bb3d65bf475c}, !- Availability Schedule Name + {388ecabc-83bb-480a-a9b3-bf444d45e1a5}, !- Air Inlet Node Name + {edbf8720-f556-4f51-afa4-42ace7dd0748}, !- Air Outlet Node Name + AutoSize; !- Maximum Air Flow Rate {m3/s} + +OS:Controller:OutdoorAir, + {c5940be6-3592-4f48-a834-8940f98c4069}, !- Handle + Controller Outdoor Air 1, !- Name + , !- Relief Air Outlet Node Name + , !- Return Air Node Name + , !- Mixed Air Node Name + , !- Actuator Node Name + 0, !- Minimum Outdoor Air Flow Rate {m3/s} + Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + NoEconomizer, !- Economizer Control Type + ModulateFlow, !- Economizer Control Action Type + 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C} + 64000, !- Economizer Maximum Limit Enthalpy {J/kg} + , !- Economizer Maximum Limit Dewpoint Temperature {C} + , !- Electronic Enthalpy Limit Curve Name + -100, !- Economizer Minimum Limit Dry-Bulb Temperature {C} + NoLockout, !- Lockout Type + FixedMinimum, !- Minimum Limit Type + , !- Minimum Outdoor Air Schedule Name + , !- Minimum Fraction of Outdoor Air Schedule Name + , !- Maximum Fraction of Outdoor Air Schedule Name + {7aeecb0c-2c51-4a7d-8375-5d9371b7155d}, !- 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, + {7aeecb0c-2c51-4a7d-8375-5d9371b7155d}, !- Handle + Controller Mechanical Ventilation 1, !- Name + {ba54d41a-918e-4c15-9b9f-65f3bfa481ba}, !- Availability Schedule + , !- Demand Controlled Ventilation + ; !- System Outdoor Air Method + +OS:Schedule:Constant, + {ba54d41a-918e-4c15-9b9f-65f3bfa481ba}, !- Handle + Always On Discrete, !- Name + {f8887005-aafe-4f48-a0fc-705640235aba}, !- Schedule Type Limits Name + 1; !- Value -OS:RunPeriod, - {1e31b0fa-d387-4896-8e7e-30f2368f9e58}, !- 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, - {a836c392-6031-4709-b70f-0f9efa66e717}, !- 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:ScheduleTypeLimits, + {f8887005-aafe-4f48-a0fc-705640235aba}, !- Handle + OnOff 1, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + Discrete, !- Numeric Type + Availability; !- Unit Type + +OS:AirLoopHVAC:OutdoorAirSystem, + {fde93888-27eb-4b66-babc-30b79edf363f}, !- Handle + Air Loop HVAC Outdoor Air System 1, !- Name + {c5940be6-3592-4f48-a834-8940f98c4069}, !- Controller Name + , !- Outdoor Air Equipment List Name + , !- Availability Manager List Name + {767f3816-ce59-435f-8a37-d89e4839f6a5}, !- Mixed Air Node Name + {336a3ee9-b89b-4abf-9f4a-0ddd6347bc64}, !- Outdoor Air Stream Node Name + {a3be70d6-e01a-499a-b85e-20486b1d8ac8}, !- Relief Air Stream Node Name + {f3131c93-10d7-4d76-b44d-6712f32a2c3e}; !- Return Air Stream Node Name + +OS:Node, + {16329496-0bd8-4c67-8ce0-7a474ebf3219}, !- Handle + Outboard OA Node, !- Name + , !- Inlet Port + {405e9fd1-fff1-46a8-9d42-34090b7fa064}; !- Outlet Port + +OS:Node, + {0b534c59-5386-4f2c-99d3-e5aa7bbc7a3c}, !- Handle + Relief Node, !- Name + {a3be70d6-e01a-499a-b85e-20486b1d8ac8}, !- Inlet Port + ; !- Outlet Port + +OS:Connection, + {a3be70d6-e01a-499a-b85e-20486b1d8ac8}, !- Handle + {fde93888-27eb-4b66-babc-30b79edf363f}, !- Source Object + 7, !- Outlet Port + {0b534c59-5386-4f2c-99d3-e5aa7bbc7a3c}, !- Target Object + 2; !- Inlet Port + +OS:AirLoopHVAC, + {885273ee-612a-4d1a-b3bd-7cc824928f0f}, !- Handle + Air Loop HVAC 1, !- Name + , !- Controller List Name + {ba54d41a-918e-4c15-9b9f-65f3bfa481ba}, !- Availability Schedule + {6bab361a-9dc9-4aa3-8e60-b2a9101119bf}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow + , !- Branch List Name + , !- Connector List Name + {829afbf5-b628-49ff-aba6-d8e219a7f28c}, !- Supply Side Inlet Node Name + {f868835e-1c70-48e9-9989-1606bb6d15c5}, !- Demand Side Outlet Node Name + {16598735-a968-4e8c-9aed-f1680fd9852f}, !- Demand Side Inlet Node A + {4e8f935a-d49f-46f2-9565-221560b7fe9f}, !- Supply Side Outlet Node A + , !- Demand Side Inlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {f20ef84e-f60d-44b2-90ab-312882ea901a}, !- Demand Mixer Name + {29dd9da6-56ef-4592-be7d-858a28193210}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name + +OS:Node, + {6636ab3c-df6e-4411-b8c1-fdcec7f33507}, !- Handle + Node 2, !- Name + {829afbf5-b628-49ff-aba6-d8e219a7f28c}, !- Inlet Port + {f3131c93-10d7-4d76-b44d-6712f32a2c3e}; !- Outlet Port + +OS:Node, + {3ad7e301-8559-4ff8-9c2b-f678ef0e9373}, !- Handle + Node 3, !- Name + {1d03de79-5c9b-4fdc-b150-f89710dcf71b}, !- Inlet Port + {4e8f935a-d49f-46f2-9565-221560b7fe9f}; !- Outlet Port + +OS:Connection, + {829afbf5-b628-49ff-aba6-d8e219a7f28c}, !- Handle + {885273ee-612a-4d1a-b3bd-7cc824928f0f}, !- Source Object + 9, !- Outlet Port + {6636ab3c-df6e-4411-b8c1-fdcec7f33507}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {4e8f935a-d49f-46f2-9565-221560b7fe9f}, !- Handle + {3ad7e301-8559-4ff8-9c2b-f678ef0e9373}, !- Source Object + 3, !- Outlet Port + {885273ee-612a-4d1a-b3bd-7cc824928f0f}, !- Target Object + 12; !- Inlet Port + +OS:Node, + {bec3e85d-5b4a-479e-89d9-5eafa5764431}, !- Handle + Node 4, !- Name + {16598735-a968-4e8c-9aed-f1680fd9852f}, !- Inlet Port + {0a3d3a89-5bf7-45a4-bbe3-197052d65eae}; !- Outlet Port + +OS:Node, + {aa91195b-a17c-411a-886a-ef9986f6a3f3}, !- Handle + Node 5, !- Name + {8c513865-a447-4d4c-a435-62de8903c7f2}, !- Inlet Port + {f868835e-1c70-48e9-9989-1606bb6d15c5}; !- Outlet Port + +OS:Node, + {f3816940-7f93-4b22-a751-e9774b99b418}, !- Handle + Node 6, !- Name + {edbf8720-f556-4f51-afa4-42ace7dd0748}, !- Inlet Port + {b95bc29d-8fcc-4657-a052-2ac11150ddac}; !- Outlet Port + +OS:Connection, + {16598735-a968-4e8c-9aed-f1680fd9852f}, !- Handle + {885273ee-612a-4d1a-b3bd-7cc824928f0f}, !- Source Object + 11, !- Outlet Port + {bec3e85d-5b4a-479e-89d9-5eafa5764431}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {f868835e-1c70-48e9-9989-1606bb6d15c5}, !- Handle + {aa91195b-a17c-411a-886a-ef9986f6a3f3}, !- Source Object + 3, !- Outlet Port + {885273ee-612a-4d1a-b3bd-7cc824928f0f}, !- Target Object + 10; !- Inlet Port + +OS:AirLoopHVAC:ZoneSplitter, + {29dd9da6-56ef-4592-be7d-858a28193210}, !- Handle + Air Loop HVAC Zone Splitter 1, !- Name + {0a3d3a89-5bf7-45a4-bbe3-197052d65eae}, !- Inlet Node Name + {c56618a9-4908-49bf-b024-2ac58191e8ae}; !- Outlet Node Name 1 + +OS:AirLoopHVAC:ZoneMixer, + {f20ef84e-f60d-44b2-90ab-312882ea901a}, !- Handle + Air Loop HVAC Zone Mixer 1, !- Name + {8c513865-a447-4d4c-a435-62de8903c7f2}, !- Outlet Node Name + {9fdcbb36-d5ad-4460-9f2c-48c77f15a838}; !- Inlet Node Name 1 + +OS:Connection, + {0a3d3a89-5bf7-45a4-bbe3-197052d65eae}, !- Handle + {bec3e85d-5b4a-479e-89d9-5eafa5764431}, !- Source Object + 3, !- Outlet Port + {29dd9da6-56ef-4592-be7d-858a28193210}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8c513865-a447-4d4c-a435-62de8903c7f2}, !- Handle + {f20ef84e-f60d-44b2-90ab-312882ea901a}, !- Source Object + 2, !- Outlet Port + {aa91195b-a17c-411a-886a-ef9986f6a3f3}, !- Target Object + 2; !- Inlet Port + +OS:Sizing:System, + {b30935ca-a6d9-44e2-9cce-6549053f9835}, !- Handle + {885273ee-612a-4d1a-b3bd-7cc824928f0f}, !- AirLoop Name + , !- Type of Load to Size On + , !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- 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} + 12.8, !- Central Cooling Design Supply Air Temperature {C} + 16.7, !- Central Heating Design Supply Air Temperature {C} + , !- 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} + , !- 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 + autosize, !- 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 + autosize, !- 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 + autosize; !- Occupant Diversity + +OS:AvailabilityManagerAssignmentList, + {6bab361a-9dc9-4aa3-8e60-b2a9101119bf}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList; !- Name + +OS:Node, + {f26aa5f1-b68f-4b1f-8750-fb0d1379cd01}, !- Handle + Node 7, !- Name + {8d0529bf-fb9d-4a1a-a07a-81a18fb90db2}, !- Inlet Port + {9fdcbb36-d5ad-4460-9f2c-48c77f15a838}; !- Outlet Port + +OS:Connection, + {b95bc29d-8fcc-4657-a052-2ac11150ddac}, !- Handle + {f3816940-7f93-4b22-a751-e9774b99b418}, !- Source Object + 3, !- Outlet Port + {9d2cd073-4f15-46a0-a620-81fbc2fb522c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {8d0529bf-fb9d-4a1a-a07a-81a18fb90db2}, !- Handle + {64c7e3a6-26c9-48ef-9f05-36a6eb240541}, !- Source Object + 2, !- Outlet Port + {f26aa5f1-b68f-4b1f-8750-fb0d1379cd01}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {9fdcbb36-d5ad-4460-9f2c-48c77f15a838}, !- Handle + {f26aa5f1-b68f-4b1f-8750-fb0d1379cd01}, !- Source Object + 3, !- Outlet Port + {f20ef84e-f60d-44b2-90ab-312882ea901a}, !- Target Object + 3; !- Inlet Port + +OS:Node, + {34779c1d-c164-4d6f-ac5a-ae1838f5621c}, !- Handle + Node 8, !- Name + {c56618a9-4908-49bf-b024-2ac58191e8ae}, !- Inlet Port + {388ecabc-83bb-480a-a9b3-bf444d45e1a5}; !- Outlet Port + +OS:Connection, + {c56618a9-4908-49bf-b024-2ac58191e8ae}, !- Handle + {29dd9da6-56ef-4592-be7d-858a28193210}, !- Source Object + 3, !- Outlet Port + {34779c1d-c164-4d6f-ac5a-ae1838f5621c}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {388ecabc-83bb-480a-a9b3-bf444d45e1a5}, !- Handle + {34779c1d-c164-4d6f-ac5a-ae1838f5621c}, !- Source Object + 3, !- Outlet Port + {c4b6be6e-bb86-44cc-a382-6e41534f0a81}, !- Target Object + 3; !- Inlet Port + +OS:Connection, + {edbf8720-f556-4f51-afa4-42ace7dd0748}, !- Handle + {c4b6be6e-bb86-44cc-a382-6e41534f0a81}, !- Source Object + 4, !- Outlet Port + {f3816940-7f93-4b22-a751-e9774b99b418}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {1d03de79-5c9b-4fdc-b150-f89710dcf71b}, !- Handle + {1d2ea0be-3902-43ae-9442-a6194b6a1e8a}, !- Source Object + 9, !- Outlet Port + {3ad7e301-8559-4ff8-9c2b-f678ef0e9373}, !- Target Object + 2; !- Inlet Port + +OS:Node, + {0a4be51d-203f-4d99-b1b8-aff055d2aad2}, !- Handle + Node 9, !- Name + {37af4a8c-fa90-4887-ba5c-4e1fc893287c}, !- Inlet Port + {bb427e50-7232-4ba5-ba51-f1fc72557c32}; !- Outlet Port + +OS:Connection, + {37af4a8c-fa90-4887-ba5c-4e1fc893287c}, !- Handle + {4e930292-0a33-490d-95dc-e03551ed6b21}, !- Source Object + 6, !- Outlet Port + {0a4be51d-203f-4d99-b1b8-aff055d2aad2}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {bb427e50-7232-4ba5-ba51-f1fc72557c32}, !- Handle + {0a4be51d-203f-4d99-b1b8-aff055d2aad2}, !- Source Object + 3, !- Outlet Port + {1d2ea0be-3902-43ae-9442-a6194b6a1e8a}, !- Target Object + 8; !- Inlet Port + +OS:Node, + {a5fa4e23-cba9-43ed-80eb-b18821a81901}, !- Handle + Node 10, !- Name + {f614aaab-2cae-4489-8c9f-04fdde6f477b}, !- Inlet Port + {be9b1062-82de-4dfb-b4ec-0b914ec88e58}; !- Outlet Port + +OS:Connection, + {f614aaab-2cae-4489-8c9f-04fdde6f477b}, !- Handle + {4171296c-5ffd-458d-bdb3-8a8845c56938}, !- Source Object + 10, !- Outlet Port + {a5fa4e23-cba9-43ed-80eb-b18821a81901}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {be9b1062-82de-4dfb-b4ec-0b914ec88e58}, !- Handle + {a5fa4e23-cba9-43ed-80eb-b18821a81901}, !- Source Object + 3, !- Outlet Port + {4e930292-0a33-490d-95dc-e03551ed6b21}, !- Target Object + 5; !- Inlet Port + +OS:Node, + {08d8ac2b-00c9-4f72-8519-7766b3163719}, !- Handle + Node 11, !- Name + {767f3816-ce59-435f-8a37-d89e4839f6a5}, !- Inlet Port + {20bbd574-3fbe-48c7-96d8-b173eacc8e51}; !- Outlet Port + +OS:Connection, + {f3131c93-10d7-4d76-b44d-6712f32a2c3e}, !- Handle + {6636ab3c-df6e-4411-b8c1-fdcec7f33507}, !- Source Object + 3, !- Outlet Port + {fde93888-27eb-4b66-babc-30b79edf363f}, !- Target Object + 8; !- Inlet Port + +OS:Connection, + {767f3816-ce59-435f-8a37-d89e4839f6a5}, !- Handle + {fde93888-27eb-4b66-babc-30b79edf363f}, !- Source Object + 5, !- Outlet Port + {08d8ac2b-00c9-4f72-8519-7766b3163719}, !- Target Object + 2; !- Inlet Port + +OS:Connection, + {20bbd574-3fbe-48c7-96d8-b173eacc8e51}, !- Handle + {08d8ac2b-00c9-4f72-8519-7766b3163719}, !- Source Object + 3, !- Outlet Port + {4171296c-5ffd-458d-bdb3-8a8845c56938}, !- Target Object + 9; !- Inlet Port + +OS:Node, + {a5d91a3f-d02d-453e-90bb-3f72c84b44e3}, !- Handle + Node 12, !- Name + {560e26ce-8417-4f13-aefb-00c819851912}, !- Inlet Port + {336a3ee9-b89b-4abf-9f4a-0ddd6347bc64}; !- Outlet Port + +OS:Connection, + {336a3ee9-b89b-4abf-9f4a-0ddd6347bc64}, !- Handle + {a5d91a3f-d02d-453e-90bb-3f72c84b44e3}, !- Source Object + 3, !- Outlet Port + {fde93888-27eb-4b66-babc-30b79edf363f}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {405e9fd1-fff1-46a8-9d42-34090b7fa064}, !- Handle + {16329496-0bd8-4c67-8ce0-7a474ebf3219}, !- Source Object + 3, !- Outlet Port + {84c34ee6-8731-47e5-9c30-1842744543e4}, !- Target Object + 6; !- Inlet Port + +OS:Connection, + {560e26ce-8417-4f13-aefb-00c819851912}, !- Handle + {84c34ee6-8731-47e5-9c30-1842744543e4}, !- Source Object + 7, !- Outlet Port + {a5d91a3f-d02d-453e-90bb-3f72c84b44e3}, !- Target Object + 2; !- Inlet Port + +OS:SetpointManager:MixedAir, + {3be2219f-00ac-4b86-817c-fa1d9f670417}, !- Handle + Setpoint Manager Mixed Air 1, !- Name + Temperature, !- Control Variable + {3ad7e301-8559-4ff8-9c2b-f678ef0e9373}, !- Reference Setpoint Node Name + {0a4be51d-203f-4d99-b1b8-aff055d2aad2}, !- Fan Inlet Node Name + {3ad7e301-8559-4ff8-9c2b-f678ef0e9373}, !- Fan Outlet Node Name + {08d8ac2b-00c9-4f72-8519-7766b3163719}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:MixedAir, + {5af12a9a-ca7a-46a0-994e-5856b76e0a49}, !- Handle + Setpoint Manager Mixed Air 2, !- Name + Temperature, !- Control Variable + {3ad7e301-8559-4ff8-9c2b-f678ef0e9373}, !- Reference Setpoint Node Name + {0a4be51d-203f-4d99-b1b8-aff055d2aad2}, !- Fan Inlet Node Name + {3ad7e301-8559-4ff8-9c2b-f678ef0e9373}, !- Fan Outlet Node Name + {a5fa4e23-cba9-43ed-80eb-b18821a81901}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:MixedAir, + {0d22dc2b-cdf7-4d2a-9498-3de3910c3a38}, !- Handle + Setpoint Manager Mixed Air 3, !- Name + Temperature, !- Control Variable + {3ad7e301-8559-4ff8-9c2b-f678ef0e9373}, !- Reference Setpoint Node Name + {0a4be51d-203f-4d99-b1b8-aff055d2aad2}, !- Fan Inlet Node Name + {3ad7e301-8559-4ff8-9c2b-f678ef0e9373}, !- Fan Outlet Node Name + {0a4be51d-203f-4d99-b1b8-aff055d2aad2}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:MixedAir, + {e041f3db-02a8-4570-a550-65fe26047080}, !- Handle + Setpoint Manager Mixed Air 4, !- Name + Temperature, !- Control Variable + {3ad7e301-8559-4ff8-9c2b-f678ef0e9373}, !- Reference Setpoint Node Name + {0a4be51d-203f-4d99-b1b8-aff055d2aad2}, !- Fan Inlet Node Name + {3ad7e301-8559-4ff8-9c2b-f678ef0e9373}, !- Fan Outlet Node Name + {a5d91a3f-d02d-453e-90bb-3f72c84b44e3}; !- Setpoint Node or NodeList Name + +OS:SetpointManager:SingleZone:Reheat, + {00d89d7a-e2a8-47a3-a361-76313859dcf7}, !- Handle + Setpoint Manager Single Zone Reheat 1, !- Name + -99, !- Minimum Supply Air Temperature {C} + 99, !- Maximum Supply Air Temperature {C} + {ad63d9d5-8e59-455e-b669-06ff61e09394}, !- Control Zone Name + {3ad7e301-8559-4ff8-9c2b-f678ef0e9373}; !- Setpoint Node or NodeList Name + +OS:Output:Variable, + {96f300f3-6bbc-4806-82d5-f0b01ff23c94}, !- Handle + Output Variable 1, !- Name + , !- Key Value + Zone Outdoor Air Drybulb Temperature; !- Variable Name + +OS:Output:Variable, + {3a288b16-655d-4b00-bd37-9ef09b30f050}, !- Handle + Output Variable 2, !- Name + , !- Key Value + Surface Inside Face Temperature; !- Variable Name + +OS:Output:Meter, + {b0a33d0d-e8bd-4e95-a670-91c8af26cbb8}, !- Handle + Electricity:Facility, !- Name + Hourly; !- Reporting Frequency + +OS:Output:Meter, + {4ab61cef-4fbc-487a-b757-90eeafc9e611}, !- Handle + NaturalGas:Facility, !- Name + Hourly; !- Reporting Frequency + +OS:Output:Meter, + {bcfbcec3-8814-4714-b7b8-f72cec50f7e2}, !- Handle + Propane:Facility, !- Name + Hourly; !- Reporting Frequency diff --git a/src/utilities/bcl/templates/ReportingMeasure/tests/example_model.osm b/src/utilities/bcl/templates/ReportingMeasure/tests/example_model.osm index 8bee730edc4..5d382177ee3 100644 --- a/src/utilities/bcl/templates/ReportingMeasure/tests/example_model.osm +++ b/src/utilities/bcl/templates/ReportingMeasure/tests/example_model.osm @@ -1,56 +1,81 @@ OS:Version, - {0ab440c6-3d07-4226-be46-8a7544614205}, !- Handle - 1.13.0; !- Version Identifier + {d9950636-672a-4eaf-b111-369c97a4fca5}, !- Handle + 3.7.0; !- Version Identifier OS:SimulationControl, - {41f65c43-2dc9-4d82-a6e4-a562bae08803}, !- Handle + {dffa50c3-0af9-4bc0-b251-5ed123f525fa}, !- Handle Yes, !- Do Zone Sizing Calculation Yes, !- Do System Sizing Calculation , !- Do Plant Sizing Calculation - Yes, !- Run Simulation for Sizing Periods + No, !- Run Simulation for Sizing Periods Yes; !- Run Simulation for Weather File Run Periods OS:Timestep, - {eb4c2965-98e5-4997-8a4e-8c4f15debb16}, !- Handle + {0ec1461b-63d0-4b9b-90e7-56fe129c580e}, !- Handle 6; !- Number of Timesteps per Hour +OS:RunPeriod, + {36dac0ef-81e6-4b6c-92cd-8d9027316b77}, !- Handle + Run Period 1, !- Name + 1, !- Begin Month + 1, !- Begin Day of Month + 12, !- End Month + 31, !- End Day of Month + No, !- Use Weather File Holidays and Special Days + No, !- Use Weather File Daylight Saving Period + No, !- Apply Weekend Holiday Rule + Yes, !- Use Weather File Rain Indicators + Yes, !- Use Weather File Snow Indicators + 1; !- Number of Times Runperiod to be Repeated + OS:SurfaceConvectionAlgorithm:Inside, - {81e0d50e-12a1-42bd-977d-f7c5a2f8db48}, !- Handle + {fe2100c3-bfa6-4a80-af5c-abfc6461200b}, !- Handle TARP; !- Algorithm OS:SurfaceConvectionAlgorithm:Outside, - {4cd5774b-32a2-4735-bc88-a9704e322959}, !- Handle + {e621b055-42dd-44c6-8c22-2ccf8bf49c16}, !- Handle DOE-2; !- Algorithm OS:HeatBalanceAlgorithm, - {fb07df21-178f-40a0-868e-360603ea5cfc}, !- Handle + {d23315d3-61d0-4fab-a825-40c070353a42}, !- Handle ConductionTransferFunction, !- Algorithm 200; !- Surface Temperature Upper Limit {C} OS:ZoneAirHeatBalanceAlgorithm, - {82730f22-7533-4ae2-85c6-69dbcc9f2cda}, !- Handle - AnalyticalSolution; !- Algorithm + {07a72355-ad61-4de2-b592-a38ace84a25f}, !- Handle + , !- Algorithm + , !- Do Space Heat Balance for Sizing + ; !- Do Space Heat Balance for Simulation OS:ConvergenceLimits, - {17bc7ac9-f4b7-4401-b4e6-9cdcd6f62f24}; !- Handle + {5471f964-ca0f-48b3-bf3c-eea264418014}, !- Handle + 1; !- Minimum System Timestep {minutes} OS:ShadowCalculation, - {2c59bec7-e7be-489b-8d3d-042e6bf6bda3}, !- Handle - 7, !- Calculation Frequency - 15000; !- Maximum Figures in Shadow Overlap Calculations + {b1d83880-ea84-49a7-b5c3-ce9c9defbdaf}, !- 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:Site, - {5c1f9d16-87a5-488e-aa99-a6dd668a2146}, !- Handle + {157c726c-266b-4a5c-b2b1-bb044e7c89ae}, !- Handle Site 1, !- Name - 39.74, !- Latitude {deg} - -105.18, !- Longitude {deg} - -7, !- Time Zone {hr} - 1829, !- Elevation {m} + 41.77, !- Latitude {deg} + -87.75, !- Longitude {deg} + -6, !- Time Zone {hr} + 190, !- Elevation {m} ; !- Terrain OS:Site:GroundTemperature:BuildingSurface, - {2d661510-368a-464f-97bd-5b2b69e35b08}, !- Handle + {0bd7ad4b-32f3-4895-b594-e3a282e7926e}, !- Handle 19.527, !- January Ground Temperature {C} 19.502, !- February Ground Temperature {C} 19.536, !- March Ground Temperature {C} @@ -64,59 +89,74 @@ OS:Site:GroundTemperature:BuildingSurface, 19.802, !- November Ground Temperature {C} 19.633; !- December Ground Temperature {C} +OS:Site:GroundTemperature:Deep, + {96e6e8b7-166a-45de-af71-11be032c1377}, !- Handle + 19.527, !- January Deep Ground Temperature {C} + 19.502, !- February Deep Ground Temperature {C} + 19.536, !- March Deep Ground Temperature {C} + 19.598, !- April Deep Ground Temperature {C} + 20.002, !- May Deep Ground Temperature {C} + 21.64, !- June Deep Ground Temperature {C} + 22.225, !- July Deep Ground Temperature {C} + 22.375, !- August Deep Ground Temperature {C} + 21.449, !- September Deep Ground Temperature {C} + 20.121, !- October Deep Ground Temperature {C} + 19.802, !- November Deep Ground Temperature {C} + 19.633; !- December Deep Ground Temperature {C} + OS:Site:WaterMainsTemperature, - {b1134434-51a2-4c57-a796-ee6a763117e6}, !- Handle + {09a5d992-984e-4eb0-9bc3-8b81708d052f}, !- Handle Correlation, !- Calculation Method , !- Temperature Schedule Name 9.69, !- Annual Average Outdoor Air Temperature {C} 28.1; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC} OS:SizingPeriod:DesignDay, - {93dffeb2-8b85-49e9-8487-9710c53e82fe}, !- Handle + {93d19a28-1684-4399-9d02-a9c4bbecb075}, !- Handle Sizing Period Design Day 1, !- Name -20.6, !- Maximum Dry-Bulb Temperature {C} 0, !- Daily Dry-Bulb Temperature Range {deltaC} - -20.6, !- Humidity Indicating Conditions at Maximum Dry-Bulb 99063, !- Barometric Pressure {Pa} 4.9, !- Wind Speed {m/s} 270, !- Wind Direction {deg} 0, !- Sky Clearness - 0, !- Rain Indicator - 0, !- Snow Indicator + No, !- Rain Indicator + No, !- Snow Indicator 21, !- Day of Month 1, !- Month WinterDesignDay, !- Day Type - 0, !- Daylight Saving Time Indicator - WetBulb, !- Humidity Indicating Type - , !- Humidity Indicating Day Schedule Name - DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type - , !- Dry-Bulb Temperature Range Modifier Schedule Name - AshraeClearSky; !- Solar Model Indicator + 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} + ; !- Dry-Bulb Temperature Range Modifier Type OS:SizingPeriod:DesignDay, - {ab722a10-2e37-4ef0-983a-14f23e04319c}, !- Handle + {a778c9f1-3848-4886-bb43-0bf89d2d6051}, !- Handle Sizing Period Design Day 2, !- Name 33.2, !- Maximum Dry-Bulb Temperature {C} 10.7, !- Daily Dry-Bulb Temperature Range {deltaC} - 23.8, !- Humidity Indicating Conditions at Maximum Dry-Bulb 99063, !- Barometric Pressure {Pa} 5.3, !- Wind Speed {m/s} 230, !- Wind Direction {deg} 1, !- Sky Clearness - 0, !- Rain Indicator - 0, !- Snow Indicator + No, !- Rain Indicator + No, !- Snow Indicator 21, !- Day of Month 7, !- Month SummerDesignDay, !- Day Type - 0, !- Daylight Saving Time Indicator - WetBulb, !- Humidity Indicating Type - , !- Humidity Indicating Day Schedule Name - DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type - , !- Dry-Bulb Temperature Range Modifier Schedule Name - AshraeClearSky; !- Solar Model Indicator + No, !- Daylight Saving Time Indicator + WetBulb, !- Humidity Condition Type + , !- Humidity Condition Day Schedule Name + 23.8, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + ; !- Dry-Bulb Temperature Range Modifier Type OS:ScheduleTypeLimits, - {5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Handle + {0cdecaef-a5c3-4880-8f94-24a886f49630}, !- Handle Temperature, !- Name -60, !- Lower Limit Value 200, !- Upper Limit Value @@ -124,37 +164,37 @@ OS:ScheduleTypeLimits, Temperature; !- Unit Type OS:DefaultScheduleSet, - {530f9623-af4a-491d-9109-39cfa4e2ff70}, !- Handle + {3632c462-98a9-4f32-ad9e-deca443535d4}, !- Handle Default Schedules, !- Name , !- Hours of Operation Schedule Name - {35d41c23-6394-45d7-b106-c7f7e4e44690}, !- Number of People Schedule Name - {2bb42ccb-e34b-4324-8f09-5156c3fbc2e9}, !- People Activity Level Schedule Name - {1b3e2a57-5b2d-4679-b7f3-70bb7ef55c9d}, !- Lighting Schedule Name - {5bbe0d01-a739-4142-9e8d-e9afcebe2cf0}, !- Electric Equipment Schedule Name - {17bce6fe-ee3a-46a7-b1f4-2779b03f2c1b}, !- Gas Equipment Schedule Name - {fdc257e0-8d8f-4817-b643-d7bd7f907b1c}, !- Hot Water Equipment Schedule Name - {0817a303-def9-43ca-87bc-67ba69219932}, !- Infiltration Schedule Name + {43c90e98-fa06-4bef-8975-6faabcf60384}, !- Number of People Schedule Name + {7b6d5bff-1be1-4d43-b9b8-9518767035d5}, !- People Activity Level Schedule Name + {8528f1bc-c9e6-49d8-ad66-74b1ef7c136d}, !- Lighting Schedule Name + {e9dd2f6a-3c0a-4099-ac84-ea4f893fc1f3}, !- Electric Equipment Schedule Name + {2b628ca6-4658-45f1-80d7-da6b76d0ea52}, !- Gas Equipment Schedule Name + {653e4221-dbb9-4748-a0e2-f88750344157}, !- Hot Water Equipment Schedule Name + {9b000b2a-8ec1-4ee6-87ce-401edc774146}, !- Infiltration Schedule Name , !- Steam Equipment Schedule Name ; !- Other Equipment Schedule Name OS:Schedule:Ruleset, - {35d41c23-6394-45d7-b106-c7f7e4e44690}, !- Handle + {43c90e98-fa06-4bef-8975-6faabcf60384}, !- Handle Medium Office Number of People Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name - {8c58dfc9-2203-4e39-b1d1-cddb1aec4625}, !- Default Day Schedule Name - {2ad4872c-04f0-4fb1-bd5a-e6c06804b414}; !- Summer Design Day Schedule Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name + {37e9edc8-39dd-4d24-a785-aa97976673fb}, !- Default Day Schedule Name + {4a02fc9b-0d8a-4c71-a88e-309127e40e86}; !- Summer Design Day Schedule Name OS:Schedule:Day, - {8c58dfc9-2203-4e39-b1d1-cddb1aec4625}, !- Handle + {37e9edc8-39dd-4d24-a785-aa97976673fb}, !- Handle Medium Office Number of People All Other Days Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Day, - {d7dc2489-089a-43f2-bce6-91912fc8bf31}, !- Handle + {1a86b7f4-ca7a-4529-9e7e-edd894068ef4}, !- Handle Medium Office Number of People Summer Design Day Schedule, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -169,9 +209,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 3 OS:Schedule:Day, - {2ad4872c-04f0-4fb1-bd5a-e6c06804b414}, !- Handle + {4a02fc9b-0d8a-4c71-a88e-309127e40e86}, !- Handle Medium Office Number of People Summer Design Day Schedule 1, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -184,11 +224,11 @@ OS:Schedule:Day, 0.05; !- Value Until Time 3 OS:Schedule:Rule, - {84d67a93-4f94-4b9c-97e8-7256e6a4a525}, !- Handle + {04079301-125b-4b8f-80cb-4a8cb465afe9}, !- Handle Medium Office Number of People Schedule Weekdays Rule, !- Name - {35d41c23-6394-45d7-b106-c7f7e4e44690}, !- Schedule Ruleset Name + {43c90e98-fa06-4bef-8975-6faabcf60384}, !- Schedule Ruleset Name 1, !- Rule Order - {d1e3b54e-956f-4cf9-ad46-6b016df057b5}, !- Day Schedule Name + {c7c66047-9ed8-437a-9b80-3a5fd3c94286}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -197,9 +237,9 @@ OS:Schedule:Rule, Yes; !- Apply Friday OS:Schedule:Day, - {d1e3b54e-956f-4cf9-ad46-6b016df057b5}, !- Handle + {c7c66047-9ed8-437a-9b80-3a5fd3c94286}, !- Handle Medium Office Number of People Weekdays Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -233,11 +273,11 @@ OS:Schedule:Day, 0.05; !- Value Until Time 10 OS:Schedule:Rule, - {38230b6f-22e1-42c1-b909-190a9e11ff3d}, !- Handle + {59e39865-06d6-4152-9a2b-89638366dc4c}, !- Handle Medium Office Number of People Schedule Saturday Rule, !- Name - {35d41c23-6394-45d7-b106-c7f7e4e44690}, !- Schedule Ruleset Name + {43c90e98-fa06-4bef-8975-6faabcf60384}, !- Schedule Ruleset Name 0, !- Rule Order - {22292183-b2fd-42ce-ae32-0c4bedefce79}, !- Day Schedule Name + {061f57e8-0795-4b0b-8408-673d3402cc59}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -247,9 +287,9 @@ OS:Schedule:Rule, Yes; !- Apply Saturday OS:Schedule:Day, - {22292183-b2fd-42ce-ae32-0c4bedefce79}, !- Handle + {061f57e8-0795-4b0b-8408-673d3402cc59}, !- Handle Medium Office Number of People Saturday Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -268,29 +308,29 @@ OS:Schedule:Day, 0; !- Value Until Time 5 OS:ScheduleTypeLimits, - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Handle + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Handle Fractional, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value Continuous; !- Numeric Type OS:Schedule:Ruleset, - {2bb42ccb-e34b-4324-8f09-5156c3fbc2e9}, !- Handle + {7b6d5bff-1be1-4d43-b9b8-9518767035d5}, !- Handle Medium Office People Activity Level Schedule, !- Name - {08da3382-abbe-41ff-a4b8-b8c1ccc07f52}, !- Schedule Type Limits Name - {be2217e5-f9a6-4145-82e4-fe6dea134fdf}; !- Default Day Schedule Name + {10af91b7-b61c-4f4b-85cd-8f8820d9155e}, !- Schedule Type Limits Name + {4619287c-ba18-4bcd-a423-56a077bcd23e}; !- Default Day Schedule Name OS:Schedule:Day, - {be2217e5-f9a6-4145-82e4-fe6dea134fdf}, !- Handle + {4619287c-ba18-4bcd-a423-56a077bcd23e}, !- Handle Medium Office People Activity Level All Days Schedule, !- Name - {08da3382-abbe-41ff-a4b8-b8c1ccc07f52}, !- Schedule Type Limits Name + {10af91b7-b61c-4f4b-85cd-8f8820d9155e}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 120; !- Value Until Time 1 OS:ScheduleTypeLimits, - {08da3382-abbe-41ff-a4b8-b8c1ccc07f52}, !- Handle + {10af91b7-b61c-4f4b-85cd-8f8820d9155e}, !- Handle ActivityLevel, !- Name 0, !- Lower Limit Value , !- Upper Limit Value @@ -298,24 +338,24 @@ OS:ScheduleTypeLimits, ActivityLevel; !- Unit Type OS:Schedule:Ruleset, - {1b3e2a57-5b2d-4679-b7f3-70bb7ef55c9d}, !- Handle + {8528f1bc-c9e6-49d8-ad66-74b1ef7c136d}, !- Handle Medium Office Lighting Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name - {52dc26b0-ebb2-41a7-be32-1329122c80d2}, !- Default Day Schedule Name - {735bcaaa-90b4-4638-9810-1140c5040126}, !- Summer Design Day Schedule Name - {2e222c53-7abb-4f2a-b857-579df1c90494}; !- Winter Design Day Schedule Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name + {b1c9ea37-a4d9-45e3-8ad2-28100afa500b}, !- Default Day Schedule Name + {0d2bb870-53b0-4e0c-8c98-6090f8af4d13}, !- Summer Design Day Schedule Name + {e6c5109c-4d6c-4d15-8ca8-b76c7444d13f}; !- Winter Design Day Schedule Name OS:Schedule:Day, - {52dc26b0-ebb2-41a7-be32-1329122c80d2}, !- Handle + {b1c9ea37-a4d9-45e3-8ad2-28100afa500b}, !- Handle Medium Office Lighting All Other Days Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.05; !- Value Until Time 1 OS:Schedule:Day, - {2ec688b9-ece2-477b-8517-990049371503}, !- Handle + {37492eaa-1fc5-42e9-b678-9cdcee33ccf1}, !- Handle Medium Office Lighting Summer Design Day Schedule, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -327,9 +367,9 @@ OS:Schedule:Day, 0; !- Value Until Time 2 OS:Schedule:Day, - {735bcaaa-90b4-4638-9810-1140c5040126}, !- Handle + {0d2bb870-53b0-4e0c-8c98-6090f8af4d13}, !- Handle Medium Office Lighting Summer Design Day Schedule 1, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -339,7 +379,7 @@ OS:Schedule:Day, 0; !- Value Until Time 2 OS:Schedule:Day, - {7694d260-3e08-4966-bdaf-fca94e097e46}, !- Handle + {8d617966-d6e8-4639-a05f-d0cb931cd23e}, !- Handle Medium Office Lighting Winter Design Day Schedule, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -348,20 +388,20 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {2e222c53-7abb-4f2a-b857-579df1c90494}, !- Handle + {e6c5109c-4d6c-4d15-8ca8-b76c7444d13f}, !- Handle Medium Office Lighting Winter Design Day Schedule 1, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Rule, - {8ee9ca74-9a1a-44fe-ba78-5daad1484425}, !- Handle + {9b2a2b39-33ad-4ede-a239-bea30080b3f4}, !- Handle Medium Office Lighting Schedule Weekdays Rule, !- Name - {1b3e2a57-5b2d-4679-b7f3-70bb7ef55c9d}, !- Schedule Ruleset Name + {8528f1bc-c9e6-49d8-ad66-74b1ef7c136d}, !- Schedule Ruleset Name 1, !- Rule Order - {b0f474ad-7ea5-41d4-a944-4ad9ad64068b}, !- Day Schedule Name + {8c6b52ee-7bdf-4d70-8c1c-23e016e5d8fa}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -370,9 +410,9 @@ OS:Schedule:Rule, Yes; !- Apply Friday OS:Schedule:Day, - {b0f474ad-7ea5-41d4-a944-4ad9ad64068b}, !- Handle + {8c6b52ee-7bdf-4d70-8c1c-23e016e5d8fa}, !- Handle Medium Office Lighting Weekdays Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 5, !- Hour 1 0, !- Minute 1 @@ -403,11 +443,11 @@ OS:Schedule:Day, 0.05; !- Value Until Time 9 OS:Schedule:Rule, - {4db8ca8f-75fd-4884-930b-df9f36c68d3d}, !- Handle + {d7ff465a-a287-4816-a506-ece1ad2d60ac}, !- Handle Medium Office Lighting Schedule Saturday Rule, !- Name - {1b3e2a57-5b2d-4679-b7f3-70bb7ef55c9d}, !- Schedule Ruleset Name + {8528f1bc-c9e6-49d8-ad66-74b1ef7c136d}, !- Schedule Ruleset Name 0, !- Rule Order - {a74bb354-c78f-4c0f-a8d3-f014b72f5a52}, !- Day Schedule Name + {1fd0e438-42d6-4613-86c5-2eb0da0bf2a8}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -417,9 +457,9 @@ OS:Schedule:Rule, Yes; !- Apply Saturday OS:Schedule:Day, - {a74bb354-c78f-4c0f-a8d3-f014b72f5a52}, !- Handle + {1fd0e438-42d6-4613-86c5-2eb0da0bf2a8}, !- Handle Medium Office Lighting Saturday Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -438,24 +478,24 @@ OS:Schedule:Day, 0.05; !- Value Until Time 5 OS:Schedule:Ruleset, - {5bbe0d01-a739-4142-9e8d-e9afcebe2cf0}, !- Handle + {e9dd2f6a-3c0a-4099-ac84-ea4f893fc1f3}, !- Handle Medium Office Electric Equipment Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name - {60425952-2855-41ce-89ae-fd00b5e20368}, !- Default Day Schedule Name - {cadacfcd-bb65-41e4-8c6f-40516a3ead6d}, !- Summer Design Day Schedule Name - {f6bdaa84-8b3e-4e2d-9909-edb8b75b9ac1}; !- Winter Design Day Schedule Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name + {7cebdfb6-49c4-44b7-aea6-d29e887fb59f}, !- Default Day Schedule Name + {4b88a76d-b345-40db-a74a-525876b0765d}, !- Summer Design Day Schedule Name + {2c2802b5-831f-44d0-b173-7eecef6dbb2b}; !- Winter Design Day Schedule Name OS:Schedule:Day, - {60425952-2855-41ce-89ae-fd00b5e20368}, !- Handle + {7cebdfb6-49c4-44b7-aea6-d29e887fb59f}, !- Handle Medium Office Electric Equipment All Other Days Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.3; !- Value Until Time 1 OS:Schedule:Day, - {517cee82-af8f-4bc8-b8c0-6aafaa719955}, !- Handle + {f2926b44-c56e-46a3-af4a-3bcf7dd6d556}, !- Handle Medium Office Electric Equipment Summer Design Day Schedule, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -467,9 +507,9 @@ OS:Schedule:Day, 0; !- Value Until Time 2 OS:Schedule:Day, - {cadacfcd-bb65-41e4-8c6f-40516a3ead6d}, !- Handle + {4b88a76d-b345-40db-a74a-525876b0765d}, !- Handle Medium Office Electric Equipment Summer Design Day Schedule 1, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -479,7 +519,7 @@ OS:Schedule:Day, 0; !- Value Until Time 2 OS:Schedule:Day, - {b6d14b80-ba6e-4844-b274-57f6a8068d6d}, !- Handle + {d7a4b95d-fc55-4da3-9cae-5a88844417fd}, !- Handle Medium Office Electric Equipment Winter Design Day Schedule, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -488,20 +528,20 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {f6bdaa84-8b3e-4e2d-9909-edb8b75b9ac1}, !- Handle + {2c2802b5-831f-44d0-b173-7eecef6dbb2b}, !- Handle Medium Office Electric Equipment Winter Design Day Schedule 1, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Rule, - {fc3c0917-2cfc-49b2-9500-534807f71b81}, !- Handle + {3558a571-5896-44dc-92c4-1720a18bf6b6}, !- Handle Medium Office Electric Equipment Schedule Weekdays Rule, !- Name - {5bbe0d01-a739-4142-9e8d-e9afcebe2cf0}, !- Schedule Ruleset Name + {e9dd2f6a-3c0a-4099-ac84-ea4f893fc1f3}, !- Schedule Ruleset Name 1, !- Rule Order - {f68a15c8-a377-48d7-b8fe-d903355cf2d7}, !- Day Schedule Name + {b4dda49c-1eda-4db0-bf21-f1f2eef6391e}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -510,9 +550,9 @@ OS:Schedule:Rule, Yes; !- Apply Friday OS:Schedule:Day, - {f68a15c8-a377-48d7-b8fe-d903355cf2d7}, !- Handle + {b4dda49c-1eda-4db0-bf21-f1f2eef6391e}, !- Handle Medium Office Electric Equipment Weekdays Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -540,11 +580,11 @@ OS:Schedule:Day, 0.4; !- Value Until Time 8 OS:Schedule:Rule, - {b1750ba2-6a17-4cdc-bcaa-cd99babdec60}, !- Handle + {3c1dec07-4153-4fdc-ad33-afd29ced5587}, !- Handle Medium Office Electric Equipment Schedule Saturday Rule, !- Name - {5bbe0d01-a739-4142-9e8d-e9afcebe2cf0}, !- Schedule Ruleset Name + {e9dd2f6a-3c0a-4099-ac84-ea4f893fc1f3}, !- Schedule Ruleset Name 0, !- Rule Order - {bc0c90c8-a38f-45cd-bd98-b13da679e5e0}, !- Day Schedule Name + {c27200ca-8632-4afb-b610-655c9e8ee5b2}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -554,9 +594,9 @@ OS:Schedule:Rule, Yes; !- Apply Saturday OS:Schedule:Day, - {bc0c90c8-a38f-45cd-bd98-b13da679e5e0}, !- Handle + {c27200ca-8632-4afb-b610-655c9e8ee5b2}, !- Handle Medium Office Electric Equipment Saturday Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -575,24 +615,24 @@ OS:Schedule:Day, 0.3; !- Value Until Time 5 OS:Schedule:Ruleset, - {17bce6fe-ee3a-46a7-b1f4-2779b03f2c1b}, !- Handle + {2b628ca6-4658-45f1-80d7-da6b76d0ea52}, !- Handle Medium Office Gas Equipment Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name - {61c7a887-87f1-418d-9253-2811684c428b}, !- Default Day Schedule Name - {d069537b-4890-4227-a189-e7d9f4952c91}, !- Summer Design Day Schedule Name - {e78b0b24-59fe-40ed-a063-872a0a7d3c9b}; !- Winter Design Day Schedule Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name + {bc24ca57-b0ac-4bac-a8eb-382c8b4e19e3}, !- Default Day Schedule Name + {285ba726-406f-4c5a-b11f-08821bb98a41}, !- Summer Design Day Schedule Name + {533f6ac4-958b-4c31-82d8-25edbe2e3872}; !- Winter Design Day Schedule Name OS:Schedule:Day, - {61c7a887-87f1-418d-9253-2811684c428b}, !- Handle + {bc24ca57-b0ac-4bac-a8eb-382c8b4e19e3}, !- Handle Medium Office Gas Equipment All Other Days Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0.3; !- Value Until Time 1 OS:Schedule:Day, - {9521fd14-7124-44a9-a468-436a025d6ad5}, !- Handle + {666bedc8-848d-4981-a862-3bcc6acf375e}, !- Handle Medium Office Gas Equipment Summer Design Day Schedule, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -604,9 +644,9 @@ OS:Schedule:Day, 0; !- Value Until Time 2 OS:Schedule:Day, - {d069537b-4890-4227-a189-e7d9f4952c91}, !- Handle + {285ba726-406f-4c5a-b11f-08821bb98a41}, !- Handle Medium Office Gas Equipment Summer Design Day Schedule 1, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -616,7 +656,7 @@ OS:Schedule:Day, 0; !- Value Until Time 2 OS:Schedule:Day, - {221ec613-5505-4bff-9908-ef3663e0f90f}, !- Handle + {a98ea696-0349-465e-8c4b-67be5dfd603e}, !- Handle Medium Office Gas Equipment Winter Design Day Schedule, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -625,20 +665,20 @@ OS:Schedule:Day, 0; !- Value Until Time 1 OS:Schedule:Day, - {e78b0b24-59fe-40ed-a063-872a0a7d3c9b}, !- Handle + {533f6ac4-958b-4c31-82d8-25edbe2e3872}, !- Handle Medium Office Gas Equipment Winter Design Day Schedule 1, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 0; !- Value Until Time 1 OS:Schedule:Rule, - {8086c332-a134-49de-8815-7d57e0516c4d}, !- Handle + {007ab571-779f-48f6-9429-44836bea19d2}, !- Handle Medium Office Gas Equipment Schedule Weekdays Rule, !- Name - {17bce6fe-ee3a-46a7-b1f4-2779b03f2c1b}, !- Schedule Ruleset Name + {2b628ca6-4658-45f1-80d7-da6b76d0ea52}, !- Schedule Ruleset Name 1, !- Rule Order - {0c9689a2-4ded-435e-9e24-16147cbadae2}, !- Day Schedule Name + {2669b5a8-dc27-457a-889f-a2f2b026843b}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -647,9 +687,9 @@ OS:Schedule:Rule, Yes; !- Apply Friday OS:Schedule:Day, - {0c9689a2-4ded-435e-9e24-16147cbadae2}, !- Handle + {2669b5a8-dc27-457a-889f-a2f2b026843b}, !- Handle Medium Office Gas Equipment Weekdays Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 8, !- Hour 1 0, !- Minute 1 @@ -677,11 +717,11 @@ OS:Schedule:Day, 0.4; !- Value Until Time 8 OS:Schedule:Rule, - {18bd1011-4b0b-424f-9ca9-768af75c7fe1}, !- Handle + {165bd924-8e47-43a7-ae30-1f598e27c335}, !- Handle Medium Office Gas Equipment Schedule Saturday Rule, !- Name - {17bce6fe-ee3a-46a7-b1f4-2779b03f2c1b}, !- Schedule Ruleset Name + {2b628ca6-4658-45f1-80d7-da6b76d0ea52}, !- Schedule Ruleset Name 0, !- Rule Order - {f792b5be-c7f5-4596-9f1e-b8f098488d77}, !- Day Schedule Name + {07d3b8ab-82b4-4f62-ae0f-84c881a912b6}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -691,9 +731,9 @@ OS:Schedule:Rule, Yes; !- Apply Saturday OS:Schedule:Day, - {f792b5be-c7f5-4596-9f1e-b8f098488d77}, !- Handle + {07d3b8ab-82b4-4f62-ae0f-84c881a912b6}, !- Handle Medium Office Gas Equipment Saturday Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -712,17 +752,17 @@ OS:Schedule:Day, 0.3; !- Value Until Time 5 OS:Schedule:Ruleset, - {fdc257e0-8d8f-4817-b643-d7bd7f907b1c}, !- Handle + {653e4221-dbb9-4748-a0e2-f88750344157}, !- Handle Medium Office Hot Water Equipment Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name - {eab3f7c6-a85a-4c94-87f4-7e5048db057d}, !- Default Day Schedule Name - {bba4f310-6433-48c8-9121-340699cb2bd8}, !- Summer Design Day Schedule Name - {2d842ac5-7650-4aa9-b4bf-c4e377a94dbc}; !- Winter Design Day Schedule Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name + {f17a412c-3b00-4aae-8ba7-8d06b51b2c64}, !- Default Day Schedule Name + {bf0e044b-4a2b-4b9a-8b0e-97dc5eb5c098}, !- Summer Design Day Schedule Name + {ce1a3e65-c78e-4524-88d5-1386109767eb}; !- Winter Design Day Schedule Name OS:Schedule:Day, - {eab3f7c6-a85a-4c94-87f4-7e5048db057d}, !- Handle + {f17a412c-3b00-4aae-8ba7-8d06b51b2c64}, !- Handle Medium Office Hot Water Equipment Default Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 5, !- Hour 1 0, !- Minute 1 @@ -753,7 +793,7 @@ OS:Schedule:Day, 0.04; !- Value Until Time 9 OS:Schedule:Day, - {77eb4f53-1834-4131-92db-e9b2b0f79ba1}, !- Handle + {2d32e2fe-8d1a-4c8c-9435-2c34869a3423}, !- Handle Medium Office Hot Water Equipment Summer Design Day Schedule, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -816,9 +856,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 19 OS:Schedule:Day, - {bba4f310-6433-48c8-9121-340699cb2bd8}, !- Handle + {bf0e044b-4a2b-4b9a-8b0e-97dc5eb5c098}, !- Handle Medium Office Hot Water Equipment Summer Design Day Schedule 1, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 5, !- Hour 1 0, !- Minute 1 @@ -879,11 +919,11 @@ OS:Schedule:Day, 0.05; !- Value Until Time 19 OS:Schedule:Rule, - {e7f4775d-e709-4b0f-a9de-585e7f8de071}, !- Handle + {8ff9d76c-321e-4389-892d-f966e7245e9e}, !- Handle Medium Office Hot Water Schedule Weekdays Rule, !- Name - {fdc257e0-8d8f-4817-b643-d7bd7f907b1c}, !- Schedule Ruleset Name + {653e4221-dbb9-4748-a0e2-f88750344157}, !- Schedule Ruleset Name 1, !- Rule Order - {ecc5b92e-c700-45dd-9c3a-c89d744aceb7}, !- Day Schedule Name + {f3905be3-56cc-4aba-8946-abd64201cabc}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -892,9 +932,9 @@ OS:Schedule:Rule, Yes; !- Apply Friday OS:Schedule:Day, - {ecc5b92e-c700-45dd-9c3a-c89d744aceb7}, !- Handle + {f3905be3-56cc-4aba-8946-abd64201cabc}, !- Handle Medium Office Hot Water Equipment Weekdays Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 5, !- Hour 1 0, !- Minute 1 @@ -955,7 +995,7 @@ OS:Schedule:Day, 0.05; !- Value Until Time 19 OS:Schedule:Day, - {95c22007-35ea-49b9-a888-40989e6f9154}, !- Handle + {d7e1ae04-d43b-4ac6-976d-70f246bd1aed}, !- Handle Medium Office Hot Water Equipment Winter Design Day Schedule, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -1009,9 +1049,9 @@ OS:Schedule:Day, 0.05; !- Value Until Time 16 OS:Schedule:Day, - {2d842ac5-7650-4aa9-b4bf-c4e377a94dbc}, !- Handle + {ce1a3e65-c78e-4524-88d5-1386109767eb}, !- Handle Medium Office Hot Water Equipment Winter Design Day Schedule 1, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 5, !- Hour 1 0, !- Minute 1 @@ -1063,11 +1103,11 @@ OS:Schedule:Day, 0.05; !- Value Until Time 16 OS:Schedule:Rule, - {65496630-d30e-469e-88d7-8a621f284675}, !- Handle + {e2deadcb-17c0-4cd8-b415-c4ec64b3cefc}, !- Handle Medium Office Hot Water Schedule Saturday Rule, !- Name - {fdc257e0-8d8f-4817-b643-d7bd7f907b1c}, !- Schedule Ruleset Name + {653e4221-dbb9-4748-a0e2-f88750344157}, !- Schedule Ruleset Name 0, !- Rule Order - {6ebd9e71-8edf-4d97-895a-5d4dfdada090}, !- Day Schedule Name + {17d23c2c-3002-47e7-b612-86417d70eb9e}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -1077,9 +1117,9 @@ OS:Schedule:Rule, Yes; !- Apply Saturday OS:Schedule:Day, - {6ebd9e71-8edf-4d97-895a-5d4dfdada090}, !- Handle + {17d23c2c-3002-47e7-b612-86417d70eb9e}, !- Handle Medium Office Hot Water Equipment Saturday Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 5, !- Hour 1 0, !- Minute 1 @@ -1131,24 +1171,24 @@ OS:Schedule:Day, 0.05; !- Value Until Time 16 OS:Schedule:Ruleset, - {0817a303-def9-43ca-87bc-67ba69219932}, !- Handle + {9b000b2a-8ec1-4ee6-87ce-401edc774146}, !- Handle Medium Office Infiltration Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name - {0f98fdc3-df16-4be0-b67a-a250b0c59707}, !- Default Day Schedule Name - {87884ef9-074d-4c15-81f4-6ea06454e067}, !- Summer Design Day Schedule Name - {4ef554fc-8338-4a16-a81c-e30e49d952b2}; !- Winter Design Day Schedule Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name + {b6495953-ddf0-4ba2-aadd-3b188c7f95ab}, !- Default Day Schedule Name + {0dde1291-fa54-46b9-b0a6-4a48dec3ccee}, !- Summer Design Day Schedule Name + {5e2af19e-5e82-48de-aaa0-67b025518f5d}; !- Winter Design Day Schedule Name OS:Schedule:Day, - {0f98fdc3-df16-4be0-b67a-a250b0c59707}, !- Handle + {b6495953-ddf0-4ba2-aadd-3b188c7f95ab}, !- Handle Medium Office Infiltration Default Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 1; !- Value Until Time 1 OS:Schedule:Day, - {5172715a-3080-4bf6-9f2b-bfc528c12495}, !- Handle + {10cadf3a-6b85-4007-ac74-43670905d0af}, !- Handle Medium Office Infiltration Summer Design Day Schedule, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -1163,9 +1203,9 @@ OS:Schedule:Day, 1; !- Value Until Time 3 OS:Schedule:Day, - {87884ef9-074d-4c15-81f4-6ea06454e067}, !- Handle + {0dde1291-fa54-46b9-b0a6-4a48dec3ccee}, !- Handle Medium Office Infiltration Summer Design Day Schedule 1, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -1178,11 +1218,11 @@ OS:Schedule:Day, 1; !- Value Until Time 3 OS:Schedule:Rule, - {79ccd7b5-8154-4fb3-89b0-ba883d843a0c}, !- Handle + {a85eafc9-b254-4198-af65-b02e8ccf8154}, !- Handle Medium Office Infiltration Schedule Weekdays Rule, !- Name - {0817a303-def9-43ca-87bc-67ba69219932}, !- Schedule Ruleset Name + {9b000b2a-8ec1-4ee6-87ce-401edc774146}, !- Schedule Ruleset Name 1, !- Rule Order - {7f990e4e-a912-40e7-b7f5-7112e7a02b1c}, !- Day Schedule Name + {6c01121f-31d9-4152-8a10-cced770f77ca}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -1191,9 +1231,9 @@ OS:Schedule:Rule, Yes; !- Apply Friday OS:Schedule:Day, - {7f990e4e-a912-40e7-b7f5-7112e7a02b1c}, !- Handle + {6c01121f-31d9-4152-8a10-cced770f77ca}, !- Handle Medium Office Infiltration Weekdays Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -1206,7 +1246,7 @@ OS:Schedule:Day, 1; !- Value Until Time 3 OS:Schedule:Day, - {ec9f8f21-ee0d-4eb8-b3a2-4fc356ee5386}, !- Handle + {85203073-b9b0-4b24-9c0f-bc8871f030c8}, !- Handle Medium Office Infiltration Winter Design Day Schedule, !- Name , !- Schedule Type Limits Name , !- Interpolate to Timestep @@ -1221,9 +1261,9 @@ OS:Schedule:Day, 1; !- Value Until Time 3 OS:Schedule:Day, - {4ef554fc-8338-4a16-a81c-e30e49d952b2}, !- Handle + {5e2af19e-5e82-48de-aaa0-67b025518f5d}, !- Handle Medium Office Infiltration Winter Design Day Schedule 1, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -1236,11 +1276,11 @@ OS:Schedule:Day, 1; !- Value Until Time 3 OS:Schedule:Rule, - {b3494ed9-a1f5-4dea-8c75-946d3483e33e}, !- Handle + {e03f90c8-b354-45b7-af18-f97d803bfc6f}, !- Handle Medium Office Infiltration Schedule Saturday Rule, !- Name - {0817a303-def9-43ca-87bc-67ba69219932}, !- Schedule Ruleset Name + {9b000b2a-8ec1-4ee6-87ce-401edc774146}, !- Schedule Ruleset Name 0, !- Rule Order - {41c8d5cf-e6de-4e57-8b7e-e1a5a55bc0e8}, !- Day Schedule Name + {73860979-e5b9-4537-920e-1e9afa86ff99}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -1250,9 +1290,9 @@ OS:Schedule:Rule, Yes; !- Apply Saturday OS:Schedule:Day, - {41c8d5cf-e6de-4e57-8b7e-e1a5a55bc0e8}, !- Handle + {73860979-e5b9-4537-920e-1e9afa86ff99}, !- Handle Medium Office Infiltration Saturday Schedule, !- Name - {5fd8c602-e708-4659-b6b9-f4780954b948}, !- Schedule Type Limits Name + {9e4ca21d-f72e-4f78-9fb7-d7a1104ac3b7}, !- Schedule Type Limits Name , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -1265,25 +1305,25 @@ OS:Schedule:Day, 1; !- Value Until Time 3 OS:Schedule:Ruleset, - {df3e3633-7709-4d03-8b8c-d2380d3bf15c}, !- Handle + {1abb60bb-dee4-435c-9714-2224c4f61145}, !- Handle Medium Office Cooling Setpoint Schedule, !- Name - {5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name - {59c29b3f-5ec2-41eb-ad03-9f8d8a3367e1}, !- Default Day Schedule Name - {228eb914-1741-4b49-924b-2cd109408353}; !- Summer Design Day Schedule Name + {0cdecaef-a5c3-4880-8f94-24a886f49630}, !- Schedule Type Limits Name + {f44e9cec-e09a-4205-bfe1-5508b14c4cc9}, !- Default Day Schedule Name + {72f4985b-2d39-475a-8bfd-9cfd54b47299}; !- Summer Design Day Schedule Name OS:Schedule:Day, - {59c29b3f-5ec2-41eb-ad03-9f8d8a3367e1}, !- Handle + {f44e9cec-e09a-4205-bfe1-5508b14c4cc9}, !- Handle Medium Office Cooling Setpoint All Other Days Schedule, !- Name - {5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name + {0cdecaef-a5c3-4880-8f94-24a886f49630}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 26.7; !- Value Until Time 1 OS:Schedule:Day, - {f7b9f15f-f032-440d-a1dd-1bdbcba48a08}, !- Handle + {3decaeea-a66d-4484-882d-1420eb5a8e0f}, !- Handle Medium Office Cooling Setpoint Summer Design Day Schedule, !- Name - {5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name + {0cdecaef-a5c3-4880-8f94-24a886f49630}, !- Schedule Type Limits Name , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -1296,9 +1336,9 @@ OS:Schedule:Day, 26.7; !- Value Until Time 3 OS:Schedule:Day, - {228eb914-1741-4b49-924b-2cd109408353}, !- Handle + {72f4985b-2d39-475a-8bfd-9cfd54b47299}, !- Handle Medium Office Cooling Setpoint Summer Design Day Schedule 1, !- Name - {5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name + {0cdecaef-a5c3-4880-8f94-24a886f49630}, !- Schedule Type Limits Name , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -1311,11 +1351,11 @@ OS:Schedule:Day, 26.7; !- Value Until Time 3 OS:Schedule:Rule, - {16d21843-31f7-40d1-ade1-299b8c0e9239}, !- Handle + {cfc836af-74a8-4092-b02b-d7d76d91fbd4}, !- Handle Medium Office Cooling Setpoint Schedule Weekdays Rule, !- Name - {df3e3633-7709-4d03-8b8c-d2380d3bf15c}, !- Schedule Ruleset Name + {1abb60bb-dee4-435c-9714-2224c4f61145}, !- Schedule Ruleset Name 1, !- Rule Order - {55522280-9c6f-4340-b3c1-c364ad05f4a4}, !- Day Schedule Name + {8bf5c59b-3940-430d-9dc9-98612ea99b9a}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -1324,9 +1364,9 @@ OS:Schedule:Rule, Yes; !- Apply Friday OS:Schedule:Day, - {55522280-9c6f-4340-b3c1-c364ad05f4a4}, !- Handle + {8bf5c59b-3940-430d-9dc9-98612ea99b9a}, !- Handle Medium Office Cooling Setpoint Weekdays Schedule, !- Name - {5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name + {0cdecaef-a5c3-4880-8f94-24a886f49630}, !- Schedule Type Limits Name , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -1339,11 +1379,11 @@ OS:Schedule:Day, 26.7; !- Value Until Time 3 OS:Schedule:Rule, - {9097a283-83f9-4812-b53b-962f4f83e1e0}, !- Handle + {376fcc11-bb70-469b-9ff5-b2419d34f5b3}, !- Handle Medium Office Cooling Setpoint Schedule Saturday Rule, !- Name - {df3e3633-7709-4d03-8b8c-d2380d3bf15c}, !- Schedule Ruleset Name + {1abb60bb-dee4-435c-9714-2224c4f61145}, !- Schedule Ruleset Name 0, !- Rule Order - {eafd19d4-e4ae-4975-9d86-56fc38df748c}, !- Day Schedule Name + {23fc8a11-7c8a-4113-9c3c-937a2d813fec}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -1353,9 +1393,9 @@ OS:Schedule:Rule, Yes; !- Apply Saturday OS:Schedule:Day, - {eafd19d4-e4ae-4975-9d86-56fc38df748c}, !- Handle + {23fc8a11-7c8a-4113-9c3c-937a2d813fec}, !- Handle Medium Office Cooling Setpoint Saturday Schedule, !- Name - {5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name + {0cdecaef-a5c3-4880-8f94-24a886f49630}, !- Schedule Type Limits Name , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -1368,46 +1408,46 @@ OS:Schedule:Day, 26.7; !- Value Until Time 3 OS:Schedule:Ruleset, - {d9207542-d5a1-478e-8e00-0f7fa8d8bd28}, !- Handle + {1e04180d-e906-4d30-ba48-3029f18b89f0}, !- Handle Medium Office Heating Setpoint Schedule, !- Name - {5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name - {887a72c6-5343-441e-961d-7641a93495dd}, !- Default Day Schedule Name + {0cdecaef-a5c3-4880-8f94-24a886f49630}, !- Schedule Type Limits Name + {fdc55602-af79-4b89-915a-7a1eaf1ab4ee}, !- Default Day Schedule Name , !- Summer Design Day Schedule Name - {0cc81ba7-2cb4-4014-bc12-3e55c577deb0}; !- Winter Design Day Schedule Name + {a93dcce7-a125-40b2-9434-e9bba34fb854}; !- Winter Design Day Schedule Name OS:Schedule:Day, - {887a72c6-5343-441e-961d-7641a93495dd}, !- Handle + {fdc55602-af79-4b89-915a-7a1eaf1ab4ee}, !- Handle Medium Office Heating Setpoint All Other Days Schedule, !- Name - {5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name + {0cdecaef-a5c3-4880-8f94-24a886f49630}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 15.6; !- Value Until Time 1 OS:Schedule:Day, - {0cb35b54-5636-41cc-8e23-4b38e5f98f70}, !- Handle + {3bd4312b-7b0a-4772-aea2-6ffe032d7749}, !- Handle Medium Office Heating Setpoint Winter Design Day Schedule, !- Name - {5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name + {0cdecaef-a5c3-4880-8f94-24a886f49630}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 21; !- Value Until Time 1 OS:Schedule:Day, - {0cc81ba7-2cb4-4014-bc12-3e55c577deb0}, !- Handle + {a93dcce7-a125-40b2-9434-e9bba34fb854}, !- Handle Medium Office Heating Setpoint Winter Design Day Schedule 1, !- Name - {5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name + {0cdecaef-a5c3-4880-8f94-24a886f49630}, !- Schedule Type Limits Name , !- Interpolate to Timestep 24, !- Hour 1 0, !- Minute 1 21; !- Value Until Time 1 OS:Schedule:Rule, - {0eb310a1-12bc-46a8-a645-5fbae689edf8}, !- Handle + {5b950327-1f8e-4714-af23-96877745a7a1}, !- Handle Medium Office Heating Setpoint Schedule Weekdays Rule, !- Name - {d9207542-d5a1-478e-8e00-0f7fa8d8bd28}, !- Schedule Ruleset Name + {1e04180d-e906-4d30-ba48-3029f18b89f0}, !- Schedule Ruleset Name 1, !- Rule Order - {2a7922b3-0ec5-491d-a8c3-38b0af6b6fa0}, !- Day Schedule Name + {68411f5f-99b5-45fb-a878-cab02f480614}, !- Day Schedule Name , !- Apply Sunday Yes, !- Apply Monday Yes, !- Apply Tuesday @@ -1416,9 +1456,9 @@ OS:Schedule:Rule, Yes; !- Apply Friday OS:Schedule:Day, - {2a7922b3-0ec5-491d-a8c3-38b0af6b6fa0}, !- Handle + {68411f5f-99b5-45fb-a878-cab02f480614}, !- Handle Medium Office Heating Setpoint Weekdays Schedule, !- Name - {5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name + {0cdecaef-a5c3-4880-8f94-24a886f49630}, !- Schedule Type Limits Name , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -1431,11 +1471,11 @@ OS:Schedule:Day, 15.6; !- Value Until Time 3 OS:Schedule:Rule, - {a86910b6-5b04-4868-9a70-7eba180d0706}, !- Handle + {1e69f261-9aca-469f-a21a-b92c4abd54ab}, !- Handle Medium Office Heating Setpoint Schedule Saturday Rule, !- Name - {d9207542-d5a1-478e-8e00-0f7fa8d8bd28}, !- Schedule Ruleset Name + {1e04180d-e906-4d30-ba48-3029f18b89f0}, !- Schedule Ruleset Name 0, !- Rule Order - {b41e5d08-c913-43f6-aa39-0967e399b681}, !- Day Schedule Name + {4f953ef8-d306-413d-8bf9-386c93b6851d}, !- Day Schedule Name , !- Apply Sunday , !- Apply Monday , !- Apply Tuesday @@ -1445,9 +1485,9 @@ OS:Schedule:Rule, Yes; !- Apply Saturday OS:Schedule:Day, - {b41e5d08-c913-43f6-aa39-0967e399b681}, !- Handle + {4f953ef8-d306-413d-8bf9-386c93b6851d}, !- Handle Medium Office Heating Setpoint Saturday Schedule, !- Name - {5c6ddcc6-ada7-47e2-bf93-0c9e8ff94915}, !- Schedule Type Limits Name + {0cdecaef-a5c3-4880-8f94-24a886f49630}, !- Schedule Type Limits Name , !- Interpolate to Timestep 6, !- Hour 1 0, !- Minute 1 @@ -1460,65 +1500,66 @@ OS:Schedule:Day, 15.6; !- Value Until Time 3 OS:DefaultConstructionSet, - {c50911a9-e76e-4759-bb87-25716b1a78da}, !- Handle + {2a1b586c-0a8a-4876-99c1-9ce6e36804ce}, !- Handle Default Constructions, !- Name - {fc66023b-7db0-4a01-85ee-dcbb644dea02}, !- Default Exterior Surface Constructions Name - {120c6117-aade-4d6a-843e-e619187441d6}, !- Default Interior Surface Constructions Name - {a70921cd-dee0-4c00-9621-9d357557fc17}, !- Default Ground Contact Surface Constructions Name - {e69fe22a-82bb-4ce9-ab85-ccce546c3867}, !- Default Exterior SubSurface Constructions Name - {e0614ef6-411f-4119-b2f0-8bbdf663fc8d}, !- Default Interior SubSurface Constructions Name - {b2cbb0ea-6535-4d3c-956b-742c1f3ae382}, !- Interior Partition Construction Name + {3a0412f8-8621-43b4-a9a2-19956687dd9f}, !- Default Exterior Surface Constructions Name + {2adc8a79-c86e-42cc-b946-e058ca01a130}, !- Default Interior Surface Constructions Name + {de37d044-6da5-4e6a-80c5-b727a5c2d609}, !- Default Ground Contact Surface Constructions Name + {be83f5b0-e193-4027-b411-57377637a84a}, !- Default Exterior SubSurface Constructions Name + {e7381364-143b-4991-bd46-c86212d7ce7c}, !- Default Interior SubSurface Constructions Name + {63902797-6016-4719-915f-0ce3963bbf26}, !- Interior Partition Construction Name , !- Space Shading Construction Name , !- Building Shading Construction Name - ; !- Site Shading Construction Name + , !- Site Shading Construction Name + ; !- Adiabatic Surface Construction Name OS:DefaultSurfaceConstructions, - {fc66023b-7db0-4a01-85ee-dcbb644dea02}, !- Handle + {3a0412f8-8621-43b4-a9a2-19956687dd9f}, !- Handle Exterior Surface Constructions, !- Name , !- Floor Construction Name - {caa58376-d24d-4bc4-8d0f-3a92bce53f09}, !- Wall Construction Name - {78a76174-c95d-4b69-8a5f-7815517db3f6}; !- Roof Ceiling Construction Name + {1900d672-c742-489d-8f9b-1dc19b83c7f7}, !- Wall Construction Name + {de9aef6f-0b18-4309-a8e9-4d08dad99652}; !- Roof Ceiling Construction Name OS:DefaultSurfaceConstructions, - {120c6117-aade-4d6a-843e-e619187441d6}, !- Handle + {2adc8a79-c86e-42cc-b946-e058ca01a130}, !- Handle Interior Surface Constructions, !- Name - {7f836c9e-0a6c-47d4-b85a-9dae019d8019}, !- Floor Construction Name - {56743cf8-5bbe-469c-a829-251ef9d4912a}, !- Wall Construction Name - {c42029ff-8c7f-4804-8017-d32191580342}; !- Roof Ceiling Construction Name + {9ec5b0d8-bdc0-4b21-8862-3f464a1023e1}, !- Floor Construction Name + {f591d9b9-8223-43f1-bfa7-15df061fb66b}, !- Wall Construction Name + {9f28a47b-e728-4ea6-ae10-fc4a3c8509b9}; !- Roof Ceiling Construction Name OS:DefaultSurfaceConstructions, - {a70921cd-dee0-4c00-9621-9d357557fc17}, !- Handle + {de37d044-6da5-4e6a-80c5-b727a5c2d609}, !- Handle Ground Contact Surface Constructions, !- Name - {0a92b73e-9d8f-4ee2-b899-8055c9924bd1}, !- Floor Construction Name + {1d1475ba-2f70-44d3-b41d-8b327c95f12b}, !- Floor Construction Name , !- Wall Construction Name ; !- Roof Ceiling Construction Name OS:DefaultSubSurfaceConstructions, - {e69fe22a-82bb-4ce9-ab85-ccce546c3867}, !- Handle + {be83f5b0-e193-4027-b411-57377637a84a}, !- Handle Exterior SubSurface Constructions, !- Name - {b6557f5b-55b5-49cd-ac39-6648022974d0}, !- Fixed Window Construction Name - {b6557f5b-55b5-49cd-ac39-6648022974d0}, !- Operable Window Construction Name - {c6c2add5-aa1f-4e15-bd7a-0492aa07a418}, !- Door Construction Name - {b6557f5b-55b5-49cd-ac39-6648022974d0}, !- Glass Door Construction Name - {c6c2add5-aa1f-4e15-bd7a-0492aa07a418}, !- Overhead Door Construction Name - {b6557f5b-55b5-49cd-ac39-6648022974d0}, !- Skylight Construction Name - {b6557f5b-55b5-49cd-ac39-6648022974d0}, !- Tubular Daylight Dome Construction Name - {b6557f5b-55b5-49cd-ac39-6648022974d0}; !- Tubular Daylight Diffuser Construction Name + {c8bc82c1-4ef5-4e6e-a3c2-f9727b57c0bd}, !- Fixed Window Construction Name + {c8bc82c1-4ef5-4e6e-a3c2-f9727b57c0bd}, !- Operable Window Construction Name + {689b671e-018a-4e04-aa91-05273a49a672}, !- Door Construction Name + {c8bc82c1-4ef5-4e6e-a3c2-f9727b57c0bd}, !- Glass Door Construction Name + {689b671e-018a-4e04-aa91-05273a49a672}, !- Overhead Door Construction Name + {c8bc82c1-4ef5-4e6e-a3c2-f9727b57c0bd}, !- Skylight Construction Name + {c8bc82c1-4ef5-4e6e-a3c2-f9727b57c0bd}, !- Tubular Daylight Dome Construction Name + {c8bc82c1-4ef5-4e6e-a3c2-f9727b57c0bd}; !- Tubular Daylight Diffuser Construction Name OS:DefaultSubSurfaceConstructions, - {e0614ef6-411f-4119-b2f0-8bbdf663fc8d}, !- Handle + {e7381364-143b-4991-bd46-c86212d7ce7c}, !- Handle Interior SubSurface Constructions, !- Name - {e8b31698-c56b-477c-a4ff-0b4afcae51f0}, !- Fixed Window Construction Name - {e8b31698-c56b-477c-a4ff-0b4afcae51f0}, !- Operable Window Construction Name - {d71a482d-3cf7-4558-95f5-bd7d6f6e592c}, !- Door Construction Name - {e8b31698-c56b-477c-a4ff-0b4afcae51f0}, !- Glass Door Construction Name - {d71a482d-3cf7-4558-95f5-bd7d6f6e592c}, !- Overhead Door Construction Name - {e8b31698-c56b-477c-a4ff-0b4afcae51f0}, !- Skylight Construction Name - {e8b31698-c56b-477c-a4ff-0b4afcae51f0}, !- Tubular Daylight Dome Construction Name - {e8b31698-c56b-477c-a4ff-0b4afcae51f0}; !- Tubular Daylight Diffuser Construction Name + {5d4558ba-be08-4d6a-83fa-81decd3eadf9}, !- Fixed Window Construction Name + {5d4558ba-be08-4d6a-83fa-81decd3eadf9}, !- Operable Window Construction Name + {7e0981c0-22a9-4411-bbee-b16ea368864e}, !- Door Construction Name + {5d4558ba-be08-4d6a-83fa-81decd3eadf9}, !- Glass Door Construction Name + {7e0981c0-22a9-4411-bbee-b16ea368864e}, !- Overhead Door Construction Name + {5d4558ba-be08-4d6a-83fa-81decd3eadf9}, !- Skylight Construction Name + {5d4558ba-be08-4d6a-83fa-81decd3eadf9}, !- Tubular Daylight Dome Construction Name + {5d4558ba-be08-4d6a-83fa-81decd3eadf9}; !- Tubular Daylight Diffuser Construction Name OS:Material, - {72bec73f-619f-4f5a-815a-a7a76706d6fc}, !- Handle + {952357be-b4aa-4287-954c-cbd1423361fd}, !- Handle M01 100mm brick, !- Name MediumRough, !- Roughness 0.1016, !- Thickness {m} @@ -1527,7 +1568,7 @@ OS:Material, 790; !- Specific Heat {J/kg-K} OS:Material, - {ab9b2203-1184-41a7-8759-49f593ef4015}, !- Handle + {ef9ae3e9-b83b-4f10-9676-a899b1769e18}, !- Handle M15 200mm heavyweight concrete, !- Name MediumRough, !- Roughness 0.2032, !- Thickness {m} @@ -1536,7 +1577,7 @@ OS:Material, 900; !- Specific Heat {J/kg-K} OS:Material, - {a2de9a57-f5c7-4040-a7c3-5e9e783a1f95}, !- Handle + {0774c2b4-abe0-4fae-87c3-0c7f364c3285}, !- Handle I02 50mm insulation board, !- Name MediumRough, !- Roughness 0.0508, !- Thickness {m} @@ -1545,12 +1586,12 @@ OS:Material, 1210; !- Specific Heat {J/kg-K} OS:Material:AirGap, - {17225ec2-56f2-4470-832d-2cd762f99f98}, !- Handle + {13c04939-c0a8-4762-b247-9b56271d2bcf}, !- Handle F04 Wall air space resistance, !- Name 0.15; !- Thermal Resistance {m2-K/W} OS:Material, - {fd30b7cc-6da0-49fd-a3dd-339962d18610}, !- Handle + {26e640f9-0c09-47e1-8386-da47a230d70c}, !- Handle G01a 19mm gypsum board, !- Name MediumSmooth, !- Roughness 0.019, !- Thickness {m} @@ -1559,18 +1600,18 @@ OS:Material, 1090; !- Specific Heat {J/kg-K} OS:Construction, - {caa58376-d24d-4bc4-8d0f-3a92bce53f09}, !- Handle + {1900d672-c742-489d-8f9b-1dc19b83c7f7}, !- Handle Exterior Wall, !- Name , !- Surface Rendering Name - {72bec73f-619f-4f5a-815a-a7a76706d6fc}, !- Layer 1 - {ab9b2203-1184-41a7-8759-49f593ef4015}, !- Layer 2 - {a2de9a57-f5c7-4040-a7c3-5e9e783a1f95}, !- Layer 3 - {17225ec2-56f2-4470-832d-2cd762f99f98}, !- Layer 4 - {fd30b7cc-6da0-49fd-a3dd-339962d18610}; !- Layer 5 + {952357be-b4aa-4287-954c-cbd1423361fd}, !- Layer 1 + {ef9ae3e9-b83b-4f10-9676-a899b1769e18}, !- Layer 2 + {0774c2b4-abe0-4fae-87c3-0c7f364c3285}, !- Layer 3 + {13c04939-c0a8-4762-b247-9b56271d2bcf}, !- Layer 4 + {26e640f9-0c09-47e1-8386-da47a230d70c}; !- Layer 5 OS:StandardsInformation:Construction, - {0fed2599-a9fb-49a7-9f6d-9314e62bc523}, !- Handle - {caa58376-d24d-4bc4-8d0f-3a92bce53f09}, !- Construction Name + {6d7530f5-27c8-46c2-bc15-3e5604f29858}, !- Handle + {1900d672-c742-489d-8f9b-1dc19b83c7f7}, !- Construction Name , !- Intended Surface Type , !- Standards Construction Type 2, !- Perturbable Layer @@ -1578,7 +1619,7 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:Material, - {d3f40ebc-0c64-4305-be9c-461c165c927c}, !- Handle + {7a852dcb-da07-462f-a167-f8b0b1db4a1f}, !- Handle M11 100mm lightweight concrete, !- Name MediumRough, !- Roughness 0.1016, !- Thickness {m} @@ -1587,12 +1628,12 @@ OS:Material, 840; !- Specific Heat {J/kg-K} OS:Material:AirGap, - {d97468f9-8e44-4d52-970a-08af7ade886e}, !- Handle + {9b98e52d-f1f1-4a87-a1e9-63fc3146345b}, !- Handle F05 Ceiling air space resistance, !- Name 0.18; !- Thermal Resistance {m2-K/W} OS:Material, - {9088762d-3f1b-49c4-ae12-1d9e0ea55ecf}, !- Handle + {7ff9d5f3-0c3d-409b-adbc-4dd742689cc3}, !- Handle F16 Acoustic tile, !- Name MediumSmooth, !- Roughness 0.0191, !- Thickness {m} @@ -1601,41 +1642,37 @@ OS:Material, 590; !- Specific Heat {J/kg-K} OS:Construction, - {78a76174-c95d-4b69-8a5f-7815517db3f6}, !- Handle + {de9aef6f-0b18-4309-a8e9-4d08dad99652}, !- Handle Exterior Roof, !- Name , !- Surface Rendering Name - {d3f40ebc-0c64-4305-be9c-461c165c927c}, !- Layer 1 - {d97468f9-8e44-4d52-970a-08af7ade886e}, !- Layer 2 - {9088762d-3f1b-49c4-ae12-1d9e0ea55ecf}; !- Layer 3 + {7a852dcb-da07-462f-a167-f8b0b1db4a1f}, !- Layer 1 + {9b98e52d-f1f1-4a87-a1e9-63fc3146345b}, !- Layer 2 + {7ff9d5f3-0c3d-409b-adbc-4dd742689cc3}; !- Layer 3 OS:Construction, - {7f836c9e-0a6c-47d4-b85a-9dae019d8019}, !- Handle + {9ec5b0d8-bdc0-4b21-8862-3f464a1023e1}, !- Handle Interior Floor, !- Name , !- Surface Rendering Name - {9088762d-3f1b-49c4-ae12-1d9e0ea55ecf}, !- Layer 1 - {d97468f9-8e44-4d52-970a-08af7ade886e}, !- Layer 2 - {d3f40ebc-0c64-4305-be9c-461c165c927c}; !- Layer 3 - -OS:Material:AirWall, - {73967d5f-7741-4476-bebf-3784750f9b5c}, !- Handle - Air Wall Material; !- Name + {7ff9d5f3-0c3d-409b-adbc-4dd742689cc3}, !- Layer 1 + {9b98e52d-f1f1-4a87-a1e9-63fc3146345b}, !- Layer 2 + {7a852dcb-da07-462f-a167-f8b0b1db4a1f}; !- Layer 3 -OS:Construction, - {56743cf8-5bbe-469c-a829-251ef9d4912a}, !- Handle +OS:Construction:AirBoundary, + {f591d9b9-8223-43f1-bfa7-15df061fb66b}, !- Handle Air Wall, !- Name - , !- Surface Rendering Name - {73967d5f-7741-4476-bebf-3784750f9b5c}; !- Layer 1 + , !- Air Exchange Method + 0; !- Simple Mixing Air Changes per Hour {1/hr} OS:Construction, - {c42029ff-8c7f-4804-8017-d32191580342}, !- Handle + {9f28a47b-e728-4ea6-ae10-fc4a3c8509b9}, !- Handle Interior Ceiling, !- Name , !- Surface Rendering Name - {d3f40ebc-0c64-4305-be9c-461c165c927c}, !- Layer 1 - {d97468f9-8e44-4d52-970a-08af7ade886e}, !- Layer 2 - {9088762d-3f1b-49c4-ae12-1d9e0ea55ecf}; !- Layer 3 + {7a852dcb-da07-462f-a167-f8b0b1db4a1f}, !- Layer 1 + {9b98e52d-f1f1-4a87-a1e9-63fc3146345b}, !- Layer 2 + {7ff9d5f3-0c3d-409b-adbc-4dd742689cc3}; !- Layer 3 OS:Material, - {04df09a4-6cce-45c6-93bf-727fc3628b8b}, !- Handle + {45e74888-1a79-4518-b8c1-029f24c60c12}, !- Handle MAT-CC05 8 HW CONCRETE, !- Name Rough, !- Roughness 0.2032, !- Thickness {m} @@ -1647,7 +1684,7 @@ OS:Material, 0.7; !- Visible Absorptance OS:Material:NoMass, - {6a1562f0-e9fb-4f1e-bf01-9a3fe6339dd6}, !- Handle + {3c469ac6-483c-4ac5-8ad1-88d013b2ca3a}, !- Handle CP02 CARPET PAD, !- Name VeryRough, !- Roughness 0.2165, !- Thermal Resistance {m2-K/W} @@ -1656,21 +1693,21 @@ OS:Material:NoMass, 0.8; !- Visible Absorptance OS:Construction, - {0a92b73e-9d8f-4ee2-b899-8055c9924bd1}, !- Handle + {1d1475ba-2f70-44d3-b41d-8b327c95f12b}, !- Handle Slab, !- Name , !- Surface Rendering Name - {04df09a4-6cce-45c6-93bf-727fc3628b8b}, !- Layer 1 - {6a1562f0-e9fb-4f1e-bf01-9a3fe6339dd6}; !- Layer 2 + {45e74888-1a79-4518-b8c1-029f24c60c12}, !- Layer 1 + {3c469ac6-483c-4ac5-8ad1-88d013b2ca3a}; !- Layer 2 OS:WindowMaterial:SimpleGlazingSystem, - {72ea4c49-7c50-42ee-ac0f-58c3648c5cd3}, !- Handle + {1496cc99-82b5-4f48-82f6-c0c21fa41791}, !- Handle Simple Glazing, !- Name 3.23646, !- U-Factor {W/m2-K} 0.39, !- Solar Heat Gain Coefficient 0.6; !- Visible Transmittance OS:WindowMaterial:Glazing, - {d6d337d7-3a8e-49dd-9d7b-c6aedf22968b}, !- Handle + {6b99456b-99ea-47bb-8562-483163344f01}, !- Handle Clear 3mm, !- Name SpectralAverage, !- Optical Data Type , !- Window Glass Spectral Data Set Name @@ -1687,19 +1724,19 @@ OS:WindowMaterial:Glazing, 0.9; !- Conductivity {W/m-K} OS:WindowMaterial:Gas, - {29cfecae-4a35-445c-aad0-8f4fe9ff0931}, !- Handle + {d6130fb9-de8c-4651-86fa-363756bafd2f}, !- Handle Air 13mm, !- Name Air, !- Gas Type 0.0127; !- Thickness {m} OS:Construction, - {b6557f5b-55b5-49cd-ac39-6648022974d0}, !- Handle + {c8bc82c1-4ef5-4e6e-a3c2-f9727b57c0bd}, !- Handle Exterior Window, !- Name , !- Surface Rendering Name - {72ea4c49-7c50-42ee-ac0f-58c3648c5cd3}; !- Layer 1 + {1496cc99-82b5-4f48-82f6-c0c21fa41791}; !- Layer 1 OS:Material, - {31195528-8bd0-4708-94e9-c9e7590889a8}, !- Handle + {b536f986-0228-40b2-ac79-7ea6b711a425}, !- Handle F08 Metal surface, !- Name Smooth, !- Roughness 0.0008, !- Thickness {m} @@ -1708,7 +1745,7 @@ OS:Material, 500; !- Specific Heat {J/kg-K} OS:Material, - {ee1f1620-a09d-4201-abf8-01b8eaed9b1a}, !- Handle + {b9deb6a1-45f6-4379-b766-9e8fbee6d476}, !- Handle I02 25mm insulation board, !- Name MediumRough, !- Roughness 0.0254, !- Thickness {m} @@ -1717,15 +1754,15 @@ OS:Material, 1210; !- Specific Heat {J/kg-K} OS:Construction, - {c6c2add5-aa1f-4e15-bd7a-0492aa07a418}, !- Handle + {689b671e-018a-4e04-aa91-05273a49a672}, !- Handle Exterior Door, !- Name , !- Surface Rendering Name - {31195528-8bd0-4708-94e9-c9e7590889a8}, !- Layer 1 - {ee1f1620-a09d-4201-abf8-01b8eaed9b1a}; !- Layer 2 + {b536f986-0228-40b2-ac79-7ea6b711a425}, !- Layer 1 + {b9deb6a1-45f6-4379-b766-9e8fbee6d476}; !- Layer 2 OS:StandardsInformation:Construction, - {ff76aeec-55d5-437c-8a1c-05739ffb4d98}, !- Handle - {c6c2add5-aa1f-4e15-bd7a-0492aa07a418}, !- Construction Name + {cf0e0f91-ab51-433e-8334-d4dec2e725b8}, !- Handle + {689b671e-018a-4e04-aa91-05273a49a672}, !- Construction Name , !- Intended Surface Type , !- Standards Construction Type 1, !- Perturbable Layer @@ -1733,13 +1770,13 @@ OS:StandardsInformation:Construction, ; !- Other Perturbable Layer Type OS:Construction, - {e8b31698-c56b-477c-a4ff-0b4afcae51f0}, !- Handle + {5d4558ba-be08-4d6a-83fa-81decd3eadf9}, !- Handle Interior Window, !- Name , !- Surface Rendering Name - {72ea4c49-7c50-42ee-ac0f-58c3648c5cd3}; !- Layer 1 + {1496cc99-82b5-4f48-82f6-c0c21fa41791}; !- Layer 1 OS:Material, - {05430c9e-caa2-4112-b720-c934f43f494a}, !- Handle + {3924b48d-d0c0-49dc-9e81-42698eed04d2}, !- Handle G05 25mm wood, !- Name MediumSmooth, !- Roughness 0.0254, !- Thickness {m} @@ -1748,26 +1785,23 @@ OS:Material, 1630; !- Specific Heat {J/kg-K} OS:Construction, - {d71a482d-3cf7-4558-95f5-bd7d6f6e592c}, !- Handle + {7e0981c0-22a9-4411-bbee-b16ea368864e}, !- Handle Interior Door, !- Name , !- Surface Rendering Name - {05430c9e-caa2-4112-b720-c934f43f494a}; !- Layer 1 + {3924b48d-d0c0-49dc-9e81-42698eed04d2}; !- Layer 1 OS:Construction, - {b2cbb0ea-6535-4d3c-956b-742c1f3ae382}, !- Handle + {63902797-6016-4719-915f-0ce3963bbf26}, !- Handle Interior Partition, !- Name , !- Surface Rendering Name - {05430c9e-caa2-4112-b720-c934f43f494a}; !- Layer 1 + {3924b48d-d0c0-49dc-9e81-42698eed04d2}; !- Layer 1 OS:SpaceType, - {53148cd3-f7e8-45bd-becf-46361d6848b4}, !- Handle - Space Type 1, !- Name - , !- Default Construction Set Name - , !- Default Schedule Set Name - {8a5091f9-381f-4a4b-b5cb-353801cfb21f}; !- Group Rendering Name + {e2172e32-0aa4-4ce9-ba88-ec7b1beac326}, !- Handle + Space Type 1; !- Name OS:Lights:Definition, - {30077710-ec09-456a-b5ce-93ac9d61937b}, !- Handle + {914279e1-8920-4ef0-a308-ed4d75e8409d}, !- Handle Lights Definition 1, !- Name Watts/Area, !- Design Level Calculation Method , !- Lighting Level {W} @@ -1775,13 +1809,17 @@ OS:Lights:Definition, ; !- Watts per Person {W/person} OS:Lights, - {710408f1-1eae-4bc7-bf4e-3e291fa83250}, !- Handle + {a1641529-dc20-4b4f-b2d0-ff3401834505}, !- Handle Lights 1, !- Name - {30077710-ec09-456a-b5ce-93ac9d61937b}, !- Lights Definition Name - {53148cd3-f7e8-45bd-becf-46361d6848b4}; !- Space or SpaceType Name + {914279e1-8920-4ef0-a308-ed4d75e8409d}, !- Lights Definition Name + {e2172e32-0aa4-4ce9-ba88-ec7b1beac326}, !- Space or SpaceType Name + , !- Schedule Name + 1, !- Fraction Replaceable + , !- Multiplier + General; !- End-Use Subcategory OS:ElectricEquipment:Definition, - {81ac9d51-674f-4237-ac5b-9794852c4818}, !- Handle + {a0c820ff-3184-4283-9081-c0f4cb539e92}, !- Handle Electric Equipment Definition 1, !- Name Watts/Area, !- Design Level Calculation Method , !- Design Level {W} @@ -1789,13 +1827,16 @@ OS:ElectricEquipment:Definition, ; !- Watts per Person {W/person} OS:ElectricEquipment, - {cfa7e0fa-432f-4ade-a4e8-519952211967}, !- Handle + {5df8a8f3-0398-400e-90b1-04d2779300cc}, !- Handle Electric Equipment 1, !- Name - {81ac9d51-674f-4237-ac5b-9794852c4818}, !- Electric Equipment Definition Name - {53148cd3-f7e8-45bd-becf-46361d6848b4}; !- Space or SpaceType Name + {a0c820ff-3184-4283-9081-c0f4cb539e92}, !- Electric Equipment Definition Name + {e2172e32-0aa4-4ce9-ba88-ec7b1beac326}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory OS:People:Definition, - {bcb05790-a158-4873-83c3-02b2a95727c8}, !- Handle + {07745e2f-aa89-4de2-af5a-38ffbaa1538d}, !- Handle People Definition 1, !- Name People/Area, !- Number of People Calculation Method , !- Number of People {people} @@ -1804,16 +1845,33 @@ OS:People:Definition, 0.3; !- Fraction Radiant OS:People, - {07bd4014-90b9-470c-8747-a0e7c7f74cb2}, !- Handle + {c007eb1e-9c6a-4b15-806d-5c523711dda7}, !- Handle People 1, !- Name - {bcb05790-a158-4873-83c3-02b2a95727c8}, !- People Definition Name - {53148cd3-f7e8-45bd-becf-46361d6848b4}; !- Space or SpaceType Name + {07745e2f-aa89-4de2-af5a-38ffbaa1538d}, !- People Definition Name + {e2172e32-0aa4-4ce9-ba88-ec7b1beac326}, !- Space or SpaceType Name + , !- Number of People Schedule Name + , !- Activity Level Schedule Name + , !- Surface Name/Angle Factor List Name + , !- Work Efficiency Schedule Name + , !- Clothing Insulation Schedule Name + , !- Air Velocity Schedule Name + 1; !- Multiplier OS:Facility, - {a6468ea3-4188-4667-86f7-1a35b777f6ce}; !- Handle + {59b1c6d4-960e-48e9-a9fa-ff05df2b0456}; !- Handle + +OS:Building, + {6e00ccdf-650c-489a-bb1f-8a39f38f66d8}, !- Handle + Building 1, !- Name + , !- Building Sector Type + , !- North Axis {deg} + , !- Nominal Floor to Floor Height {m} + {e2172e32-0aa4-4ce9-ba88-ec7b1beac326}, !- Space Type Name + {2a1b586c-0a8a-4876-99c1-9ce6e36804ce}, !- Default Construction Set Name + {3632c462-98a9-4f32-ad9e-deca443535d4}; !- Default Schedule Set Name OS:ThermalZone, - {fc71e57a-151a-46b8-a678-25e6fe6f7b47}, !- Handle + {f29d2922-c50e-4c0b-bde4-236ff70525a0}, !- Handle Thermal Zone 1, !- Name , !- Multiplier , !- Ceiling Height {m} @@ -1822,47 +1880,49 @@ OS:ThermalZone, , !- Zone Inside Convection Algorithm , !- Zone Outside Convection Algorithm , !- Zone Conditioning Equipment List Name - {3c07bf71-fc6c-47ee-ba46-40685d96292e}, !- Zone Air Inlet Port List - {57e66df3-c877-44bc-8c28-bbbbe6a5aa99}, !- Zone Air Exhaust Port List - {22759e45-ecec-4674-a7c5-20aa0a1c6ed5}, !- Zone Air Node Name - {5e7dd03f-e665-4b39-b57e-bca1d58755d5}, !- Zone Return Air Node Name - {13334f98-3e2e-46d8-a8f7-04e3c85f6dc1}, !- Primary Daylighting Control Name + {10ce9766-f380-4343-a666-1cb353276776}, !- Zone Air Inlet Port List + {642818b2-ffa0-4aea-821c-5d1422b593c7}, !- Zone Air Exhaust Port List + {72c67d2a-b772-47de-af75-546acfa2e0d5}, !- Zone Air Node Name + {26156bc8-d8be-48f1-a8cd-308fafdc00d9}, !- Zone Return Air Port List + {f5be7f70-2a13-4606-a057-7d6e8a50c8c1}, !- Primary Daylighting Control Name 0.25, !- Fraction of Zone Controlled by Primary Daylighting Control , !- Secondary Daylighting Control Name , !- Fraction of Zone Controlled by Secondary Daylighting Control - {19f905a0-4942-4cdd-b358-d1dc3c2560e2}, !- Illuminance Map Name + {e40e4985-8df0-4b0b-8589-8947042b4f00}, !- Illuminance Map Name , !- Group Rendering Name - {d0bc7d98-a348-486f-b25d-c89e243627b3}, !- Thermostat Name + {99ffb62b-8641-4ebb-bea8-e623b217f827}, !- Thermostat Name No; !- Use Ideal Air Loads OS:Node, - {c8f96879-cdf7-4609-9169-8f1f813920b7}, !- Handle + {d23c8d8c-099e-47a9-b827-f5775978078d}, !- Handle Node 1, !- Name - {22759e45-ecec-4674-a7c5-20aa0a1c6ed5}, !- Inlet Port + {72c67d2a-b772-47de-af75-546acfa2e0d5}, !- Inlet Port ; !- Outlet Port OS:Connection, - {22759e45-ecec-4674-a7c5-20aa0a1c6ed5}, !- Handle - Connection 1, !- Name - {fc71e57a-151a-46b8-a678-25e6fe6f7b47}, !- Source Object + {72c67d2a-b772-47de-af75-546acfa2e0d5}, !- Handle + {f29d2922-c50e-4c0b-bde4-236ff70525a0}, !- Source Object 11, !- Outlet Port - {c8f96879-cdf7-4609-9169-8f1f813920b7}, !- Target Object + {d23c8d8c-099e-47a9-b827-f5775978078d}, !- Target Object 2; !- Inlet Port OS:PortList, - {3c07bf71-fc6c-47ee-ba46-40685d96292e}, !- Handle - Port List 1, !- Name - {fc71e57a-151a-46b8-a678-25e6fe6f7b47}, !- HVAC Component - {b3d6b5b9-cb43-4f0f-9b7e-ff2b33b7f794}; !- Port 1 + {10ce9766-f380-4343-a666-1cb353276776}, !- Handle + {f29d2922-c50e-4c0b-bde4-236ff70525a0}, !- HVAC Component + {f757e8d9-3efb-461e-a5ea-37bcc6e72500}; !- Port 1 + +OS:PortList, + {642818b2-ffa0-4aea-821c-5d1422b593c7}, !- Handle + {f29d2922-c50e-4c0b-bde4-236ff70525a0}; !- HVAC Component OS:PortList, - {57e66df3-c877-44bc-8c28-bbbbe6a5aa99}, !- Handle - Port List 2, !- Name - {fc71e57a-151a-46b8-a678-25e6fe6f7b47}; !- HVAC Component + {26156bc8-d8be-48f1-a8cd-308fafdc00d9}, !- Handle + {f29d2922-c50e-4c0b-bde4-236ff70525a0}, !- HVAC Component + {1e4a221a-1019-4f57-823f-e6b1002efd11}; !- Port 1 OS:Sizing:Zone, - {1e5b3711-ee35-4ea7-bf3f-eb606c99e312}, !- Handle - {fc71e57a-151a-46b8-a678-25e6fe6f7b47}, !- Zone or ZoneList Name + {b646b17d-ce7c-4e18-ac29-66b4c914d992}, !- Handle + {f29d2922-c50e-4c0b-bde4-236ff70525a0}, !- 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} @@ -1883,38 +1943,46 @@ OS:Sizing:Zone, , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} , !- Heating Maximum Air Flow {m3/s} , !- Heating Maximum Air Flow Fraction - , !- Design Zone Air Distribution Effectiveness in Cooling Mode - , !- Design Zone Air Distribution Effectiveness in Heating Mode 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} + 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, - {a3a4ffbe-860b-49d8-b8c6-f4f70dfdef0f}, !- Handle + {9cbe6714-2d64-4a6b-9fbe-520b9647086e}, !- Handle Zone HVAC Equipment List 1, !- Name - {fc71e57a-151a-46b8-a678-25e6fe6f7b47}, !- Thermal Zone - {e95eecc2-55c3-4de1-99bb-7a31dd48c1ff}, !- Zone Equipment 1 + {f29d2922-c50e-4c0b-bde4-236ff70525a0}, !- Thermal Zone + , !- Load Distribution Scheme + {5a051ef5-8b17-4a61-b11d-d197ac0cf5af}, !- Zone Equipment 1 1, !- Zone Equipment Cooling Sequence 1 - 1; !- Zone Equipment Heating or No-Load 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:ThermostatSetpoint:DualSetpoint, - {d0bc7d98-a348-486f-b25d-c89e243627b3}, !- Handle + {99ffb62b-8641-4ebb-bea8-e623b217f827}, !- Handle Thermostat Setpoint Dual Setpoint 1, !- Name - {d9207542-d5a1-478e-8e00-0f7fa8d8bd28}, !- Heating Setpoint Temperature Schedule Name - {df3e3633-7709-4d03-8b8c-d2380d3bf15c}; !- Cooling Setpoint Temperature Schedule Name + {1e04180d-e906-4d30-ba48-3029f18b89f0}, !- Heating Setpoint Temperature Schedule Name + {1abb60bb-dee4-435c-9714-2224c4f61145}; !- Cooling Setpoint Temperature Schedule Name OS:BuildingStory, - {67d37358-1511-4b0b-a14a-17503161c3c7}, !- Handle + {78f90b52-ce0f-4d67-a545-b9f17d36bc83}, !- Handle Building Story 1, !- Name 0, !- Nominal Z Coordinate {m} 3, !- Nominal Floor to Floor Height {m} , !- Default Construction Set Name , !- Default Schedule Set Name - {9ef04724-9b33-4053-b66f-94ef7f280b7d}; !- Group Rendering Name + ; !- Group Rendering Name OS:Space, - {6e81b6eb-e552-4e68-8e12-8ff03c46a0d7}, !- Handle + {98a53cd4-55b5-49e9-8a2b-d948e56aaaa3}, !- Handle Space 1, !- Name , !- Space Type Name , !- Default Construction Set Name @@ -1923,15 +1991,15 @@ OS:Space, , !- X Origin {m} , !- Y Origin {m} , !- Z Origin {m} - {67d37358-1511-4b0b-a14a-17503161c3c7}, !- Building Story Name - {fc71e57a-151a-46b8-a678-25e6fe6f7b47}; !- Thermal Zone Name + {78f90b52-ce0f-4d67-a545-b9f17d36bc83}, !- Building Story Name + {f29d2922-c50e-4c0b-bde4-236ff70525a0}; !- Thermal Zone Name OS:Surface, - {22af23cf-b9ec-42ee-98b7-36e4f0e93984}, !- Handle + {6e8f5702-5d65-477e-8caf-30f6e601f27e}, !- Handle Surface 1, !- Name Floor, !- Surface Type , !- Construction Name - {6e81b6eb-e552-4e68-8e12-8ff03c46a0d7}, !- Space Name + {98a53cd4-55b5-49e9-8a2b-d948e56aaaa3}, !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -1944,79 +2012,79 @@ OS:Surface, 10, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {7381f6d1-b203-4da1-aaed-9d5df34c22b3}, !- Handle + {f04c2024-7106-44c0-9aa7-00dd554fe851}, !- Handle Surface 2, !- Name Wall, !- Surface Type , !- Construction Name - {6e81b6eb-e552-4e68-8e12-8ff03c46a0d7}, !- Space Name + {98a53cd4-55b5-49e9-8a2b-d948e56aaaa3}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, 10, 3, !- X,Y,Z Vertex 1 {m} - 0, 10, 0, !- X,Y,Z Vertex 2 {m} - 0, 0, 0, !- X,Y,Z Vertex 3 {m} - 0, 0, 3; !- X,Y,Z Vertex 4 {m} + 0, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 10, 3, !- X,Y,Z Vertex 2 {m} + 0, 10, 0, !- X,Y,Z Vertex 3 {m} + 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {011119f2-d438-4644-baba-3214878e5d4f}, !- Handle + {086edf07-fbe7-47f3-9643-2b3bc5a00c6c}, !- Handle Surface 3, !- Name Wall, !- Surface Type , !- Construction Name - {6e81b6eb-e552-4e68-8e12-8ff03c46a0d7}, !- Space Name + {98a53cd4-55b5-49e9-8a2b-d948e56aaaa3}, !- Space Name Surface, !- Outside Boundary Condition - {84c128ac-db9d-4897-9a7f-b41607c1d456}, !- Outside Boundary Condition Object + {f5534688-b2c1-4fe0-91db-513243693c42}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 10, 10, 3, !- X,Y,Z Vertex 1 {m} - 10, 10, 0, !- X,Y,Z Vertex 2 {m} - 0, 10, 0, !- X,Y,Z Vertex 3 {m} - 0, 10, 3; !- X,Y,Z Vertex 4 {m} + 0, 10, 3, !- X,Y,Z Vertex 1 {m} + 10, 10, 3, !- X,Y,Z Vertex 2 {m} + 10, 10, 0, !- X,Y,Z Vertex 3 {m} + 0, 10, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {274f7a42-9a2a-4d32-909c-b8aa58ff2690}, !- Handle + {ff576095-837f-4198-99c7-f3d68012f066}, !- Handle Surface 4, !- Name Wall, !- Surface Type , !- Construction Name - {6e81b6eb-e552-4e68-8e12-8ff03c46a0d7}, !- Space Name + {98a53cd4-55b5-49e9-8a2b-d948e56aaaa3}, !- Space Name Surface, !- Outside Boundary Condition - {5d1c7f3c-743f-47ee-81c5-81ab50be3515}, !- Outside Boundary Condition Object + {ef538dc0-0c41-4f98-b2b8-bfb2ba6e4e59}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 10, 0, 3, !- X,Y,Z Vertex 1 {m} - 10, 0, 0, !- X,Y,Z Vertex 2 {m} - 10, 10, 0, !- X,Y,Z Vertex 3 {m} - 10, 10, 3; !- X,Y,Z Vertex 4 {m} + 10, 10, 3, !- X,Y,Z Vertex 1 {m} + 10, 0, 3, !- X,Y,Z Vertex 2 {m} + 10, 0, 0, !- X,Y,Z Vertex 3 {m} + 10, 10, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {3eaebb79-b2ca-44e2-ba40-9e283fd495f3}, !- Handle + {f1023d58-10f6-42fd-9c75-8b04366cc2b4}, !- Handle Surface 5, !- Name Wall, !- Surface Type , !- Construction Name - {6e81b6eb-e552-4e68-8e12-8ff03c46a0d7}, !- Space Name + {98a53cd4-55b5-49e9-8a2b-d948e56aaaa3}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, 0, 3, !- X,Y,Z Vertex 1 {m} - 0, 0, 0, !- X,Y,Z Vertex 2 {m} - 10, 0, 0, !- X,Y,Z Vertex 3 {m} - 10, 0, 3; !- X,Y,Z Vertex 4 {m} + 10, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 0, 3, !- X,Y,Z Vertex 2 {m} + 0, 0, 0, !- X,Y,Z Vertex 3 {m} + 10, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {af3a1a11-1496-4b51-9cfb-e816119a49b4}, !- Handle + {184c312d-7702-42eb-b48c-10ca4a160179}, !- Handle Surface 6, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {6e81b6eb-e552-4e68-8e12-8ff03c46a0d7}, !- Space Name + {98a53cd4-55b5-49e9-8a2b-d948e56aaaa3}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2029,7 +2097,7 @@ OS:Surface, 0, 0, 3; !- X,Y,Z Vertex 4 {m} OS:Space, - {996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Handle + {15738577-385c-45b7-a007-77f4dacfacc7}, !- Handle Space 2, !- Name , !- Space Type Name , !- Default Construction Set Name @@ -2038,32 +2106,32 @@ OS:Space, 10, !- X Origin {m} , !- Y Origin {m} , !- Z Origin {m} - {67d37358-1511-4b0b-a14a-17503161c3c7}, !- Building Story Name - {fc71e57a-151a-46b8-a678-25e6fe6f7b47}; !- Thermal Zone Name + {78f90b52-ce0f-4d67-a545-b9f17d36bc83}, !- Building Story Name + {f29d2922-c50e-4c0b-bde4-236ff70525a0}; !- Thermal Zone Name OS:Surface, - {4693b256-3d38-4008-afd8-73c1f9cd15eb}, !- Handle + {ef538dc0-0c41-4f98-b2b8-bfb2ba6e4e59}, !- Handle Surface 7, !- Name Wall, !- Surface Type , !- Construction Name - {996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Space Name + {15738577-385c-45b7-a007-77f4dacfacc7}, !- Space Name Surface, !- Outside Boundary Condition - {195d59ee-99a7-4d31-a0f2-1aef7ca742d2}, !- Outside Boundary Condition Object + {ff576095-837f-4198-99c7-f3d68012f066}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 10, 10, 3, !- X,Y,Z Vertex 1 {m} - 10, 10, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 10, 3, !- X,Y,Z Vertex 2 {m} 0, 10, 0, !- X,Y,Z Vertex 3 {m} - 0, 10, 3; !- X,Y,Z Vertex 4 {m} + 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {703c5351-4ea6-4c72-b425-3d1d1bb24b1a}, !- Handle + {38ab4352-d1dc-465b-a389-4c448baa6e7d}, !- Handle Surface 8, !- Name Floor, !- Surface Type , !- Construction Name - {996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Space Name + {15738577-385c-45b7-a007-77f4dacfacc7}, !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2076,62 +2144,62 @@ OS:Surface, 10, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {d5ce5991-4af5-4dc2-9e45-6d12b98fac26}, !- Handle + {31678397-51a4-44ed-96cf-87358332e32f}, !- Handle Surface 9, !- Name Wall, !- Surface Type , !- Construction Name - {996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Space Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure + {15738577-385c-45b7-a007-77f4dacfacc7}, !- Space Name + Surface, !- Outside Boundary Condition + {0a615369-bfc3-4632-9dda-f92f59597825}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 10, 0, 3, !- X,Y,Z Vertex 1 {m} - 10, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 10, 3, !- X,Y,Z Vertex 1 {m} + 10, 10, 3, !- X,Y,Z Vertex 2 {m} 10, 10, 0, !- X,Y,Z Vertex 3 {m} - 10, 10, 3; !- X,Y,Z Vertex 4 {m} + 0, 10, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {bcf1b553-afe1-409e-ba40-c6d170e4f7c4}, !- Handle + {d1796ec6-69bd-4c11-91c9-7caa575d2b25}, !- Handle Surface 10, !- Name Wall, !- Surface Type , !- Construction Name - {996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Space Name + {15738577-385c-45b7-a007-77f4dacfacc7}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, 0, 3, !- X,Y,Z Vertex 1 {m} - 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 10, 10, 3, !- X,Y,Z Vertex 1 {m} + 10, 0, 3, !- X,Y,Z Vertex 2 {m} 10, 0, 0, !- X,Y,Z Vertex 3 {m} - 10, 0, 3; !- X,Y,Z Vertex 4 {m} + 10, 10, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {5d1c7f3c-743f-47ee-81c5-81ab50be3515}, !- Handle + {5db5426a-82d5-423c-9a94-2c8a28268088}, !- Handle Surface 11, !- Name Wall, !- Surface Type , !- Construction Name - {996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Space Name - Surface, !- Outside Boundary Condition - {274f7a42-9a2a-4d32-909c-b8aa58ff2690}, !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure + {15738577-385c-45b7-a007-77f4dacfacc7}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, 10, 3, !- X,Y,Z Vertex 1 {m} - 0, 10, 0, !- X,Y,Z Vertex 2 {m} + 10, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 0, 3, !- X,Y,Z Vertex 2 {m} 0, 0, 0, !- X,Y,Z Vertex 3 {m} - 0, 0, 3; !- X,Y,Z Vertex 4 {m} + 10, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {913b1d62-c555-40e3-9304-82a37ee1e6af}, !- Handle + {72c92623-4cf9-404e-b46c-ee35612eef86}, !- Handle Surface 12, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Space Name + {15738577-385c-45b7-a007-77f4dacfacc7}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2144,7 +2212,7 @@ OS:Surface, 0, 0, 3; !- X,Y,Z Vertex 4 {m} OS:Space, - {49bf11a2-cdfe-4934-b912-21c1340aedbe}, !- Handle + {b5253b7e-2975-4df0-aab2-eb57afdfdcaf}, !- Handle Space 3, !- Name , !- Space Type Name , !- Default Construction Set Name @@ -2153,32 +2221,32 @@ OS:Space, , !- X Origin {m} 10, !- Y Origin {m} , !- Z Origin {m} - {67d37358-1511-4b0b-a14a-17503161c3c7}, !- Building Story Name - {fc71e57a-151a-46b8-a678-25e6fe6f7b47}; !- Thermal Zone Name + {78f90b52-ce0f-4d67-a545-b9f17d36bc83}, !- Building Story Name + {f29d2922-c50e-4c0b-bde4-236ff70525a0}; !- Thermal Zone Name OS:Surface, - {673bbc92-d413-4758-aad9-dd62260ee86f}, !- Handle + {688f8e66-ee45-44d0-86d9-d13922200e17}, !- Handle Surface 13, !- Name Wall, !- Surface Type , !- Construction Name - {49bf11a2-cdfe-4934-b912-21c1340aedbe}, !- Space Name + {b5253b7e-2975-4df0-aab2-eb57afdfdcaf}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 10, 10, 3, !- X,Y,Z Vertex 1 {m} - 10, 10, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 10, 3, !- X,Y,Z Vertex 2 {m} 0, 10, 0, !- X,Y,Z Vertex 3 {m} - 0, 10, 3; !- X,Y,Z Vertex 4 {m} + 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {b3c1322e-596c-4d44-80fa-da896dbe7ecf}, !- Handle + {16caf5c6-abf3-4cef-bb63-e063e5c62e4c}, !- Handle Surface 14, !- Name Floor, !- Surface Type , !- Construction Name - {49bf11a2-cdfe-4934-b912-21c1340aedbe}, !- Space Name + {b5253b7e-2975-4df0-aab2-eb57afdfdcaf}, !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2191,62 +2259,62 @@ OS:Surface, 10, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {679605d3-78db-43bd-b0a0-b56e1b02194e}, !- Handle + {eda6f04e-ae15-453f-ad1b-3b0aa8061e5d}, !- Handle Surface 15, !- Name Wall, !- Surface Type , !- Construction Name - {49bf11a2-cdfe-4934-b912-21c1340aedbe}, !- Space Name - Surface, !- Outside Boundary Condition - {4c523c66-c48e-453d-b13f-cf4b5559bdd5}, !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure + {b5253b7e-2975-4df0-aab2-eb57afdfdcaf}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 10, 0, 3, !- X,Y,Z Vertex 1 {m} - 10, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 10, 3, !- X,Y,Z Vertex 1 {m} + 10, 10, 3, !- X,Y,Z Vertex 2 {m} 10, 10, 0, !- X,Y,Z Vertex 3 {m} - 10, 10, 3; !- X,Y,Z Vertex 4 {m} + 0, 10, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {84c128ac-db9d-4897-9a7f-b41607c1d456}, !- Handle + {31fff634-7ad1-453b-892f-0e6ea61955db}, !- Handle Surface 16, !- Name Wall, !- Surface Type , !- Construction Name - {49bf11a2-cdfe-4934-b912-21c1340aedbe}, !- Space Name + {b5253b7e-2975-4df0-aab2-eb57afdfdcaf}, !- Space Name Surface, !- Outside Boundary Condition - {011119f2-d438-4644-baba-3214878e5d4f}, !- Outside Boundary Condition Object + {108290d8-181f-43e4-88ce-46c4d68642a1}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, 0, 3, !- X,Y,Z Vertex 1 {m} - 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 10, 10, 3, !- X,Y,Z Vertex 1 {m} + 10, 0, 3, !- X,Y,Z Vertex 2 {m} 10, 0, 0, !- X,Y,Z Vertex 3 {m} - 10, 0, 3; !- X,Y,Z Vertex 4 {m} + 10, 10, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {eaadee75-b5ac-428c-a722-74a2cc56d2be}, !- Handle + {f5534688-b2c1-4fe0-91db-513243693c42}, !- Handle Surface 17, !- Name Wall, !- Surface Type , !- Construction Name - {49bf11a2-cdfe-4934-b912-21c1340aedbe}, !- Space Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure + {b5253b7e-2975-4df0-aab2-eb57afdfdcaf}, !- Space Name + Surface, !- Outside Boundary Condition + {086edf07-fbe7-47f3-9643-2b3bc5a00c6c}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, 10, 3, !- X,Y,Z Vertex 1 {m} - 0, 10, 0, !- X,Y,Z Vertex 2 {m} + 10, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 0, 3, !- X,Y,Z Vertex 2 {m} 0, 0, 0, !- X,Y,Z Vertex 3 {m} - 0, 0, 3; !- X,Y,Z Vertex 4 {m} + 10, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {52715eef-b40d-4ba5-a0f6-1df31ed1db3c}, !- Handle + {4068c58f-ca68-45ca-91a0-37772a7a44e7}, !- Handle Surface 18, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {49bf11a2-cdfe-4934-b912-21c1340aedbe}, !- Space Name + {b5253b7e-2975-4df0-aab2-eb57afdfdcaf}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2259,7 +2327,7 @@ OS:Surface, 0, 0, 3; !- X,Y,Z Vertex 4 {m} OS:Space, - {3a7a81ff-50b5-4417-8f8b-0147fba16d67}, !- Handle + {a50d6a2e-bed7-4543-999f-ee9eb6bbb18f}, !- Handle Space 4, !- Name , !- Space Type Name , !- Default Construction Set Name @@ -2268,32 +2336,32 @@ OS:Space, 10, !- X Origin {m} 10, !- Y Origin {m} , !- Z Origin {m} - {67d37358-1511-4b0b-a14a-17503161c3c7}, !- Building Story Name - {fc71e57a-151a-46b8-a678-25e6fe6f7b47}; !- Thermal Zone Name + {78f90b52-ce0f-4d67-a545-b9f17d36bc83}, !- Building Story Name + {f29d2922-c50e-4c0b-bde4-236ff70525a0}; !- Thermal Zone Name OS:Surface, - {21bffbe0-051c-4c4f-8a95-3214976c07ba}, !- Handle + {108290d8-181f-43e4-88ce-46c4d68642a1}, !- Handle Surface 19, !- Name Wall, !- Surface Type , !- Construction Name - {3a7a81ff-50b5-4417-8f8b-0147fba16d67}, !- Space Name - Outdoors, !- Outside Boundary Condition - , !- Outside Boundary Condition Object - SunExposed, !- Sun Exposure - WindExposed, !- Wind Exposure + {a50d6a2e-bed7-4543-999f-ee9eb6bbb18f}, !- Space Name + Surface, !- Outside Boundary Condition + {31fff634-7ad1-453b-892f-0e6ea61955db}, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 10, 10, 3, !- X,Y,Z Vertex 1 {m} - 10, 10, 0, !- X,Y,Z Vertex 2 {m} + 0, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 10, 3, !- X,Y,Z Vertex 2 {m} 0, 10, 0, !- X,Y,Z Vertex 3 {m} - 0, 10, 3; !- X,Y,Z Vertex 4 {m} + 0, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {8e87dde1-a2bc-4a45-84da-bb0e2fcdf28c}, !- Handle + {b76a9a1f-c37a-42b7-9c86-2f354eafea3d}, !- Handle Surface 20, !- Name Floor, !- Surface Type , !- Construction Name - {3a7a81ff-50b5-4417-8f8b-0147fba16d67}, !- Space Name + {a50d6a2e-bed7-4543-999f-ee9eb6bbb18f}, !- Space Name Ground, !- Outside Boundary Condition , !- Outside Boundary Condition Object NoSun, !- Sun Exposure @@ -2306,62 +2374,62 @@ OS:Surface, 10, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {109d67e5-c5dd-4fbe-b30e-8acd8c0b143e}, !- Handle + {1a3f40c1-d37d-46ed-ba05-f240277c8374}, !- Handle Surface 21, !- Name Wall, !- Surface Type , !- Construction Name - {3a7a81ff-50b5-4417-8f8b-0147fba16d67}, !- Space Name + {a50d6a2e-bed7-4543-999f-ee9eb6bbb18f}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 10, 0, 3, !- X,Y,Z Vertex 1 {m} - 10, 0, 0, !- X,Y,Z Vertex 2 {m} + 0, 10, 3, !- X,Y,Z Vertex 1 {m} + 10, 10, 3, !- X,Y,Z Vertex 2 {m} 10, 10, 0, !- X,Y,Z Vertex 3 {m} - 10, 10, 3; !- X,Y,Z Vertex 4 {m} + 0, 10, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {195d59ee-99a7-4d31-a0f2-1aef7ca742d2}, !- Handle + {9a367692-42ff-49e2-9b40-c8d9d8716f6f}, !- Handle Surface 22, !- Name Wall, !- Surface Type , !- Construction Name - {3a7a81ff-50b5-4417-8f8b-0147fba16d67}, !- Space Name - Surface, !- Outside Boundary Condition - {4693b256-3d38-4008-afd8-73c1f9cd15eb}, !- Outside Boundary Condition Object - NoSun, !- Sun Exposure - NoWind, !- Wind Exposure + {a50d6a2e-bed7-4543-999f-ee9eb6bbb18f}, !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, 0, 3, !- X,Y,Z Vertex 1 {m} - 0, 0, 0, !- X,Y,Z Vertex 2 {m} + 10, 10, 3, !- X,Y,Z Vertex 1 {m} + 10, 0, 3, !- X,Y,Z Vertex 2 {m} 10, 0, 0, !- X,Y,Z Vertex 3 {m} - 10, 0, 3; !- X,Y,Z Vertex 4 {m} + 10, 10, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {4c523c66-c48e-453d-b13f-cf4b5559bdd5}, !- Handle + {0a615369-bfc3-4632-9dda-f92f59597825}, !- Handle Surface 23, !- Name Wall, !- Surface Type , !- Construction Name - {3a7a81ff-50b5-4417-8f8b-0147fba16d67}, !- Space Name + {a50d6a2e-bed7-4543-999f-ee9eb6bbb18f}, !- Space Name Surface, !- Outside Boundary Condition - {679605d3-78db-43bd-b0a0-b56e1b02194e}, !- Outside Boundary Condition Object + {31678397-51a4-44ed-96cf-87358332e32f}, !- Outside Boundary Condition Object NoSun, !- Sun Exposure NoWind, !- Wind Exposure , !- View Factor to Ground , !- Number of Vertices - 0, 10, 3, !- X,Y,Z Vertex 1 {m} - 0, 10, 0, !- X,Y,Z Vertex 2 {m} + 10, 0, 3, !- X,Y,Z Vertex 1 {m} + 0, 0, 3, !- X,Y,Z Vertex 2 {m} 0, 0, 0, !- X,Y,Z Vertex 3 {m} - 0, 0, 3; !- X,Y,Z Vertex 4 {m} + 10, 0, 0; !- X,Y,Z Vertex 4 {m} OS:Surface, - {6079c9c7-429c-444c-b8a9-381203519245}, !- Handle + {5d98e59b-d88a-456b-94f2-241e79d33bc4}, !- Handle Surface 24, !- Name RoofCeiling, !- Surface Type , !- Construction Name - {3a7a81ff-50b5-4417-8f8b-0147fba16d67}, !- Space Name + {a50d6a2e-bed7-4543-999f-ee9eb6bbb18f}, !- Space Name Outdoors, !- Outside Boundary Condition , !- Outside Boundary Condition Object SunExposed, !- Sun Exposure @@ -2374,14 +2442,13 @@ OS:Surface, 0, 0, 3; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {b8a61dba-4372-4778-9bdd-0741e12df02a}, !- Handle + {1169495b-adc5-40ac-bef3-cc9bdbf1a1b3}, !- Handle Sub Surface 1, !- Name Door, !- Sub Surface Type , !- Construction Name - {3eaebb79-b2ca-44e2-ba40-9e283fd495f3}, !- Surface Name + {f1023d58-10f6-42fd-9c75-8b04366cc2b4}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground - , !- Shading Control Name , !- Frame and Divider Name , !- Multiplier , !- Number of Vertices @@ -2391,14 +2458,13 @@ OS:SubSurface, 4, 0, 2; !- X,Y,Z Vertex 4 {m} OS:SubSurface, - {5a049aac-2a12-48aa-9fa5-41acef9697f8}, !- Handle + {8f38f141-ab9a-4377-990d-18a9b2847ac5}, !- Handle Sub Surface 2, !- Name FixedWindow, !- Sub Surface Type , !- Construction Name - {d5ce5991-4af5-4dc2-9e45-6d12b98fac26}, !- Surface Name + {d1796ec6-69bd-4c11-91c9-7caa575d2b25}, !- Surface Name , !- Outside Boundary Condition Object , !- View Factor to Ground - , !- Shading Control Name , !- Frame and Divider Name , !- Multiplier , !- Number of Vertices @@ -2408,16 +2474,21 @@ OS:SubSurface, 10, 8, 2; !- X,Y,Z Vertex 4 {m} OS:ShadingSurfaceGroup, - {32353ffc-580f-45a7-a05d-0ceb5913954f}, !- Handle - Shading Surface Group 1, !- Name + {bec6feb4-7e45-4dc4-a9db-81639da635b3}, !- Handle + Sub Surface 2 Shading Surfaces, !- Name Space, !- Shading Surface Type - {996bd4ee-09ec-49da-adc7-2f7f22db1ae6}; !- Space Name + {15738577-385c-45b7-a007-77f4dacfacc7}, !- Space Name + , !- Direction of Relative North {deg} + , !- X Origin {m} + , !- Y Origin {m} + , !- Z Origin {m} + {8f38f141-ab9a-4377-990d-18a9b2847ac5}; !- Shaded Object Name OS:ShadingSurface, - {ab9757da-a3ce-4da2-81b5-a6a22691c9e7}, !- Handle + {a92c91e9-bcdc-430d-8ea5-641ee7259c48}, !- Handle Shading Surface 1, !- Name , !- Construction Name - {32353ffc-580f-45a7-a05d-0ceb5913954f}, !- Shading Surface Group Name + {bec6feb4-7e45-4dc4-a9db-81639da635b3}, !- Shading Surface Group Name , !- Transmittance Schedule Name , !- Number of Vertices 10, 8.1, 2.1, !- X,Y,Z Vertex 1 {m} @@ -2426,17 +2497,17 @@ OS:ShadingSurface, 10.55, 8.1, 2.1; !- X,Y,Z Vertex 4 {m} OS:Daylighting:Control, - {13334f98-3e2e-46d8-a8f7-04e3c85f6dc1}, !- Handle + {f5be7f70-2a13-4606-a057-7d6e8a50c8c1}, !- Handle Daylighting Control 1, !- Name - {996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Space Name + {15738577-385c-45b7-a007-77f4dacfacc7}, !- Space Name 5, !- Position X-Coordinate {m} 5, !- Position Y-Coordinate {m} 1.1; !- Position Z-Coordinate {m} OS:IlluminanceMap, - {19f905a0-4942-4cdd-b358-d1dc3c2560e2}, !- Handle + {e40e4985-8df0-4b0b-8589-8947042b4f00}, !- Handle Illuminance Map 1, !- Name - {996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Space Name + {15738577-385c-45b7-a007-77f4dacfacc7}, !- Space Name 1, !- Origin X-Coordinate {m} 1, !- Origin Y-Coordinate {m} 1.1, !- Origin Z-Coordinate {m} @@ -2448,23 +2519,23 @@ OS:IlluminanceMap, 8; !- Y Length {m} OS:Glare:Sensor, - {1369df70-6cf8-48ee-a6f9-55454898f035}, !- Handle + {c963fb6b-2c1c-4eb8-8a4f-768f4eb44b0f}, !- Handle Glare Sensor 1, !- Name - {996bd4ee-09ec-49da-adc7-2f7f22db1ae6}, !- Space Name + {15738577-385c-45b7-a007-77f4dacfacc7}, !- Space Name 5, !- Position X-Coordinate {m} 5, !- Position Y-Coordinate {m} 1.1; !- Position Z-Coordinate {m} OS:InteriorPartitionSurfaceGroup, - {53fcbecd-a3a5-4c0f-af43-df64a65764ef}, !- Handle + {ff643743-f01d-4811-9796-0a4323d8e625}, !- Handle Interior Partition Surface Group 1, !- Name - {996bd4ee-09ec-49da-adc7-2f7f22db1ae6}; !- Space Name + {15738577-385c-45b7-a007-77f4dacfacc7}; !- Space Name OS:InteriorPartitionSurface, - {5d940a97-a381-4a64-8b26-2fd683d16384}, !- Handle + {30985ff4-192f-47e4-93cb-d2657c8d36f2}, !- Handle Interior Partition Surface 1, !- Name , !- Construction Name - {53fcbecd-a3a5-4c0f-af43-df64a65764ef}, !- Interior Partition Surface Group Name + {ff643743-f01d-4811-9796-0a4323d8e625}, !- Interior Partition Surface Group Name , !- Convert to Internal Mass , !- Surface Area {m2} , !- Number of Vertices @@ -2474,7 +2545,7 @@ OS:InteriorPartitionSurface, 8, 8, 1; !- X,Y,Z Vertex 4 {m} OS:ElectricEquipment:Definition, - {37445666-38da-4d13-ab38-3c3656fc1c37}, !- Handle + {1dc602bb-bc57-4ecc-a996-5f2037558561}, !- Handle Printer Definition, !- Name EquipmentLevel, !- Design Level Calculation Method 200, !- Design Level {W} @@ -2482,22 +2553,24 @@ OS:ElectricEquipment:Definition, ; !- Watts per Person {W/person} OS:ElectricEquipment, - {e7518ed4-26d4-4f92-800d-81e09944a6d0}, !- Handle + {ced8d055-725b-4fb4-b8c9-ebb6c7776629}, !- Handle Printer, !- Name - {37445666-38da-4d13-ab38-3c3656fc1c37}, !- Electric Equipment Definition Name - {3a7a81ff-50b5-4417-8f8b-0147fba16d67}; !- Space or SpaceType Name + {1dc602bb-bc57-4ecc-a996-5f2037558561}, !- Electric Equipment Definition Name + {a50d6a2e-bed7-4543-999f-ee9eb6bbb18f}, !- Space or SpaceType Name + , !- Schedule Name + , !- Multiplier + General; !- End-Use Subcategory OS:ShadingSurfaceGroup, - {cf35fbd4-5b94-4566-8ff5-0306382ac579}, !- Handle - Shading Surface Group 2, !- Name - Building, !- Shading Surface Type - ; !- Space Name + {bd4ea608-5ada-407e-abd8-06692bbcf0c8}, !- Handle + Shading Surface Group 1, !- Name + Building; !- Shading Surface Type OS:ShadingSurface, - {ba5e2cdb-0021-4458-8627-e301c826d7d9}, !- Handle + {01c17f4a-b190-4f05-909f-045f603654e4}, !- Handle Shading Surface 2, !- Name , !- Construction Name - {cf35fbd4-5b94-4566-8ff5-0306382ac579}, !- Shading Surface Group Name + {bd4ea608-5ada-407e-abd8-06692bbcf0c8}, !- Shading Surface Group Name , !- Transmittance Schedule Name , !- Number of Vertices 2, 0, 2, !- X,Y,Z Vertex 1 {m} @@ -2506,16 +2579,15 @@ OS:ShadingSurface, 4, 0, 2; !- X,Y,Z Vertex 4 {m} OS:ShadingSurfaceGroup, - {0b143cd8-e111-438b-9365-6807fc017b9e}, !- Handle - Shading Surface Group 3, !- Name - Site, !- Shading Surface Type - ; !- Space Name + {8b6a837d-d65c-4ccf-8a72-9dd74290694e}, !- Handle + Shading Surface Group 2, !- Name + Site; !- Shading Surface Type OS:ShadingSurface, - {41ba88a8-0cb8-410e-bf1a-3c873cefa86e}, !- Handle + {4857a098-ef76-4c6d-bcd0-bcafdbcbe83d}, !- Handle Shading Surface 3, !- Name , !- Construction Name - {0b143cd8-e111-438b-9365-6807fc017b9e}, !- Shading Surface Group Name + {8b6a837d-d65c-4ccf-8a72-9dd74290694e}, !- Shading Surface Group Name , !- Transmittance Schedule Name , !- Number of Vertices -30, 0, 20, !- X,Y,Z Vertex 1 {m} @@ -2524,29 +2596,29 @@ OS:ShadingSurface, -30, 20, 20; !- X,Y,Z Vertex 4 {m} OS:Schedule:Compact, - {ac27bd9e-96a8-4fed-b7aa-06b830184239}, !- Handle + {45099c38-6879-4fff-b3dd-d328d7cdfc3d}, !- Handle ALWAYS_ON, !- Name - {995b1994-deb2-4ea9-a031-5c4654526dbb}, !- Schedule Type Limits Name + {a605d669-9fe2-4dd1-87d2-fcf648ab0453}, !- Schedule Type Limits Name Through: 12/31, !- Field 1 For: AllDays, !- Field 2 Until: 24:00, !- Field 3 1; !- Field 4 OS:Fan:ConstantVolume, - {59bd5da9-ec95-4ef4-a694-d56122eb57c8}, !- Handle + {4743cda7-d761-4a9b-b737-90928dbba424}, !- Handle Standard Fan, !- Name - {ac27bd9e-96a8-4fed-b7aa-06b830184239}, !- Availability Schedule Name - , !- Fan Efficiency + {45099c38-6879-4fff-b3dd-d328d7cdfc3d}, !- Availability Schedule Name + , !- Fan Total Efficiency , !- Pressure Rise {Pa} AutoSize, !- Maximum Flow Rate {m3/s} , !- Motor Efficiency , !- Motor In Airstream Fraction - {db39f946-0d49-4f43-b455-48ec981cc620}, !- Air Inlet Node Name - {3be07c83-a6d2-4ff2-a87f-993944ae42ca}, !- Air Outlet Node Name + {5366adbf-a2f2-412a-80db-acc03c6f1b37}, !- Air Inlet Node Name + {bcd79445-aa6d-4f9d-b42b-cfd9e5fec780}, !- Air Outlet Node Name ; !- End-Use Subcategory OS:ScheduleTypeLimits, - {995b1994-deb2-4ea9-a031-5c4654526dbb}, !- Handle + {a605d669-9fe2-4dd1-87d2-fcf648ab0453}, !- Handle OnOff, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value @@ -2554,26 +2626,26 @@ OS:ScheduleTypeLimits, Availability; !- Unit Type OS:Coil:Heating:Gas, - {d3bcc350-6fcc-48d2-b70e-18536a02797e}, !- Handle + {bebf41b9-2091-4067-8e2e-b4f3e910b293}, !- Handle Coil Heating Gas 1, !- Name - {ac27bd9e-96a8-4fed-b7aa-06b830184239}, !- Availability Schedule Name + {45099c38-6879-4fff-b3dd-d328d7cdfc3d}, !- Availability Schedule Name 0.8, !- Gas Burner Efficiency AutoSize, !- Nominal Capacity {W} - {cfec8af2-8948-4c46-b386-58515631e01c}, !- Air Inlet Node Name - {4616c6cc-bdb6-4d3e-a2c3-0dfc59f29489}, !- Air Outlet Node Name + {8fc9496c-37f2-4053-9fcb-830b3f75efe4}, !- Air Inlet Node Name + {a9d43569-22af-4b9f-a914-24a80c05f262}, !- Air Outlet Node Name , !- Temperature Setpoint Node Name - 0, !- Parasitic Electric Load {W} + 0, !- On Cycle Parasitic Electric Load {W} , !- Part Load Fraction Correlation Curve Name - 0; !- Parasitic Gas Load {W} + 0; !- Off Cycle Parasitic Gas Load {W} OS:Curve:Biquadratic, - {40fec692-ed63-4f55-901e-c13c74063739}, !- Handle + {b1245226-2e2b-4b3a-b98f-0c60a26e45c9}, !- Handle Curve Biquadratic 1, !- Name 0.42415, !- Coefficient1 Constant 0.04426, !- Coefficient2 x -0.00042, !- Coefficient3 x**2 0.00333, !- Coefficient4 y - -8e-005, !- Coefficient5 y**2 + -8e-05, !- Coefficient5 y**2 -0.00021, !- Coefficient6 x*y 17, !- Minimum Value of x 22, !- Maximum Value of x @@ -2583,7 +2655,7 @@ OS:Curve:Biquadratic, 1000; !- Maximum Curve Output OS:Curve:Quadratic, - {82b43c6a-6e37-4b90-834e-f8cba1665253}, !- Handle + {82672836-59f4-465a-b024-94c754a645ab}, !- Handle Curve Quadratic 1, !- Name 0.77136, !- Coefficient1 Constant 0.34053, !- Coefficient2 x @@ -2594,7 +2666,7 @@ OS:Curve:Quadratic, 1000; !- Maximum Curve Output OS:Curve:Biquadratic, - {5719ccca-1a04-47b0-b10d-2a65d8e6322c}, !- Handle + {64e448e1-907f-4811-bb9e-9a0c1efab1b3}, !- Handle Curve Biquadratic 2, !- Name 1.23649, !- Coefficient1 Constant -0.02431, !- Coefficient2 x @@ -2610,7 +2682,7 @@ OS:Curve:Biquadratic, 1000; !- Maximum Curve Output OS:Curve:Quadratic, - {02817041-348a-40cf-a190-456fd8128ebb}, !- Handle + {a851fd65-7055-4175-a286-e0fc799a3bd4}, !- Handle Curve Quadratic 2, !- Name 1.2055, !- Coefficient1 Constant -0.32953, !- Coefficient2 x @@ -2621,7 +2693,7 @@ OS:Curve:Quadratic, 1000; !- Maximum Curve Output OS:Curve:Quadratic, - {d8786894-f31c-4ee9-b6f8-79dd44685dfc}, !- Handle + {ce87d81d-7efa-4fab-a38d-58f22be2e583}, !- Handle Curve Quadratic 3, !- Name 0.771, !- Coefficient1 Constant 0.229, !- Coefficient2 x @@ -2632,69 +2704,75 @@ OS:Curve:Quadratic, 1; !- Maximum Curve Output OS:Coil:Cooling:DX:SingleSpeed, - {50f83082-71db-4dac-acfb-03b5a65b2623}, !- Handle + {7f09499a-414b-469e-9b29-45b3427566a8}, !- Handle Coil Cooling DX Single Speed 1, !- Name - {ac27bd9e-96a8-4fed-b7aa-06b830184239}, !- Availability Schedule Name + {45099c38-6879-4fff-b3dd-d328d7cdfc3d}, !- Availability Schedule Name autosize, !- Rated Total Cooling Capacity {W} autosize, !- Rated Sensible Heat Ratio 3, !- Rated COP {W/W} autosize, !- Rated Air Flow Rate {m3/s} - 773.3, !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)} - {2f2ae158-bdb4-40e9-b592-c1e18ac38331}, !- Air Inlet Node Name - {519e1e26-e03b-48d6-af94-1cafbb7458b3}, !- Air Outlet Node Name - {40fec692-ed63-4f55-901e-c13c74063739}, !- Total Cooling Capacity Function of Temperature Curve Name - {82b43c6a-6e37-4b90-834e-f8cba1665253}, !- Total Cooling Capacity Function of Flow Fraction Curve Name - {5719ccca-1a04-47b0-b10d-2a65d8e6322c}, !- Energy Input Ratio Function of Temperature Curve Name - {02817041-348a-40cf-a190-456fd8128ebb}, !- Energy Input Ratio Function of Flow Fraction Curve Name - {d8786894-f31c-4ee9-b6f8-79dd44685dfc}, !- 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} - , !- Maximum Cycling Rate {cycles/hr} - , !- Latent Capacity Time Constant {s} + 773.3, !- Rated Evaporator Fan Power Per Volume Flow Rate 2017 {W/(m3/s)} + 934.4, !- Rated Evaporator Fan Power Per Volume Flow Rate 2023 {W/(m3/s)} + {b0bf5917-2803-48f5-866e-11d145aeeb9b}, !- Air Inlet Node Name + {4471e384-c763-4bc5-8269-0ab73ff43fe1}, !- Air Outlet Node Name + {b1245226-2e2b-4b3a-b98f-0c60a26e45c9}, !- Total Cooling Capacity Function of Temperature Curve Name + {82672836-59f4-465a-b024-94c754a645ab}, !- Total Cooling Capacity Function of Flow Fraction Curve Name + {64e448e1-907f-4811-bb9e-9a0c1efab1b3}, !- Energy Input Ratio Function of Temperature Curve Name + {a851fd65-7055-4175-a286-e0fc799a3bd4}, !- Energy Input Ratio Function of Flow Fraction Curve Name + {ce87d81d-7efa-4fab-a38d-58f22be2e583}, !- Part Load Fraction Correlation Curve Name + -25, !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C} + 0, !- Nominal Time for Condensate Removal to Begin {s} + 0, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + 0, !- Maximum Cycling Rate {cycles/hr} + 0, !- Latent Capacity Time Constant {s} , !- Condenser Air Inlet Node Name AirCooled, !- Condenser Type - 0, !- Evaporative Condenser Effectiveness {dimensionless} - Autosize, !- Evaporative Condenser Air Flow Rate {m3/s} - Autosize, !- Evaporative Condenser Pump Rated Power Consumption {W} + 0.9, !- Evaporative Condenser Effectiveness {dimensionless} + autosize, !- Evaporative Condenser Air Flow Rate {m3/s} + autosize, !- Evaporative Condenser Pump Rated Power Consumption {W} 0, !- Crankcase Heater Capacity {W} - 0, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C} + , !- Crankcase Heater Capacity Function of Temperature Curve Name + 10, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C} , !- Supply Water Storage Tank Name , !- Condensate Collection Water Storage Tank Name 0, !- Basin Heater Capacity {W/K} - 10, !- Basin Heater Setpoint Temperature {C} - ; !- Basin Heater Operating Schedule Name + 2; !- Basin Heater Setpoint Temperature {C} OS:EvaporativeCooler:Direct:ResearchSpecial, - {5e05823a-7498-44ba-9122-6160dc938005}, !- Handle + {d57a6203-3011-45bb-bdeb-7159e0f5dc29}, !- Handle Evaporative Cooler Direct Research Special 1, !- Name - {ac27bd9e-96a8-4fed-b7aa-06b830184239}, !- Availability Schedule Name - 1, !- Cooler Effectiveness + {45099c38-6879-4fff-b3dd-d328d7cdfc3d}, !- Availability Schedule Name + 1, !- Cooler Design Effectiveness 0, !- Recirculating Water Pump Power Consumption {W} - Autosize, !- Primary Air Design Flow Rate {m3/s} - {b201c597-5991-47c6-a451-c8c9e15214eb}, !- Air Inlet Node Name - {2fce10f1-d607-4e07-adcb-2af994cc2cce}, !- Air Outlet Node Name - {8608f700-2023-4277-b10a-277f68b863fe}, !- Sensor Node Name + , !- Primary Air Design Flow Rate {m3/s} + {712e2c38-a5e0-45cf-8b45-5297ff2b4b93}, !- Air Inlet Node Name + {590058ed-c077-40fb-8f57-33e68a980754}, !- Air Outlet Node Name + {d3edb653-b041-4b07-8f2a-653870b8d4f1}, !- Sensor Node Name 0, !- Drift Loss Fraction 0, !- Blowdown Concentration Ratio , !- Effectiveness Flow Ratio Modifier Curve Name - 0.1; !- Water Pump Power Sizing Factor {W/(m3/s)} - -OS:AirTerminal:SingleDuct:Uncontrolled, - {e95eecc2-55c3-4de1-99bb-7a31dd48c1ff}, !- Handle - Air Terminal Single Duct Uncontrolled 1, !- Name - {ac27bd9e-96a8-4fed-b7aa-06b830184239}, !- Availability Schedule Name - {682fd730-3099-4dd6-8a01-149de1dd75e6}, !- Inlet Air Node Name - {69640d9c-2df1-48e3-a2ed-b7b211e55de2}, !- Zone Supply Air Node Name + 0.1, !- Water Pump Power Sizing Factor {W/(m3/s)} + , !- Water Pump Power Modifier Curve Name + 16, !- Evaporative Operation Minimum Drybulb Temperature + 24, !- Evaporative Operation Maximum Limit Wetbulb Temperature + 28; !- Evaporative Operation Maximum Limit Drybulb Temperature + +OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat, + {5a051ef5-8b17-4a61-b11d-d197ac0cf5af}, !- Handle + Air Terminal Single Duct Constant Volume No Reheat 1, !- Name + {45099c38-6879-4fff-b3dd-d328d7cdfc3d}, !- Availability Schedule Name + {fbcbf3c6-117b-4d85-bd59-bae1e7ec8442}, !- Air Inlet Node Name + {97fa5689-8ac4-463b-be77-2c698137b94d}, !- Air Outlet Node Name AutoSize; !- Maximum Air Flow Rate {m3/s} OS:Controller:OutdoorAir, - {d743530d-3a15-487c-b0b4-46b772f1b10f}, !- Handle + {3d9a87c9-6436-424a-9cd0-ac350a4c9442}, !- Handle Controller Outdoor Air 1, !- Name , !- Relief Air Outlet Node Name , !- Return Air Node Name , !- Mixed Air Node Name , !- Actuator Node Name - Autosize, !- Minimum Outdoor Air Flow Rate {m3/s} + 0, !- Minimum Outdoor Air Flow Rate {m3/s} Autosize, !- Maximum Outdoor Air Flow Rate {m3/s} NoEconomizer, !- Economizer Control Type ModulateFlow, !- Economizer Control Action Type @@ -2708,194 +2786,194 @@ OS:Controller:OutdoorAir, , !- Minimum Outdoor Air Schedule Name , !- Minimum Fraction of Outdoor Air Schedule Name , !- Maximum Fraction of Outdoor Air Schedule Name - {754c0891-6e78-483f-854d-39acb1585b96}, !- Controller Mechanical Ventilation + {d0340c78-3ecb-4acd-ac9c-f40d11672f13}, !- 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 - BypassWhenOAFlowGreaterThanMinimum; !- Heat Recovery Bypass Control Type + BypassWhenWithinEconomizerLimits, !- Heat Recovery Bypass Control Type + InterlockedWithMechanicalCooling; !- Economizer Operation Staging OS:Controller:MechanicalVentilation, - {754c0891-6e78-483f-854d-39acb1585b96}, !- Handle + {d0340c78-3ecb-4acd-ac9c-f40d11672f13}, !- Handle Controller Mechanical Ventilation 1, !- Name - {2a10bc52-cb2d-4a4a-a91e-d59204a88546}, !- Availability Schedule + {c5d72238-e8cc-4e4b-8abc-48ea0d70043a}, !- Availability Schedule , !- Demand Controlled Ventilation - ZoneSum; !- System Outdoor Air Method + ; !- System Outdoor Air Method OS:Schedule:Constant, - {2a10bc52-cb2d-4a4a-a91e-d59204a88546}, !- Handle + {c5d72238-e8cc-4e4b-8abc-48ea0d70043a}, !- Handle Always On Discrete, !- Name - {86f21575-3513-4183-a4c6-8da255be4706}, !- Schedule Type Limits Name + {3eb3c47b-55e3-478d-899e-5bd564010cfc}, !- Schedule Type Limits Name 1; !- Value OS:ScheduleTypeLimits, - {86f21575-3513-4183-a4c6-8da255be4706}, !- Handle - Schedule Type Limits 1, !- Name + {3eb3c47b-55e3-478d-899e-5bd564010cfc}, !- Handle + OnOff 1, !- Name 0, !- Lower Limit Value 1, !- Upper Limit Value Discrete, !- Numeric Type Availability; !- Unit Type OS:AirLoopHVAC:OutdoorAirSystem, - {4557d61c-1de5-4320-bfd0-7554723baf39}, !- Handle + {24d3388d-de48-45be-857d-ddc0b4d9f88c}, !- Handle Air Loop HVAC Outdoor Air System 1, !- Name - {d743530d-3a15-487c-b0b4-46b772f1b10f}, !- Controller Name + {3d9a87c9-6436-424a-9cd0-ac350a4c9442}, !- Controller Name , !- Outdoor Air Equipment List Name , !- Availability Manager List Name - {c97556ea-dde0-4318-9c1b-b4115f25a40f}, !- Mixed Air Node Name - {20c8a4a0-98c2-47eb-aa9f-647c7e6c897d}, !- Outdoor Air Stream Node Name - {2d0e1fd4-3eb4-4424-83f1-c9aa38829433}, !- Relief Air Stream Node Name - {842e9e9e-53db-4a42-94d3-24a69a3a8c75}; !- Return Air Stream Node Name + {cc8aec63-1c4a-4135-b733-45f424798e55}, !- Mixed Air Node Name + {0a4d7dd1-3fd4-4529-8c80-ff2fd17402d8}, !- Outdoor Air Stream Node Name + {7c080c62-bfdb-4cae-944d-ca7b7a26c3d6}, !- Relief Air Stream Node Name + {c9d30833-0ca1-4dac-a95f-a72830b4664b}; !- Return Air Stream Node Name OS:Node, - {1f19e10a-c401-477f-a602-dcf57c9ceadc}, !- Handle - Node 2, !- Name + {c8708751-a5d1-4d05-9eb7-b4e6890acfca}, !- Handle + Outboard OA Node, !- Name , !- Inlet Port - {b201c597-5991-47c6-a451-c8c9e15214eb}; !- Outlet Port + {712e2c38-a5e0-45cf-8b45-5297ff2b4b93}; !- Outlet Port OS:Node, - {791c021c-1a50-42dc-a7c0-9d8ee11fa3f4}, !- Handle - Node 3, !- Name - {2d0e1fd4-3eb4-4424-83f1-c9aa38829433}, !- Inlet Port + {4b3f899c-a5e7-42bf-8c63-3207036ade3b}, !- Handle + Relief Node, !- Name + {7c080c62-bfdb-4cae-944d-ca7b7a26c3d6}, !- Inlet Port ; !- Outlet Port OS:Connection, - {2d0e1fd4-3eb4-4424-83f1-c9aa38829433}, !- Handle - Connection 3, !- Name - {4557d61c-1de5-4320-bfd0-7554723baf39}, !- Source Object + {7c080c62-bfdb-4cae-944d-ca7b7a26c3d6}, !- Handle + {24d3388d-de48-45be-857d-ddc0b4d9f88c}, !- Source Object 7, !- Outlet Port - {791c021c-1a50-42dc-a7c0-9d8ee11fa3f4}, !- Target Object + {4b3f899c-a5e7-42bf-8c63-3207036ade3b}, !- Target Object 2; !- Inlet Port OS:AirLoopHVAC, - {85cf90c9-9555-4437-9e91-1210fbc84bdd}, !- Handle + {eb3ca476-400a-4f9f-b453-a4074fedcb62}, !- Handle Air Loop HVAC 1, !- Name , !- Controller List Name - {2a10bc52-cb2d-4a4a-a91e-d59204a88546}, !- Availability Schedule - , !- Availability Manager - AutoSize, !- Design Supply Air Flow Rate {m3/s} + {c5d72238-e8cc-4e4b-8abc-48ea0d70043a}, !- Availability Schedule + {aeacf7f4-d313-4f59-80db-d0f3730f467b}, !- Availability Manager List Name + autosize, !- Design Supply Air Flow Rate {m3/s} + 1, !- Design Return Air Flow Fraction of Supply Air Flow , !- Branch List Name , !- Connector List Name - {904dbc49-5b4a-45e5-8bbd-e4f75a22607f}, !- Supply Side Inlet Node Name - {16266f96-6637-4945-89cc-89054b9eab85}, !- Demand Side Outlet Node Name - {718e601b-a6a4-4e69-ba90-1c6aeee6daa8}, !- Demand Side Inlet Node A - {2a7e1904-be9e-4447-939d-5ac0f0fdc167}, !- Supply Side Outlet Node A + {e5c06afc-36c4-4682-b690-c04f0a3cc00b}, !- Supply Side Inlet Node Name + {7953accd-93c0-42c7-86b3-44efc3c0fecf}, !- Demand Side Outlet Node Name + {753d1da8-2897-4f20-b61f-d850ea68f124}, !- Demand Side Inlet Node A + {a9aef150-d53a-4155-b197-4d39a91941b5}, !- Supply Side Outlet Node A , !- Demand Side Inlet Node B - ; !- Supply Side Outlet Node B + , !- Supply Side Outlet Node B + , !- Return Air Bypass Flow Temperature Setpoint Schedule Name + {8510e3b1-13dc-47b9-95fa-246e61e15d32}, !- Demand Mixer Name + {6aa394c4-a74f-4190-9632-d3caae34e900}, !- Demand Splitter A Name + , !- Demand Splitter B Name + ; !- Supply Splitter Name OS:Node, - {d23ccc0d-2206-4d45-ba97-61cd457755fa}, !- Handle - Node 4, !- Name - {904dbc49-5b4a-45e5-8bbd-e4f75a22607f}, !- Inlet Port - {842e9e9e-53db-4a42-94d3-24a69a3a8c75}; !- Outlet Port + {c0d4c618-b6be-49ee-8390-d1ceb0a47bcf}, !- Handle + Node 2, !- Name + {e5c06afc-36c4-4682-b690-c04f0a3cc00b}, !- Inlet Port + {c9d30833-0ca1-4dac-a95f-a72830b4664b}; !- Outlet Port OS:Node, - {d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Handle - Node 5, !- Name - {3be07c83-a6d2-4ff2-a87f-993944ae42ca}, !- Inlet Port - {2a7e1904-be9e-4447-939d-5ac0f0fdc167}; !- Outlet Port + {d9b0accf-6865-4c4e-9337-d36e902fe76b}, !- Handle + Node 3, !- Name + {bcd79445-aa6d-4f9d-b42b-cfd9e5fec780}, !- Inlet Port + {a9aef150-d53a-4155-b197-4d39a91941b5}; !- Outlet Port OS:Connection, - {904dbc49-5b4a-45e5-8bbd-e4f75a22607f}, !- Handle - Connection 4, !- Name - {85cf90c9-9555-4437-9e91-1210fbc84bdd}, !- Source Object - 7, !- Outlet Port - {d23ccc0d-2206-4d45-ba97-61cd457755fa}, !- Target Object + {e5c06afc-36c4-4682-b690-c04f0a3cc00b}, !- Handle + {eb3ca476-400a-4f9f-b453-a4074fedcb62}, !- Source Object + 9, !- Outlet Port + {c0d4c618-b6be-49ee-8390-d1ceb0a47bcf}, !- Target Object 2; !- Inlet Port OS:Connection, - {2a7e1904-be9e-4447-939d-5ac0f0fdc167}, !- Handle - Connection 6, !- Name - {d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Source Object + {a9aef150-d53a-4155-b197-4d39a91941b5}, !- Handle + {d9b0accf-6865-4c4e-9337-d36e902fe76b}, !- Source Object 3, !- Outlet Port - {85cf90c9-9555-4437-9e91-1210fbc84bdd}, !- Target Object - 10; !- Inlet Port + {eb3ca476-400a-4f9f-b453-a4074fedcb62}, !- Target Object + 12; !- Inlet Port OS:Node, - {8d9e2b6d-725e-4585-8e45-5a97cd66b910}, !- Handle - Node 6, !- Name - {718e601b-a6a4-4e69-ba90-1c6aeee6daa8}, !- Inlet Port - {1347380a-cfb5-4921-928a-4c1006f4154f}; !- Outlet Port + {ebc137b5-f7a1-4ad2-adc8-22c26df14256}, !- Handle + Node 4, !- Name + {753d1da8-2897-4f20-b61f-d850ea68f124}, !- Inlet Port + {baf5ce5d-1ab9-4367-a7ad-16c01f7b4fcd}; !- Outlet Port OS:Node, - {6e246c06-9f03-4c28-8986-7bcd57c0d063}, !- Handle - Node 7, !- Name - {2cee7034-048b-41a7-82e4-1f0b74cb9c27}, !- Inlet Port - {16266f96-6637-4945-89cc-89054b9eab85}; !- Outlet Port + {e2b19a18-35db-4d46-afd0-0ba85b02822e}, !- Handle + Node 5, !- Name + {7523e46b-d11c-4e8c-9b60-df352954db35}, !- Inlet Port + {7953accd-93c0-42c7-86b3-44efc3c0fecf}; !- Outlet Port OS:Node, - {50e71686-fad3-44d5-86ce-0dce60e2fdf1}, !- Handle - Node 8, !- Name - {69640d9c-2df1-48e3-a2ed-b7b211e55de2}, !- Inlet Port - {b3d6b5b9-cb43-4f0f-9b7e-ff2b33b7f794}; !- Outlet Port + {09687c8e-5efb-4312-a5db-bc0e2632245a}, !- Handle + Node 6, !- Name + {97fa5689-8ac4-463b-be77-2c698137b94d}, !- Inlet Port + {f757e8d9-3efb-461e-a5ea-37bcc6e72500}; !- Outlet Port OS:Connection, - {718e601b-a6a4-4e69-ba90-1c6aeee6daa8}, !- Handle - Connection 7, !- Name - {85cf90c9-9555-4437-9e91-1210fbc84bdd}, !- Source Object - 9, !- Outlet Port - {8d9e2b6d-725e-4585-8e45-5a97cd66b910}, !- Target Object + {753d1da8-2897-4f20-b61f-d850ea68f124}, !- Handle + {eb3ca476-400a-4f9f-b453-a4074fedcb62}, !- Source Object + 11, !- Outlet Port + {ebc137b5-f7a1-4ad2-adc8-22c26df14256}, !- Target Object 2; !- Inlet Port OS:Connection, - {16266f96-6637-4945-89cc-89054b9eab85}, !- Handle - Connection 8, !- Name - {6e246c06-9f03-4c28-8986-7bcd57c0d063}, !- Source Object + {7953accd-93c0-42c7-86b3-44efc3c0fecf}, !- Handle + {e2b19a18-35db-4d46-afd0-0ba85b02822e}, !- Source Object 3, !- Outlet Port - {85cf90c9-9555-4437-9e91-1210fbc84bdd}, !- Target Object - 8; !- Inlet Port + {eb3ca476-400a-4f9f-b453-a4074fedcb62}, !- Target Object + 10; !- Inlet Port OS:AirLoopHVAC:ZoneSplitter, - {82de5883-47f2-4491-a1b5-7f25cf1c9380}, !- Handle + {6aa394c4-a74f-4190-9632-d3caae34e900}, !- Handle Air Loop HVAC Zone Splitter 1, !- Name - {1347380a-cfb5-4921-928a-4c1006f4154f}, !- Inlet Node Name - {682fd730-3099-4dd6-8a01-149de1dd75e6}; !- Outlet Node Name 1 + {baf5ce5d-1ab9-4367-a7ad-16c01f7b4fcd}, !- Inlet Node Name + {9ffe203b-91eb-4eef-b023-c95441fa52c1}; !- Outlet Node Name 1 OS:AirLoopHVAC:ZoneMixer, - {c7de8071-03fa-4f40-89c0-5044a1d282ac}, !- Handle + {8510e3b1-13dc-47b9-95fa-246e61e15d32}, !- Handle Air Loop HVAC Zone Mixer 1, !- Name - {2cee7034-048b-41a7-82e4-1f0b74cb9c27}, !- Outlet Node Name - {383d018b-c1f6-4730-8085-0dfb460481c7}; !- Inlet Node Name 1 + {7523e46b-d11c-4e8c-9b60-df352954db35}, !- Outlet Node Name + {1724c9f1-cda7-4456-8e91-7d8a4ea02a2d}; !- Inlet Node Name 1 OS:Connection, - {1347380a-cfb5-4921-928a-4c1006f4154f}, !- Handle - Connection 9, !- Name - {8d9e2b6d-725e-4585-8e45-5a97cd66b910}, !- Source Object + {baf5ce5d-1ab9-4367-a7ad-16c01f7b4fcd}, !- Handle + {ebc137b5-f7a1-4ad2-adc8-22c26df14256}, !- Source Object 3, !- Outlet Port - {82de5883-47f2-4491-a1b5-7f25cf1c9380}, !- Target Object + {6aa394c4-a74f-4190-9632-d3caae34e900}, !- Target Object 2; !- Inlet Port OS:Connection, - {2cee7034-048b-41a7-82e4-1f0b74cb9c27}, !- Handle - Connection 12, !- Name - {c7de8071-03fa-4f40-89c0-5044a1d282ac}, !- Source Object + {7523e46b-d11c-4e8c-9b60-df352954db35}, !- Handle + {8510e3b1-13dc-47b9-95fa-246e61e15d32}, !- Source Object 2, !- Outlet Port - {6e246c06-9f03-4c28-8986-7bcd57c0d063}, !- Target Object + {e2b19a18-35db-4d46-afd0-0ba85b02822e}, !- Target Object 2; !- Inlet Port OS:Sizing:System, - {f1b9f802-8c6d-4c85-8451-75df97621e6e}, !- Handle - {85cf90c9-9555-4437-9e91-1210fbc84bdd}, !- AirLoop Name - Sensible, !- Type of Load to Size On - Autosize, !- Design Outdoor Air Flow Rate {m3/s} - 0.3, !- Minimum System Air Flow Ratio + {5aadf251-82fa-4944-8471-0d15178c33c6}, !- Handle + {eb3ca476-400a-4f9f-b453-a4074fedcb62}, !- AirLoop Name + , !- Type of Load to Size On + , !- Design Outdoor Air Flow Rate {m3/s} + 0.3, !- 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} 12.8, !- Central Cooling Design Supply Air Temperature {C} 16.7, !- Central Heating Design Supply Air Temperature {C} - NonCoincident, !- Sizing Option + , !- 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} - 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air} - DesignDay, !- Cooling Design Air Flow Method - 0, !- Cooling Design Air Flow Rate {m3/s} - DesignDay, !- Heating Design Air Flow Method - 0, !- Heating Design Air Flow Rate {m3/s} - ZoneSum, !- System Outdoor Air Method + , !- 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} + , !- 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 @@ -2905,360 +2983,243 @@ OS:Sizing:System, 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 - Autosize, !- Cooling Design Capacity {W} + autosize, !- 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 - Autosize, !- Heating Design Capacity {W} + autosize, !- 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 + OnOff, !- Central Cooling Capacity Control Method + autosize; !- Occupant Diversity + +OS:AvailabilityManagerAssignmentList, + {aeacf7f4-d313-4f59-80db-d0f3730f467b}, !- Handle + Air Loop HVAC 1 AvailabilityManagerAssignmentList; !- Name OS:Node, - {1f57ab27-7640-49b5-8eb2-d9f55018c20c}, !- Handle - Node 9, !- Name - {5e7dd03f-e665-4b39-b57e-bca1d58755d5}, !- Inlet Port - {383d018b-c1f6-4730-8085-0dfb460481c7}; !- Outlet Port + {6636c5bf-4a13-4189-95ce-73ea2cfd6648}, !- Handle + Node 7, !- Name + {1e4a221a-1019-4f57-823f-e6b1002efd11}, !- Inlet Port + {1724c9f1-cda7-4456-8e91-7d8a4ea02a2d}; !- Outlet Port OS:Connection, - {b3d6b5b9-cb43-4f0f-9b7e-ff2b33b7f794}, !- Handle - Connection 11, !- Name - {50e71686-fad3-44d5-86ce-0dce60e2fdf1}, !- Source Object + {f757e8d9-3efb-461e-a5ea-37bcc6e72500}, !- Handle + {09687c8e-5efb-4312-a5db-bc0e2632245a}, !- Source Object 3, !- Outlet Port - {3c07bf71-fc6c-47ee-ba46-40685d96292e}, !- Target Object - 3; !- Inlet Port + {10ce9766-f380-4343-a666-1cb353276776}, !- Target Object + 2; !- Inlet Port OS:Connection, - {5e7dd03f-e665-4b39-b57e-bca1d58755d5}, !- Handle - Connection 13, !- Name - {fc71e57a-151a-46b8-a678-25e6fe6f7b47}, !- Source Object - 12, !- Outlet Port - {1f57ab27-7640-49b5-8eb2-d9f55018c20c}, !- Target Object + {1e4a221a-1019-4f57-823f-e6b1002efd11}, !- Handle + {26156bc8-d8be-48f1-a8cd-308fafdc00d9}, !- Source Object + 2, !- Outlet Port + {6636c5bf-4a13-4189-95ce-73ea2cfd6648}, !- Target Object 2; !- Inlet Port OS:Connection, - {383d018b-c1f6-4730-8085-0dfb460481c7}, !- Handle - Connection 14, !- Name - {1f57ab27-7640-49b5-8eb2-d9f55018c20c}, !- Source Object + {1724c9f1-cda7-4456-8e91-7d8a4ea02a2d}, !- Handle + {6636c5bf-4a13-4189-95ce-73ea2cfd6648}, !- Source Object 3, !- Outlet Port - {c7de8071-03fa-4f40-89c0-5044a1d282ac}, !- Target Object + {8510e3b1-13dc-47b9-95fa-246e61e15d32}, !- Target Object 3; !- Inlet Port +OS:Node, + {4055efc1-330c-41bc-900f-ea60168f4164}, !- Handle + Node 8, !- Name + {9ffe203b-91eb-4eef-b023-c95441fa52c1}, !- Inlet Port + {fbcbf3c6-117b-4d85-bd59-bae1e7ec8442}; !- Outlet Port + +OS:Connection, + {9ffe203b-91eb-4eef-b023-c95441fa52c1}, !- Handle + {6aa394c4-a74f-4190-9632-d3caae34e900}, !- Source Object + 3, !- Outlet Port + {4055efc1-330c-41bc-900f-ea60168f4164}, !- Target Object + 2; !- Inlet Port + OS:Connection, - {682fd730-3099-4dd6-8a01-149de1dd75e6}, !- Handle - Connection 10, !- Name - {82de5883-47f2-4491-a1b5-7f25cf1c9380}, !- Source Object + {fbcbf3c6-117b-4d85-bd59-bae1e7ec8442}, !- Handle + {4055efc1-330c-41bc-900f-ea60168f4164}, !- Source Object 3, !- Outlet Port - {e95eecc2-55c3-4de1-99bb-7a31dd48c1ff}, !- Target Object + {5a051ef5-8b17-4a61-b11d-d197ac0cf5af}, !- Target Object 3; !- Inlet Port OS:Connection, - {69640d9c-2df1-48e3-a2ed-b7b211e55de2}, !- Handle - Connection 15, !- Name - {e95eecc2-55c3-4de1-99bb-7a31dd48c1ff}, !- Source Object + {97fa5689-8ac4-463b-be77-2c698137b94d}, !- Handle + {5a051ef5-8b17-4a61-b11d-d197ac0cf5af}, !- Source Object 4, !- Outlet Port - {50e71686-fad3-44d5-86ce-0dce60e2fdf1}, !- Target Object + {09687c8e-5efb-4312-a5db-bc0e2632245a}, !- Target Object 2; !- Inlet Port OS:Connection, - {3be07c83-a6d2-4ff2-a87f-993944ae42ca}, !- Handle - Connection 16, !- Name - {59bd5da9-ec95-4ef4-a694-d56122eb57c8}, !- Source Object + {bcd79445-aa6d-4f9d-b42b-cfd9e5fec780}, !- Handle + {4743cda7-d761-4a9b-b737-90928dbba424}, !- Source Object 9, !- Outlet Port - {d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Target Object + {d9b0accf-6865-4c4e-9337-d36e902fe76b}, !- Target Object 2; !- Inlet Port OS:Node, - {c80f15f1-3a41-4a39-8bf7-5648f564b00a}, !- Handle - Node 10, !- Name - {4616c6cc-bdb6-4d3e-a2c3-0dfc59f29489}, !- Inlet Port - {db39f946-0d49-4f43-b455-48ec981cc620}; !- Outlet Port + {ee950ff9-2f33-4a0c-a2c4-335795fe292c}, !- Handle + Node 9, !- Name + {a9d43569-22af-4b9f-a914-24a80c05f262}, !- Inlet Port + {5366adbf-a2f2-412a-80db-acc03c6f1b37}; !- Outlet Port OS:Connection, - {4616c6cc-bdb6-4d3e-a2c3-0dfc59f29489}, !- Handle - Connection 17, !- Name - {d3bcc350-6fcc-48d2-b70e-18536a02797e}, !- Source Object + {a9d43569-22af-4b9f-a914-24a80c05f262}, !- Handle + {bebf41b9-2091-4067-8e2e-b4f3e910b293}, !- Source Object 6, !- Outlet Port - {c80f15f1-3a41-4a39-8bf7-5648f564b00a}, !- Target Object + {ee950ff9-2f33-4a0c-a2c4-335795fe292c}, !- Target Object 2; !- Inlet Port OS:Connection, - {db39f946-0d49-4f43-b455-48ec981cc620}, !- Handle - Connection 18, !- Name - {c80f15f1-3a41-4a39-8bf7-5648f564b00a}, !- Source Object + {5366adbf-a2f2-412a-80db-acc03c6f1b37}, !- Handle + {ee950ff9-2f33-4a0c-a2c4-335795fe292c}, !- Source Object 3, !- Outlet Port - {59bd5da9-ec95-4ef4-a694-d56122eb57c8}, !- Target Object + {4743cda7-d761-4a9b-b737-90928dbba424}, !- Target Object 8; !- Inlet Port OS:Node, - {0e05ee46-f95f-46a5-a8e4-837fe600d21d}, !- Handle - Node 11, !- Name - {519e1e26-e03b-48d6-af94-1cafbb7458b3}, !- Inlet Port - {cfec8af2-8948-4c46-b386-58515631e01c}; !- Outlet Port + {bee08740-ced5-4214-a637-c0b4d04f63bf}, !- Handle + Node 10, !- Name + {4471e384-c763-4bc5-8269-0ab73ff43fe1}, !- Inlet Port + {8fc9496c-37f2-4053-9fcb-830b3f75efe4}; !- Outlet Port OS:Connection, - {519e1e26-e03b-48d6-af94-1cafbb7458b3}, !- Handle - Connection 19, !- Name - {50f83082-71db-4dac-acfb-03b5a65b2623}, !- Source Object - 9, !- Outlet Port - {0e05ee46-f95f-46a5-a8e4-837fe600d21d}, !- Target Object + {4471e384-c763-4bc5-8269-0ab73ff43fe1}, !- Handle + {7f09499a-414b-469e-9b29-45b3427566a8}, !- Source Object + 10, !- Outlet Port + {bee08740-ced5-4214-a637-c0b4d04f63bf}, !- Target Object 2; !- Inlet Port OS:Connection, - {cfec8af2-8948-4c46-b386-58515631e01c}, !- Handle - Connection 20, !- Name - {0e05ee46-f95f-46a5-a8e4-837fe600d21d}, !- Source Object + {8fc9496c-37f2-4053-9fcb-830b3f75efe4}, !- Handle + {bee08740-ced5-4214-a637-c0b4d04f63bf}, !- Source Object 3, !- Outlet Port - {d3bcc350-6fcc-48d2-b70e-18536a02797e}, !- Target Object + {bebf41b9-2091-4067-8e2e-b4f3e910b293}, !- Target Object 5; !- Inlet Port OS:Node, - {4dd0127a-5588-4ee3-852c-5230a2e0053a}, !- Handle - Node 12, !- Name - {c97556ea-dde0-4318-9c1b-b4115f25a40f}, !- Inlet Port - {2f2ae158-bdb4-40e9-b592-c1e18ac38331}; !- Outlet Port + {73f94c7e-f058-4168-8cda-695c0d64e7fa}, !- Handle + Node 11, !- Name + {cc8aec63-1c4a-4135-b733-45f424798e55}, !- Inlet Port + {b0bf5917-2803-48f5-866e-11d145aeeb9b}; !- Outlet Port OS:Connection, - {842e9e9e-53db-4a42-94d3-24a69a3a8c75}, !- Handle - Connection 5, !- Name - {d23ccc0d-2206-4d45-ba97-61cd457755fa}, !- Source Object + {c9d30833-0ca1-4dac-a95f-a72830b4664b}, !- Handle + {c0d4c618-b6be-49ee-8390-d1ceb0a47bcf}, !- Source Object 3, !- Outlet Port - {4557d61c-1de5-4320-bfd0-7554723baf39}, !- Target Object + {24d3388d-de48-45be-857d-ddc0b4d9f88c}, !- Target Object 8; !- Inlet Port OS:Connection, - {c97556ea-dde0-4318-9c1b-b4115f25a40f}, !- Handle - Connection 21, !- Name - {4557d61c-1de5-4320-bfd0-7554723baf39}, !- Source Object + {cc8aec63-1c4a-4135-b733-45f424798e55}, !- Handle + {24d3388d-de48-45be-857d-ddc0b4d9f88c}, !- Source Object 5, !- Outlet Port - {4dd0127a-5588-4ee3-852c-5230a2e0053a}, !- Target Object + {73f94c7e-f058-4168-8cda-695c0d64e7fa}, !- Target Object 2; !- Inlet Port OS:Connection, - {2f2ae158-bdb4-40e9-b592-c1e18ac38331}, !- Handle - Connection 22, !- Name - {4dd0127a-5588-4ee3-852c-5230a2e0053a}, !- Source Object + {b0bf5917-2803-48f5-866e-11d145aeeb9b}, !- Handle + {73f94c7e-f058-4168-8cda-695c0d64e7fa}, !- Source Object 3, !- Outlet Port - {50f83082-71db-4dac-acfb-03b5a65b2623}, !- Target Object - 8; !- Inlet Port + {7f09499a-414b-469e-9b29-45b3427566a8}, !- Target Object + 9; !- Inlet Port OS:Node, - {8608f700-2023-4277-b10a-277f68b863fe}, !- Handle - Node 14, !- Name - {2fce10f1-d607-4e07-adcb-2af994cc2cce}, !- Inlet Port - {20c8a4a0-98c2-47eb-aa9f-647c7e6c897d}; !- Outlet Port + {d3edb653-b041-4b07-8f2a-653870b8d4f1}, !- Handle + Node 12, !- Name + {590058ed-c077-40fb-8f57-33e68a980754}, !- Inlet Port + {0a4d7dd1-3fd4-4529-8c80-ff2fd17402d8}; !- Outlet Port OS:Connection, - {b201c597-5991-47c6-a451-c8c9e15214eb}, !- Handle - Connection 2, !- Name - {1f19e10a-c401-477f-a602-dcf57c9ceadc}, !- Source Object + {0a4d7dd1-3fd4-4529-8c80-ff2fd17402d8}, !- Handle + {d3edb653-b041-4b07-8f2a-653870b8d4f1}, !- Source Object 3, !- Outlet Port - {5e05823a-7498-44ba-9122-6160dc938005}, !- Target Object - 5; !- Inlet Port - -OS:Connection, - {2fce10f1-d607-4e07-adcb-2af994cc2cce}, !- Handle - Connection 23, !- Name - {5e05823a-7498-44ba-9122-6160dc938005}, !- Source Object - 6, !- Outlet Port - {8608f700-2023-4277-b10a-277f68b863fe}, !- Target Object - 2; !- Inlet Port + {24d3388d-de48-45be-857d-ddc0b4d9f88c}, !- Target Object + 6; !- Inlet Port OS:Connection, - {20c8a4a0-98c2-47eb-aa9f-647c7e6c897d}, !- Handle - Connection 24, !- Name - {8608f700-2023-4277-b10a-277f68b863fe}, !- Source Object + {712e2c38-a5e0-45cf-8b45-5297ff2b4b93}, !- Handle + {c8708751-a5d1-4d05-9eb7-b4e6890acfca}, !- Source Object 3, !- Outlet Port - {4557d61c-1de5-4320-bfd0-7554723baf39}, !- Target Object + {d57a6203-3011-45bb-bdeb-7159e0f5dc29}, !- Target Object 6; !- Inlet Port +OS:Connection, + {590058ed-c077-40fb-8f57-33e68a980754}, !- Handle + {d57a6203-3011-45bb-bdeb-7159e0f5dc29}, !- Source Object + 7, !- Outlet Port + {d3edb653-b041-4b07-8f2a-653870b8d4f1}, !- Target Object + 2; !- Inlet Port + OS:SetpointManager:MixedAir, - {96da8eb4-db4b-4d42-8168-da2aa0674c24}, !- Handle + {452a6e15-45b8-4ffe-9dfc-444e9eca4f72}, !- Handle Setpoint Manager Mixed Air 1, !- Name - , !- Control Variable - {d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Reference Setpoint Node Name - {c80f15f1-3a41-4a39-8bf7-5648f564b00a}, !- Fan Inlet Node Name - {d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Fan Outlet Node Name - {4dd0127a-5588-4ee3-852c-5230a2e0053a}; !- Setpoint Node or NodeList Name + Temperature, !- Control Variable + {d9b0accf-6865-4c4e-9337-d36e902fe76b}, !- Reference Setpoint Node Name + {ee950ff9-2f33-4a0c-a2c4-335795fe292c}, !- Fan Inlet Node Name + {d9b0accf-6865-4c4e-9337-d36e902fe76b}, !- Fan Outlet Node Name + {73f94c7e-f058-4168-8cda-695c0d64e7fa}; !- Setpoint Node or NodeList Name OS:SetpointManager:MixedAir, - {ea6f8638-bde4-4e5a-8c23-344afe8e6d08}, !- Handle + {696b3ba9-5229-4551-aee7-acb955cd92fa}, !- Handle Setpoint Manager Mixed Air 2, !- Name - , !- Control Variable - {d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Reference Setpoint Node Name - {c80f15f1-3a41-4a39-8bf7-5648f564b00a}, !- Fan Inlet Node Name - {d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Fan Outlet Node Name - {0e05ee46-f95f-46a5-a8e4-837fe600d21d}; !- Setpoint Node or NodeList Name + Temperature, !- Control Variable + {d9b0accf-6865-4c4e-9337-d36e902fe76b}, !- Reference Setpoint Node Name + {ee950ff9-2f33-4a0c-a2c4-335795fe292c}, !- Fan Inlet Node Name + {d9b0accf-6865-4c4e-9337-d36e902fe76b}, !- Fan Outlet Node Name + {bee08740-ced5-4214-a637-c0b4d04f63bf}; !- Setpoint Node or NodeList Name OS:SetpointManager:MixedAir, - {19e3f82c-6d69-4fd4-a5ee-15da78882cf9}, !- Handle + {9514eaf1-7616-4103-a2ce-6ef1f8a1fed4}, !- Handle Setpoint Manager Mixed Air 3, !- Name - , !- Control Variable - {d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Reference Setpoint Node Name - {c80f15f1-3a41-4a39-8bf7-5648f564b00a}, !- Fan Inlet Node Name - {d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Fan Outlet Node Name - {c80f15f1-3a41-4a39-8bf7-5648f564b00a}; !- Setpoint Node or NodeList Name + Temperature, !- Control Variable + {d9b0accf-6865-4c4e-9337-d36e902fe76b}, !- Reference Setpoint Node Name + {ee950ff9-2f33-4a0c-a2c4-335795fe292c}, !- Fan Inlet Node Name + {d9b0accf-6865-4c4e-9337-d36e902fe76b}, !- Fan Outlet Node Name + {ee950ff9-2f33-4a0c-a2c4-335795fe292c}; !- Setpoint Node or NodeList Name OS:SetpointManager:MixedAir, - {b099eb55-9ed2-49b7-8647-7d2fb8da8eb2}, !- Handle + {95cc8eca-caf5-4a8f-a058-3a91f8127578}, !- Handle Setpoint Manager Mixed Air 4, !- Name - , !- Control Variable - {d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Reference Setpoint Node Name - {c80f15f1-3a41-4a39-8bf7-5648f564b00a}, !- Fan Inlet Node Name - {d24ce95a-634b-4e5e-8753-e839b4b79dd0}, !- Fan Outlet Node Name - {8608f700-2023-4277-b10a-277f68b863fe}; !- Setpoint Node or NodeList Name + Temperature, !- Control Variable + {d9b0accf-6865-4c4e-9337-d36e902fe76b}, !- Reference Setpoint Node Name + {ee950ff9-2f33-4a0c-a2c4-335795fe292c}, !- Fan Inlet Node Name + {d9b0accf-6865-4c4e-9337-d36e902fe76b}, !- Fan Outlet Node Name + {d3edb653-b041-4b07-8f2a-653870b8d4f1}; !- Setpoint Node or NodeList Name OS:SetpointManager:SingleZone:Reheat, - {22fb0750-e18b-4b79-a2dc-e710c3426b95}, !- Handle + {5b8fbb0d-23b1-4ddb-a0b7-417933e6ffc0}, !- Handle Setpoint Manager Single Zone Reheat 1, !- Name -99, !- Minimum Supply Air Temperature {C} 99, !- Maximum Supply Air Temperature {C} - {fc71e57a-151a-46b8-a678-25e6fe6f7b47}, !- Control Zone Name - {d24ce95a-634b-4e5e-8753-e839b4b79dd0}; !- Setpoint Node or NodeList Name + {f29d2922-c50e-4c0b-bde4-236ff70525a0}, !- Control Zone Name + {d9b0accf-6865-4c4e-9337-d36e902fe76b}; !- Setpoint Node or NodeList Name OS:Output:Variable, - {53396c41-2d2b-4372-9510-246eddcf8b43}, !- Handle + {a78f4bdb-5309-4814-8d23-4f7dea23a137}, !- Handle Output Variable 1, !- Name - *, !- Key Value + , !- Key Value Zone Outdoor Air Drybulb Temperature; !- Variable Name OS:Output:Variable, - {89a82f45-298f-4938-9c1e-8ca1b201d618}, !- Handle + {ca08a835-5488-434b-8592-1a991474154d}, !- Handle Output Variable 2, !- Name - *, !- Key Value - Zone Outdoor Air Wetbulb Temperature; !- Variable Name - -OS:Output:Variable, - {b6166f3a-2f27-43d9-b9cc-da15c738be6d}, !- Handle - Output Variable 3, !- Name - *, !- Key Value + , !- Key Value Surface Inside Face Temperature; !- Variable Name -OS:Output:Variable, - {e6d9045f-4663-48da-bb46-960f812a514c}, !- Handle - Output Variable 4, !- Name - *, !- Key Value - Surface Outside Face Temperature; !- Variable Name - OS:Output:Meter, - {a60ebd85-57b3-471b-a95f-21bda9b0dc8a}, !- Handle + {f4dbcaa2-b485-415a-9161-1d894f713147}, !- Handle Electricity:Facility, !- Name Hourly; !- Reporting Frequency OS:Output:Meter, - {47503b76-9590-4fa7-95f3-d730ed27e9fc}, !- Handle - Gas:Facility, !- Name + {f42dc25a-a2a5-495f-892e-8cbb136d7cf3}, !- Handle + NaturalGas:Facility, !- Name Hourly; !- Reporting Frequency OS:Output:Meter, - {46cc5b2e-bbf7-48a5-9ee1-89b94a4d6cb9}, !- Handle + {d2f80464-7b0d-416d-8e18-0e925778eafd}, !- Handle Propane:Facility, !- Name Hourly; !- Reporting Frequency -OS:YearDescription, - {cc25c0b7-0a9a-4a68-8068-93a13153fb44}, !- Handle - , !- Calendar Year - Sunday; !- Day of Week for Start Day - -OS:RadianceParameters, - {46c82c0e-60d3-4bad-ac61-998576d94182}, !- Handle - 1, !- Accumulated Rays per Record - 0, !- Direct Threshold - 1, !- Direct Certainty - 1, !- Direct Jitter - 1, !- Direct Pretest - 6, !- Ambient Bounces VMX - 2, !- Ambient Bounces DMX - 4050, !- Ambient Divisions VMX - 512, !- Ambient Divisions DMX - 256, !- Ambient Supersamples - 0.001, !- Limit Weight VMX - 0.001, !- Limit Weight DMX - 500, !- Klems Sampling Density - 146; !- Sky Discretization Resolution - -OS:Sizing:Parameters, - {77451c42-cf75-4ea0-b1a9-bdb193b96b0c}, !- Handle - 1.25, !- Heating Sizing Factor - 1.15; !- Cooling Sizing Factor - -OS:ProgramControl, - {807ad925-cc53-445d-aaa2-905a99ddfa0d}; !- Handle - -OS:OutputControl:ReportingTolerances, - {3059009e-a46e-45bb-b74a-f0c2b28ff695}; !- Handle - -OS:ZoneAirContaminantBalance, - {a72820f2-f7df-417d-b6e8-07787aa81fcb}; !- Handle - -OS:ZoneCapacitanceMultiplier:ResearchSpecial, - {d9422987-dfa2-41cd-b95d-410bf94d5db9}, !- Handle - , !- Temperature Capacity Multiplier - , !- Humidity Capacity Multiplier - ; !- Carbon Dioxide Capacity Multiplier - -OS:RunPeriod, - {eda09313-72c2-4707-b5d5-7df8afcc3ad0}, !- 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:Rendering:Color, - {8a5091f9-381f-4a4b-b5cb-353801cfb21f}, !- Handle - Rendering Color 1, !- Name - 240, !- Rendering Red Value - 255, !- Rendering Green Value - 255; !- Rendering Blue Value - -OS:Rendering:Color, - {9ef04724-9b33-4053-b66f-94ef7f280b7d}, !- Handle - Rendering Color 2, !- Name - 0, !- Rendering Red Value - 0, !- Rendering Green Value - 255; !- Rendering Blue Value - -OS:Building, - {e11b34af-2bb6-4f16-8082-cbd61ee7679e}, !- Handle - Building 1, !- Name - , !- Building Sector Type - , !- North Axis {deg} - , !- Nominal Floor to Floor Height {m} - {53148cd3-f7e8-45bd-becf-46361d6848b4}, !- Space Type Name - {c50911a9-e76e-4759-bb87-25716b1a78da}, !- Default Construction Set Name - {530f9623-af4a-491d-9109-39cfa4e2ff70}; !- Default Schedule Set Name - -OS:ClimateZones, - {02f686a8-1787-4936-9a5f-61184b34e123}, !- Handle - , !- Active Institution - , !- Active Year - ASHRAE, !- Climate Zone Institution Name 1 - ANSI/ASHRAE Standard 169, !- Climate Zone Document Name 1 - 2006, !- Climate Zone Document Year 1 - , !- Climate Zone Value 1 - CEC, !- Climate Zone Institution Name 2 - California Climate Zone Descriptions, !- Climate Zone Document Name 2 - 1995, !- Climate Zone Document Year 2 - ; !- Climate Zone Value 2 - -OS:LifeCycleCost:Parameters, - {0f852ce9-009e-4255-b97a-a1c416d8367d}, !- 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 - From ba6371ce8321c2ea8ae48d7955b10854e250d1f3 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Tue, 16 Apr 2024 13:01:11 +0200 Subject: [PATCH 05/22] Add ability to run a pytest file from the openstudio CLI. --- .../EnergyPlusMeasure/tests/test_energyplus_measure.py | 5 +++++ .../templates/ModelMeasure/tests/test_model_measure.py | 9 +++++++-- .../ReportingMeasure/tests/test_reporting_measure.py | 10 +++++++++- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/src/utilities/bcl/templates/EnergyPlusMeasure/tests/test_energyplus_measure.py b/src/utilities/bcl/templates/EnergyPlusMeasure/tests/test_energyplus_measure.py index aad1c43e3b7..6a3eb327779 100644 --- a/src/utilities/bcl/templates/EnergyPlusMeasure/tests/test_energyplus_measure.py +++ b/src/utilities/bcl/templates/EnergyPlusMeasure/tests/test_energyplus_measure.py @@ -113,3 +113,8 @@ def test_good_argument_values(self): # save the workspace to test output directory output_file_path = Path(__file__).parent.absolute() / "output" / "test_output.idf" workspace.save(output_file_path, True) + + +# This allows running openstudio CLI on this file (`openstudio test_measure.py`) +if __name__ == "__main__": + pytest.main() diff --git a/src/utilities/bcl/templates/ModelMeasure/tests/test_model_measure.py b/src/utilities/bcl/templates/ModelMeasure/tests/test_model_measure.py index 7d2bf5745f1..a1bc1d5fe1e 100644 --- a/src/utilities/bcl/templates/ModelMeasure/tests/test_model_measure.py +++ b/src/utilities/bcl/templates/ModelMeasure/tests/test_model_measure.py @@ -126,11 +126,16 @@ def test_good_argument_values(self): assert num_spaces_final == num_spaces_seed + 1 assert "New Space" in [s.nameString() for s in model.getSpaces()] assert result.stepInitialCondition() - assert result.stepInitialCondition().get() == 'The building started with 4 spaces.' + assert result.stepInitialCondition().get() == "The building started with 4 spaces." assert result.stepFinalCondition() - assert result.stepFinalCondition().get() == 'The building finished with 5 spaces.' + assert result.stepFinalCondition().get() == "The building finished with 5 spaces." # save the model to test output directory output_file_path = Path(__file__).parent.absolute() / "output" / "test_output.osm" model.save(output_file_path, True) + + +# This allows running openstudio CLI on this file (`openstudio test_measure.py`) +if __name__ == "__main__": + pytest.main() diff --git a/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py b/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py index 3a5edd48406..e7731c7e4fb 100644 --- a/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py +++ b/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py @@ -1,6 +1,7 @@ """Insert your copyright here.""" import os +import shutil import subprocess from pathlib import Path @@ -40,7 +41,9 @@ def setup_test( epw_path: Path = EPW_IN_PATH_DEFAULT, ): run_dir = TestReportingMeasureName.run_dir(test_name) - run_dir.mkdir(parents=True, exist_ok=True) + if run_dir.exists(): + shutil.rmtree(run_dir) + run_dir.mkdir(parents=True) report_path = TestReportingMeasureName.report_path(test_name) if report_path.exists(): @@ -246,3 +249,8 @@ def test_without_drybulb_temp(self): # make sure the report file exists assert report_path.exists() + + +# This allows running openstudio CLI on this file (`openstudio test_measure.py`) +if __name__ == "__main__": + pytest.main() From 1635a8e6c8dadfcceb0fe25b07002f138f3f04c3 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Tue, 16 Apr 2024 15:26:31 +0200 Subject: [PATCH 06/22] Alright cool, I can run ALL pytests under a given folder now: ============================= test session starts ============================== platform linux -- Python 3.8.18, pytest-7.4.2, pluggy-1.3.0 -- /home/julien/Virtualenvs/py39/bin/python3 cachedir: .pytest_cache rootdir: /home/julien/Software configfile: setup.cfg collecting ... collected 0 items -- generated xml file: /home/julien/Software/Others/OpenStudio/ruby/junit.xml -- ============================ no tests ran in 0.05s ============================= --- .../EnergyPlusMeasure/tests/test_energyplus_measure.py | 5 +++++ .../templates/ModelMeasure/tests/test_model_measure.py | 5 +++++ .../ReportingMeasure/tests/test_reporting_measure.py | 8 +++++++- 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/src/utilities/bcl/templates/EnergyPlusMeasure/tests/test_energyplus_measure.py b/src/utilities/bcl/templates/EnergyPlusMeasure/tests/test_energyplus_measure.py index 6a3eb327779..1f626bf2e98 100644 --- a/src/utilities/bcl/templates/EnergyPlusMeasure/tests/test_energyplus_measure.py +++ b/src/utilities/bcl/templates/EnergyPlusMeasure/tests/test_energyplus_measure.py @@ -1,11 +1,16 @@ """Insert your copyright here.""" +import sys from pathlib import Path import openstudio import pytest +CURRENT_DIR_PATH = Path(__file__).parent.absolute() +sys.path.insert(0, str(CURRENT_DIR_PATH.parent)) from measure import EnergyPlusMeasureName +sys.path.pop(0) +del sys.modules['measure'] class TestEnergyPlusMeasureName: diff --git a/src/utilities/bcl/templates/ModelMeasure/tests/test_model_measure.py b/src/utilities/bcl/templates/ModelMeasure/tests/test_model_measure.py index a1bc1d5fe1e..5932f729a5f 100644 --- a/src/utilities/bcl/templates/ModelMeasure/tests/test_model_measure.py +++ b/src/utilities/bcl/templates/ModelMeasure/tests/test_model_measure.py @@ -1,11 +1,16 @@ """insert your copyright here.""" +import sys from pathlib import Path import openstudio import pytest +CURRENT_DIR_PATH = Path(__file__).parent.absolute() +sys.path.insert(0, str(CURRENT_DIR_PATH.parent)) from measure import ModelMeasureName +sys.path.pop(0) +del sys.modules['measure'] class TestModelMeasureName: diff --git a/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py b/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py index e7731c7e4fb..e68a2d29288 100644 --- a/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py +++ b/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py @@ -3,13 +3,19 @@ import os import shutil import subprocess +import sys from pathlib import Path import openstudio import pytest -from measure import ReportingMeasureName CURRENT_DIR_PATH = Path(__file__).parent.absolute() +sys.path.insert(0, str(CURRENT_DIR_PATH.parent)) +from measure import ReportingMeasureName +sys.path.pop(0) +del sys.modules['measure'] + + MODEL_IN_PATH_DEFAULT = CURRENT_DIR_PATH / "example_model.osm" EPW_IN_PATH_DEFAULT = CURRENT_DIR_PATH / "USA_CO_Golden-NREL.724666_TMY3.epw" From c2fc7e5d85e3995eee84cb60fc9fff4835fae8ed Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Tue, 16 Apr 2024 18:32:10 +0200 Subject: [PATCH 07/22] Add a ctest (via pytest) that instantiates measures from template + run the minitest/pytest on it --- src/cli/CMakeLists.txt | 9 +- src/cli/test/test_bcl_measure_templates.py | 114 ++++++++++++++++++ .../tests/test_energyplus_measure.py | 8 +- .../ModelMeasure/tests/test_model_measure.py | 8 +- .../tests/test_reporting_measure.py | 8 +- 5 files changed, 140 insertions(+), 7 deletions(-) create mode 100644 src/cli/test/test_bcl_measure_templates.py diff --git a/src/cli/CMakeLists.txt b/src/cli/CMakeLists.txt index ecff9578a34..009fe3b256d 100644 --- a/src/cli/CMakeLists.txt +++ b/src/cli/CMakeLists.txt @@ -283,11 +283,18 @@ if(BUILD_TESTING) WORKING_DIRECTORY "${PROJECT_BINARY_DIR}/resources/workflow/outdated_measures/" ) - add_test(NAME OpenStudioCLI.test_output_files + add_test(NAME OpenStudioCLI.test_output_files COMMAND ${Python_EXECUTABLE} -m pytest --verbose --os-cli-path $ "${CMAKE_CURRENT_SOURCE_DIR}/test/test_output_files.py" WORKING_DIRECTORY "${PROJECT_BINARY_DIR}/resources/workflow/output_test/" ) + file(MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/Testing/") + add_test(NAME OpenStudioCLI.test_bcl_measure_templates + COMMAND ${Python_EXECUTABLE} -m pytest --verbose --os-cli-path $ "${CMAKE_CURRENT_SOURCE_DIR}/test/test_bcl_measure_templates.py" + WORKING_DIRECTORY "${PROJECT_BINARY_DIR}/Testing/" + ) + + else() # TODO: Remove. Fallback on these for now, as I don't know if CI has pytest installed add_test(NAME OpenStudioCLI.Classic.test_logger_rb diff --git a/src/cli/test/test_bcl_measure_templates.py b/src/cli/test/test_bcl_measure_templates.py new file mode 100644 index 00000000000..e58f92a2492 --- /dev/null +++ b/src/cli/test/test_bcl_measure_templates.py @@ -0,0 +1,114 @@ +"""Tests for the BCL Templates. + +Calls the CLI to instantiate a given MeasureType/MeasureLanguage combination and runs the tests + +Example Usage: + +``` +pytest --verbose --tb=short -rfEsxX --durations=0 test_bcl_measure_templates.py \ + --os-cli-path=~/Software/Others/OS-build/Products/openstudio +``` +""" +import shlex +import shutil +import subprocess +from pathlib import Path +from typing import List +import os + +import pytest + +VERBOSE = True +MEASURE_LANGUAGES = ['Ruby', 'Python'] +MEASURE_TYPES = ['ModelMeasure', 'EnergyPlusMeasure', 'ReportingMeasure'] + + +def get_measure_dir(measure_type: str, measure_language: str) -> Path: + return (Path('./bcl_measures') / f'test_{measure_language}_{measure_type}'.lower()).absolute() + + +def _run_subprocess_and_capture(cmd, env=None): + try: + o = subprocess.check_output( + cmd, stderr=subprocess.PIPE, + env=env, + universal_newlines=True, encoding='utf-8', + ) + except subprocess.CalledProcessError as e: + print(f'exit code: {e.returncode}') + print(f'stdout: {e.output}') + print(f'stderr: {e.stderr}') + raise e + + return o + + +def get_cmd(osclipath: Path, measure_type: str, measure_language: str) -> List[str]: + return [ + str(osclipath), 'measure', 'new', + '--class-name', f'MyExample{measure_language}{measure_type}', + '--type', measure_type, + '--language', measure_language, + '--name', f'My {measure_language} {measure_type} Measure', + '--description', 'This is my measure', + '--modeler-description', 'This does complicated stuff', + '--taxonomy-tag', 'Envelope.Form', + # Output Directory + str(get_measure_dir(measure_type=measure_type, measure_language=measure_language)) + ] + + +def run_pytest(osclipath: Path, measure_dir_path: Path, verbose: bool = False): + python_test = next(measure_dir_path.glob('tests/*.py')) + # test_cmd = ['pytest', str(python_test)] + cmd = [str(osclipath), str(python_test)] + if verbose: + print("Running Pytest:") + print(f"cmd = {shlex.join(cmd)}") + output = _run_subprocess_and_capture(cmd) # env=dict(os.environ, PYTHONPATH=str(measure_dir_path)) + if verbose: + print(output) + + +def run_minitest(osclipath: Path, measure_dir_path: Path, verbose: bool = False): + # This runs style and rubocop, which I don't want + # test_cmd = [str(osclipath), 'measure', '--run_tests', str(measure_dir_path)] + ruby_test = next(measure_dir_path.glob('tests/*.rb')) + cmd = [str(osclipath), str(ruby_test)] # This is rather slow in Debug + if verbose: + print("Running MiniTest:") + print(f"cmd = {shlex.join(cmd)}") + + output = _run_subprocess_and_capture(cmd) + if verbose: + print(output) + + +@pytest.mark.parametrize("measure_language", MEASURE_LANGUAGES) +@pytest.mark.parametrize("measure_type", MEASURE_TYPES) +def test_create_measure_and_run_tests(osclipath: Path, measure_type: str, measure_language: str, verbose: bool = VERBOSE): + measure_dir_path = get_measure_dir(measure_type=measure_type, measure_language=measure_language) + if measure_dir_path.is_dir(): + shutil.rmtree(measure_dir_path) + + cmd = get_cmd(osclipath=osclipath, measure_type=measure_type, measure_language=measure_language) + + if verbose: + print(f"Instantiating new measure {measure_language} - {measure_type}:") + print(f"cmd = {shlex.join(cmd)}") + output = _run_subprocess_and_capture(cmd) + if verbose: + print(output) + + if measure_language == 'Ruby': + run_minitest(osclipath=osclipath, measure_dir_path=measure_dir_path, verbose=verbose) + else: + run_pytest(osclipath=osclipath, measure_dir_path=measure_dir_path, verbose=verbose) + + +if __name__ == "__main__": + import sys + if len(sys.argv) > 1: + pytest.main([__file__] + sys.argv[1:]) + else: + pytest.main() diff --git a/src/utilities/bcl/templates/EnergyPlusMeasure/tests/test_energyplus_measure.py b/src/utilities/bcl/templates/EnergyPlusMeasure/tests/test_energyplus_measure.py index 1f626bf2e98..96e60521c51 100644 --- a/src/utilities/bcl/templates/EnergyPlusMeasure/tests/test_energyplus_measure.py +++ b/src/utilities/bcl/templates/EnergyPlusMeasure/tests/test_energyplus_measure.py @@ -120,6 +120,10 @@ def test_good_argument_values(self): workspace.save(output_file_path, True) -# This allows running openstudio CLI on this file (`openstudio test_measure.py`) +# This allows running openstudio CLI on this file (`openstudio test_measure.py`, maybe with extra args) if __name__ == "__main__": - pytest.main() + import sys + if len(sys.argv) > 1: + pytest.main([__file__] + sys.argv[1:]) + else: + pytest.main() diff --git a/src/utilities/bcl/templates/ModelMeasure/tests/test_model_measure.py b/src/utilities/bcl/templates/ModelMeasure/tests/test_model_measure.py index 5932f729a5f..e89a458b208 100644 --- a/src/utilities/bcl/templates/ModelMeasure/tests/test_model_measure.py +++ b/src/utilities/bcl/templates/ModelMeasure/tests/test_model_measure.py @@ -141,6 +141,10 @@ def test_good_argument_values(self): model.save(output_file_path, True) -# This allows running openstudio CLI on this file (`openstudio test_measure.py`) +# This allows running openstudio CLI on this file (`openstudio test_measure.py`, maybe with extra args) if __name__ == "__main__": - pytest.main() + import sys + if len(sys.argv) > 1: + pytest.main([__file__] + sys.argv[1:]) + else: + pytest.main() diff --git a/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py b/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py index e68a2d29288..7c04eadb71d 100644 --- a/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py +++ b/src/utilities/bcl/templates/ReportingMeasure/tests/test_reporting_measure.py @@ -257,6 +257,10 @@ def test_without_drybulb_temp(self): assert report_path.exists() -# This allows running openstudio CLI on this file (`openstudio test_measure.py`) +# This allows running openstudio CLI on this file (`openstudio test_measure.py`, maybe with extra args) if __name__ == "__main__": - pytest.main() + import sys + if len(sys.argv) > 1: + pytest.main([__file__] + sys.argv[1:]) + else: + pytest.main() From 80913d879c1383b567d756ab781e3729594706fb Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Wed, 17 Apr 2024 14:02:21 +0200 Subject: [PATCH 08/22] Use the new openstudio-gems that as https://github.com/NREL/openstudio-gems/pull/77 --- CMakeLists.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7336abc1043..33617f40015 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -835,7 +835,7 @@ if(BUILD_CLI) set(OPENSTUDIO_GEMS_BASEURL "http://openstudio-resources.s3.amazonaws.com/dependencies") # TODO: temp - set(OPENSTUDIO_GEMS_BASEURL "https://github.com/jmarrec/openstudio-gems/releases/download/v3.2.2-3") + set(OPENSTUDIO_GEMS_BASEURL "https://github.com/jmarrec/openstudio-gems/releases/download/v3.2.2-5") # To use the package produced by a PR to https://github.com/NREL/openstudio-gems set(USE_OPENSTUDIO_GEMS_PR FALSE) @@ -847,19 +847,19 @@ if(BUILD_CLI) if(UNIX) if(APPLE) if (ARCH MATCHES arm64) - set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240214-darwin_arm64-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "1572d65fd0e0d383320fb280abb2a873") + set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240417-darwin_arm64-3.2.2.tar.gz") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "24edbcd0461634f02b2fc23a3ae3aad7") else() - set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240214-darwin-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "e8af80ce8468c5c5c55c3a006377568b") + set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240417-darwin-3.2.2.tar.gz") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "572990294b6af038f03aaf14144706ec") endif() else() if (ARCH MATCHES "arm64") set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240214-linux_arm64-3.2.2.tar.gz") set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "TDB") else() - set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240214-linux-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "b4e50ae9b09e8935c6882fb9cfb95847") + set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240417-linux-3.2.2.tar.gz") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "2c7588ae1cbc5c5e5ebba990cd4f3987") endif() if (USE_OPENSTUDIO_GEMS_PR) set(OPENSTUDIO_GEMS_BASEURL "${OPENSTUDIO_GEMS_BASEURL}/openstudio-gems-linux/${OPENSTUDIO_GEMS_PR_NUMBER}") @@ -867,8 +867,8 @@ if(BUILD_CLI) endif() elseif(WIN32) # OpenStudio gems are only supported on 64 bit windows - set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240214-windows-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "3f3cff39bd6ef6f3ba268fcf07565a66") + set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240417-windows-3.2.2.tar.gz") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "aa29bb70bc266f76749f7067a833967b") if (USE_OPENSTUDIO_GEMS_PR) set(OPENSTUDIO_GEMS_BASEURL "${OPENSTUDIO_GEMS_BASEURL}/openstudio-gems-windows/${OPENSTUDIO_GEMS_PR_NUMBER}") endif() From a90e1d30ac545495ffa0325e8cf97ddbc38b4951 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Wed, 17 Apr 2024 14:03:12 +0200 Subject: [PATCH 09/22] Fix issue about NoMethodError taint when running rubocop: taint removed, missed this one ``` E:145: 56: [Correctable] Style/StringLiterals: Prefer single-quoted strings when you don't need string interpolation or special symbols. E:162: 56: [Correctable] Style/StringLiterals: Prefer single-quoted strings when you don't need string interpolation or special symbols. E:171: 35: [Correctable] Style/StringLiterals: Prefer single-quoted strings when you don't need string interpolation or special symbols. NoMethodError: undefined method `taint' for "/home/julien/.cache/rubocop_cache":String ``` --- ruby/engine/embedded_help.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruby/engine/embedded_help.rb b/ruby/engine/embedded_help.rb index 40b1dc35272..fd941adf1e1 100644 --- a/ruby/engine/embedded_help.rb +++ b/ruby/engine/embedded_help.rb @@ -806,7 +806,7 @@ def self.find(*paths, ignore_error: true) ps = [path] while file = ps.shift catch(:prune) do - yield file.dup.taint + yield file.dup # .taint begin s = File.lstat(file) rescue Errno::ENOENT, Errno::EACCES, Errno::ENOTDIR, Errno::ELOOP, Errno::ENAMETOOLONG From dbdd2ed20c3eb3b88d8c9f4ef24427a06aa242ba Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Wed, 17 Apr 2024 14:29:23 +0200 Subject: [PATCH 10/22] NEW: openstudio measure --run-tests will run Pytest tests with coverage! --- python/requirements.txt | 7 +++-- src/cli/MeasureUpdateCommand.cpp | 46 +++++++++++++++++++++++++++++++- 2 files changed, 50 insertions(+), 3 deletions(-) diff --git a/python/requirements.txt b/python/requirements.txt index 2dba6bd7af9..2aed60bde0e 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -1,4 +1,7 @@ -jinja2 == 3.1.2 +jinja2 == 3.1.3 numpy == 1.24.4 pandas == 2.0.3 -pytest == 7.4.2 +pytest == 8.1.1 +coverage == 7.4.4 +pytest-cov == 5.0.0 +# pytest-xdist == 3.5.0 diff --git a/src/cli/MeasureUpdateCommand.cpp b/src/cli/MeasureUpdateCommand.cpp index 457964d1bb2..c823eed59d0 100644 --- a/src/cli/MeasureUpdateCommand.cpp +++ b/src/cli/MeasureUpdateCommand.cpp @@ -50,6 +50,7 @@ #include #include +#include #include #include @@ -367,6 +368,49 @@ namespace cli { fmt::print("{}\n", resultStr); return; } else if (opt.run_tests) { + + auto canonicalTestDir = openstudio::filesystem::canonical(opt.directoryPath); + + // Pytest + fmt::print(fmt::fg(fmt::color::yellow), + "┌{0:─^{2}}┐\n" + "│{1: ^{2}}│\n" + "└{0:─^{2}}┘", + "", "Starting Python Tests", 80); + fmt::print("\n"); + auto pytestOutDir = canonicalTestDir / "test_results" / "pytest"; + auto runPytestCmd = fmt::format( + R"python( +import pytest + +pytest.main([ + "--junit-xml={junit}", + "--cov={test_dir}", + "--cov-report=term-missing", + "--cov-report=json:{json}", + "--cov-report=lcov:{lcov}", + "--cov-report=html:{html}", + "--cov-report=xml:{xml}", + "{test_dir}", +]) +)python", + fmt::arg("junit", (pytestOutDir / "junit.xml").generic_string()), // + fmt::arg("test_dir", canonicalTestDir.generic_string()), // + fmt::arg("json", (pytestOutDir / "python_coverage.json").generic_string()), + fmt::arg("lcov", (pytestOutDir / "python_coverage.lcov").generic_string()), + fmt::arg("html", (pytestOutDir / "python_coverage_html").generic_string()), + fmt::arg("xml", (pytestOutDir / "python_coverage.xml").generic_string())); + + fmt::print("runPytestCmd={}\n", runPytestCmd); + pythonEngine->exec(runPytestCmd); + + fmt::print(fmt::fg(fmt::color::red), + "┌{0:─^{2}}┐\n" + "│{1: ^{2}}│\n" + "└{0:─^{2}}┘", + "", "Starting ruby tests", 80); + fmt::print("\n"); + auto runTestCmd = fmt::format( R"ruby( # load openstudio_measure_tester gem @@ -393,7 +437,7 @@ if result != 0 return 1 end )ruby", - openstudio::filesystem::canonical(opt.directoryPath).generic_string()); + canonicalTestDir.generic_string()); rubyEngine->exec(runTestCmd); } } From f8f4f7fb0e3a76464be8cd5f83e3a0a01f242086 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Wed, 17 Apr 2024 15:13:36 +0200 Subject: [PATCH 11/22] tell pytest to use xunit1 format for junit so we have file + line --- src/cli/MeasureUpdateCommand.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/cli/MeasureUpdateCommand.cpp b/src/cli/MeasureUpdateCommand.cpp index c823eed59d0..a76bf6f4fdf 100644 --- a/src/cli/MeasureUpdateCommand.cpp +++ b/src/cli/MeasureUpdateCommand.cpp @@ -379,6 +379,12 @@ namespace cli { "", "Starting Python Tests", 80); fmt::print("\n"); auto pytestOutDir = canonicalTestDir / "test_results" / "pytest"; + + // -o junit_familar=legacy is to mimic having a pytest.ini with: + // [pytest] + // junit_family=legacy + // This uses xunit1 format, and adds the line + file at which error occured, something we don't have with xunit2 (default) + auto runPytestCmd = fmt::format( R"python( import pytest @@ -391,6 +397,7 @@ pytest.main([ "--cov-report=lcov:{lcov}", "--cov-report=html:{html}", "--cov-report=xml:{xml}", + "-o", "junit_family=legacy", "{test_dir}", ]) )python", From 5bf4fe2c2afe0ea6ff2a8daad28f8e80dd07e26a Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Wed, 17 Apr 2024 15:27:35 +0200 Subject: [PATCH 12/22] Shush cppcheck, you don't know your type traits (but we run an outdated you, so I forgive you) https://godbolt.org/z/Wo7dPqvs3 ```c++ #include #include #include #include using VariantType = std::variant; template inline constexpr bool always_false_v = false; constexpr void test_type(auto&& arg) { using T = std::decay_t; if constexpr (std::is_same_v) { fmt::print(FMT_COMPILE("Hey there unsigned! cppcheck thought you wouldn't be here\n")); } else if constexpr (std::is_same_v) { fmt::print(FMT_COMPILE("Hello integer, how are you?\n")); } else { static_assert(always_false_v, "non-exhaustive visitor!"); } } constexpr void test_variant_type(const VariantType& arg) { std::visit( [](auto&& arg) { using T = std::decay_t; if constexpr (std::is_same_v) { fmt::print(FMT_COMPILE("Hello integer, how are you?\n")); } else if constexpr (std::is_same_v) { fmt::print(FMT_COMPILE("Hey there unsigned! cppcheck thought you wouldn't be here\n")); } else { static_assert(always_false_v, "non-exhaustive visitor!"); } }, arg); } int main() { int i = 10; test_type(i); unsigned u = 10; test_type(u); fmt::print("Variant\n"); auto iv = VariantType(i); auto uv = VariantType(u); test_variant_type(iv); test_variant_type(uv); } ``` --- src/utilities/data/Attribute.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/utilities/data/Attribute.cpp b/src/utilities/data/Attribute.cpp index 4ead7c33c4b..35bb574a5bf 100644 --- a/src/utilities/data/Attribute.cpp +++ b/src/utilities/data/Attribute.cpp @@ -698,6 +698,8 @@ namespace detail { return arg; } else if constexpr (std::is_same_v) { return arg; + // cppcheck-suppress identicalConditionAfterEarlyExit + // cppcheck-suppress multiCondition } else if constexpr (std::is_same_v) { return arg; } else if constexpr (std::is_same_v) { From 249bceed2fac789e40dff044922890f1788aa442 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Thu, 18 Apr 2024 00:24:07 +0200 Subject: [PATCH 13/22] Update openstudio-gems to maybe 3.8.0-RC1 https://github.com/jmarrec/openstudio-gems/releases/tag/v3.2.2-6 https://github.com/jmarrec/openstudio-gems/actions/runs/8729423756/job/23951340514#step:7:63 --- CMakeLists.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 33617f40015..964f651f790 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -835,7 +835,7 @@ if(BUILD_CLI) set(OPENSTUDIO_GEMS_BASEURL "http://openstudio-resources.s3.amazonaws.com/dependencies") # TODO: temp - set(OPENSTUDIO_GEMS_BASEURL "https://github.com/jmarrec/openstudio-gems/releases/download/v3.2.2-5") + set(OPENSTUDIO_GEMS_BASEURL "https://github.com/jmarrec/openstudio-gems/releases/download/v3.2.2-6") # To use the package produced by a PR to https://github.com/NREL/openstudio-gems set(USE_OPENSTUDIO_GEMS_PR FALSE) @@ -848,10 +848,10 @@ if(BUILD_CLI) if(APPLE) if (ARCH MATCHES arm64) set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240417-darwin_arm64-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "24edbcd0461634f02b2fc23a3ae3aad7") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "272cbec5789aa7bcc3da249f072122a3") else() set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240417-darwin-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "572990294b6af038f03aaf14144706ec") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "09d1934b769f0222cef8e560f5b9e746") endif() else() if (ARCH MATCHES "arm64") @@ -859,7 +859,7 @@ if(BUILD_CLI) set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "TDB") else() set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240417-linux-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "2c7588ae1cbc5c5e5ebba990cd4f3987") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "1ab825fa785a0864da907096d1ac07ff") endif() if (USE_OPENSTUDIO_GEMS_PR) set(OPENSTUDIO_GEMS_BASEURL "${OPENSTUDIO_GEMS_BASEURL}/openstudio-gems-linux/${OPENSTUDIO_GEMS_PR_NUMBER}") @@ -868,7 +868,7 @@ if(BUILD_CLI) elseif(WIN32) # OpenStudio gems are only supported on 64 bit windows set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240417-windows-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "aa29bb70bc266f76749f7067a833967b") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "fa1f9ed7b59704c948cd4a56456cfe53") if (USE_OPENSTUDIO_GEMS_PR) set(OPENSTUDIO_GEMS_BASEURL "${OPENSTUDIO_GEMS_BASEURL}/openstudio-gems-windows/${OPENSTUDIO_GEMS_PR_NUMBER}") endif() From 27c03dc88ca5302685cb1d8059555d09de854704 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Thu, 18 Apr 2024 01:24:17 +0200 Subject: [PATCH 14/22] Update gems package to one without pycall.rb --- CMakeLists.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 964f651f790..1314e6afb85 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -835,7 +835,7 @@ if(BUILD_CLI) set(OPENSTUDIO_GEMS_BASEURL "http://openstudio-resources.s3.amazonaws.com/dependencies") # TODO: temp - set(OPENSTUDIO_GEMS_BASEURL "https://github.com/jmarrec/openstudio-gems/releases/download/v3.2.2-6") + set(OPENSTUDIO_GEMS_BASEURL "https://github.com/jmarrec/openstudio-gems/releases/download/v3.2.2-7") # To use the package produced by a PR to https://github.com/NREL/openstudio-gems set(USE_OPENSTUDIO_GEMS_PR FALSE) @@ -848,10 +848,10 @@ if(BUILD_CLI) if(APPLE) if (ARCH MATCHES arm64) set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240417-darwin_arm64-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "272cbec5789aa7bcc3da249f072122a3") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "f86a27769b9138ca88c134fc67bdd286") else() set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240417-darwin-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "09d1934b769f0222cef8e560f5b9e746") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "70d03bfe05555005b3e590880100f0e6") endif() else() if (ARCH MATCHES "arm64") @@ -859,7 +859,7 @@ if(BUILD_CLI) set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "TDB") else() set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240417-linux-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "1ab825fa785a0864da907096d1ac07ff") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "e2eee0c4415dd7700c0c4427913e3a60") endif() if (USE_OPENSTUDIO_GEMS_PR) set(OPENSTUDIO_GEMS_BASEURL "${OPENSTUDIO_GEMS_BASEURL}/openstudio-gems-linux/${OPENSTUDIO_GEMS_PR_NUMBER}") @@ -868,7 +868,7 @@ if(BUILD_CLI) elseif(WIN32) # OpenStudio gems are only supported on 64 bit windows set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240417-windows-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "fa1f9ed7b59704c948cd4a56456cfe53") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "913a00034c8f2e9d7e739ad2b14c53b4") if (USE_OPENSTUDIO_GEMS_PR) set(OPENSTUDIO_GEMS_BASEURL "${OPENSTUDIO_GEMS_BASEURL}/openstudio-gems-windows/${OPENSTUDIO_GEMS_PR_NUMBER}") endif() From 4369e0343ce2feac184f8d7cce23f0a130b045f6 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Thu, 18 Apr 2024 01:38:57 +0200 Subject: [PATCH 15/22] Remove pycall from EMBEDDED_EXT_INITS --- ruby/engine/embedded_help.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/ruby/engine/embedded_help.rb b/ruby/engine/embedded_help.rb index fd941adf1e1..36fbbf142ba 100644 --- a/ruby/engine/embedded_help.rb +++ b/ruby/engine/embedded_help.rb @@ -128,8 +128,6 @@ module Kernel 'liboga' => 'init_liboga',\ 'sqlite3/sqlite3_native' => 'init_sqlite3_native',\ 'jaro_winkler_ext' => 'init_jaro_winkler_ext',\ - 'pycall.so' => 'init_pycall',\ - 'pycall.dll' => 'init_pycall',\ 'msgpack/msgpack' => 'init_msgpack' #'cbor/cbor' => 'init_cbor',\ } From 8dc27cf329f70ca4b5fa15791a16864d41d94830 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Thu, 18 Apr 2024 16:54:38 +0200 Subject: [PATCH 16/22] Use the v3.8.0-RC gems package from NREL https://github.com/NREL/openstudio-gems/releases/tag/v3.8.0-RC1 --- CMakeLists.txt | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1314e6afb85..9d54d01ed14 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -833,33 +833,30 @@ if(BUILD_CLI) # need to update the MD5sum for each platform and url below set(OPENSTUDIO_GEMS_BASEURL "http://openstudio-resources.s3.amazonaws.com/dependencies") - # TODO: temp - set(OPENSTUDIO_GEMS_BASEURL "https://github.com/jmarrec/openstudio-gems/releases/download/v3.2.2-7") - + set(OPENSTUDIO_GEMS_BASEURL "https://github.com/NREL/openstudio-gems/releases/download/v3.8.0-RC1") # To use the package produced by a PR to https://github.com/NREL/openstudio-gems set(USE_OPENSTUDIO_GEMS_PR FALSE) if (USE_OPENSTUDIO_GEMS_PR) set(OPENSTUDIO_GEMS_BASEURL "http://openstudio-sdk-dependencies.s3.amazonaws.com/openstudio-gems") set(OPENSTUDIO_GEMS_PR_NUMBER "PR-67") endif() - if(UNIX) if(APPLE) if (ARCH MATCHES arm64) - set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240417-darwin_arm64-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "f86a27769b9138ca88c134fc67bdd286") + set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240418-darwin_arm64-3.2.2.tar.gz") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "7151db371dba5e5101d6a1ee9ca78e88") else() - set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240417-darwin-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "70d03bfe05555005b3e590880100f0e6") + set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240418-darwin-3.2.2.tar.gz") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "0f599cf58be9ff0020c97003e7027e80") endif() else() if (ARCH MATCHES "arm64") set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240214-linux_arm64-3.2.2.tar.gz") set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "TDB") else() - set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240417-linux-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "e2eee0c4415dd7700c0c4427913e3a60") + set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240418-linux-3.2.2.tar.gz") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "8b766287c364738244ee7e62856d776e") endif() if (USE_OPENSTUDIO_GEMS_PR) set(OPENSTUDIO_GEMS_BASEURL "${OPENSTUDIO_GEMS_BASEURL}/openstudio-gems-linux/${OPENSTUDIO_GEMS_PR_NUMBER}") @@ -867,8 +864,8 @@ if(BUILD_CLI) endif() elseif(WIN32) # OpenStudio gems are only supported on 64 bit windows - set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240417-windows-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "913a00034c8f2e9d7e739ad2b14c53b4") + set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240418-windows-3.2.2.tar.gz") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "b039f06fef50c9d241d45f0d0043683d") if (USE_OPENSTUDIO_GEMS_PR) set(OPENSTUDIO_GEMS_BASEURL "${OPENSTUDIO_GEMS_BASEURL}/openstudio-gems-windows/${OPENSTUDIO_GEMS_PR_NUMBER}") endif() From 4b5405193757c99f781554000f01b6729b670918 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Thu, 18 Apr 2024 18:11:05 +0200 Subject: [PATCH 17/22] We retagged 3.8.0-rc1 gems --- CMakeLists.txt | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9d54d01ed14..48b531a34c7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -833,22 +833,25 @@ if(BUILD_CLI) # need to update the MD5sum for each platform and url below set(OPENSTUDIO_GEMS_BASEURL "http://openstudio-resources.s3.amazonaws.com/dependencies") + # TODO: temp set(OPENSTUDIO_GEMS_BASEURL "https://github.com/NREL/openstudio-gems/releases/download/v3.8.0-RC1") + # To use the package produced by a PR to https://github.com/NREL/openstudio-gems set(USE_OPENSTUDIO_GEMS_PR FALSE) if (USE_OPENSTUDIO_GEMS_PR) set(OPENSTUDIO_GEMS_BASEURL "http://openstudio-sdk-dependencies.s3.amazonaws.com/openstudio-gems") set(OPENSTUDIO_GEMS_PR_NUMBER "PR-67") endif() + if(UNIX) if(APPLE) if (ARCH MATCHES arm64) set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240418-darwin_arm64-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "7151db371dba5e5101d6a1ee9ca78e88") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "a87194b64992f3dd88faf069e18aa719") else() set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240418-darwin-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "0f599cf58be9ff0020c97003e7027e80") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "4db4830f7427bee16680f81707f1a6a9") endif() else() if (ARCH MATCHES "arm64") @@ -856,7 +859,7 @@ if(BUILD_CLI) set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "TDB") else() set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240418-linux-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "8b766287c364738244ee7e62856d776e") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "0178512ebf7975def15207e702659406") endif() if (USE_OPENSTUDIO_GEMS_PR) set(OPENSTUDIO_GEMS_BASEURL "${OPENSTUDIO_GEMS_BASEURL}/openstudio-gems-linux/${OPENSTUDIO_GEMS_PR_NUMBER}") @@ -865,7 +868,7 @@ if(BUILD_CLI) elseif(WIN32) # OpenStudio gems are only supported on 64 bit windows set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240418-windows-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "b039f06fef50c9d241d45f0d0043683d") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "690f940b1dda65585a11865774f1b96e") if (USE_OPENSTUDIO_GEMS_PR) set(OPENSTUDIO_GEMS_BASEURL "${OPENSTUDIO_GEMS_BASEURL}/openstudio-gems-windows/${OPENSTUDIO_GEMS_PR_NUMBER}") endif() From b9f63e02ba4dd317acdd1522d09adfb13c21e124 Mon Sep 17 00:00:00 2001 From: Kyle Benne Date: Thu, 18 Apr 2024 20:47:29 -0500 Subject: [PATCH 18/22] Fix RubyEngineFixture.WrongMethodMeasure test close #5155 --- ruby/engine/test/RubyEngine_GTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruby/engine/test/RubyEngine_GTest.cpp b/ruby/engine/test/RubyEngine_GTest.cpp index a83529eeb8f..f8c60e92db5 100644 --- a/ruby/engine/test/RubyEngine_GTest.cpp +++ b/ruby/engine/test/RubyEngine_GTest.cpp @@ -25,7 +25,7 @@ class RubyEngineFixture : public testing::Test } static std::string stripAddressFromErrorMessage(const std::string& error_message) { - static std::regex object_address_re("0x[[:alnum:]]*>"); + static std::regex object_address_re("0x[[:alnum:]]* @__swigtype__=\"_p_openstudio__model__Model\">"); return std::regex_replace(error_message, object_address_re, "ADDRESS>"); } From 0ccf03b43c2ba82626836d08bfd4604eed7f006f Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Fri, 19 Apr 2024 09:51:34 +0200 Subject: [PATCH 19/22] Find System ruby 3.2 and validate interpreter & version --- CMake/FindRuby.cmake | 358 --------------------------------------- ruby/test/CMakeLists.txt | 54 ++++-- 2 files changed, 36 insertions(+), 376 deletions(-) delete mode 100644 CMake/FindRuby.cmake diff --git a/CMake/FindRuby.cmake b/CMake/FindRuby.cmake deleted file mode 100644 index 803bccb1ade..00000000000 --- a/CMake/FindRuby.cmake +++ /dev/null @@ -1,358 +0,0 @@ -# Distributed under the OSI-approved BSD 3-Clause License. See accompanying -# file Copyright.txt or https://cmake.org/licensing for details. - -#.rst: -# FindRuby -# -------- -# -# Find Ruby -# -# This module finds if Ruby is installed and determines where the -# include files and libraries are. Ruby 1.8, 1.9, 2.0 and 2.1 are -# supported. -# -# The minimum required version of Ruby can be specified using the -# standard syntax, e.g. find_package(Ruby 1.8) -# -# It also determines what the name of the library is. This code sets -# the following variables: -# -# ``RUBY_EXECUTABLE`` -# full path to the ruby binary -# ``RUBY_INCLUDE_DIRS`` -# include dirs to be used when using the ruby library -# ``RUBY_LIBRARY`` -# full path to the ruby library -# ``RUBY_VERSION`` -# the version of ruby which was found, e.g. "1.8.7" -# ``RUBY_FOUND`` -# set to true if ruby ws found successfully -# -# Also: -# -# ``RUBY_INCLUDE_PATH`` -# same as RUBY_INCLUDE_DIRS, only provided for compatibility reasons, don't use it - -# RUBY_ARCHDIR=`$RUBY -r rbconfig -e 'printf("%s",Config::CONFIG@<:@"archdir"@:>@)'` -# RUBY_SITEARCHDIR=`$RUBY -r rbconfig -e 'printf("%s",Config::CONFIG@<:@"sitearchdir"@:>@)'` -# RUBY_SITEDIR=`$RUBY -r rbconfig -e 'printf("%s",Config::CONFIG@<:@"sitelibdir"@:>@)'` -# RUBY_LIBDIR=`$RUBY -r rbconfig -e 'printf("%s",Config::CONFIG@<:@"libdir"@:>@)'` -# RUBY_LIBRUBYARG=`$RUBY -r rbconfig -e 'printf("%s",Config::CONFIG@<:@"LIBRUBYARG_SHARED"@:>@)'` - -# uncomment the following line to get debug output for this file - set(_RUBY_DEBUG_OUTPUT FALSE) - -# Determine the list of possible names of the ruby executable depending -# on which version of ruby is required -set(_RUBY_POSSIBLE_EXECUTABLE_NAMES ruby) - -# if 1.9 is required, don't look for ruby18 and ruby1.8, default to version 1.8 -if(DEFINED Ruby_FIND_VERSION_MAJOR AND DEFINED Ruby_FIND_VERSION_MINOR) - set(Ruby_FIND_VERSION_SHORT_NODOT "${Ruby_FIND_VERSION_MAJOR}${RUBY_FIND_VERSION_MINOR}") - # we can't construct that if only major version is given - set(_RUBY_POSSIBLE_EXECUTABLE_NAMES - ruby${Ruby_FIND_VERSION_MAJOR}.${Ruby_FIND_VERSION_MINOR} - ruby${Ruby_FIND_VERSION_MAJOR}${Ruby_FIND_VERSION_MINOR} - ${_RUBY_POSSIBLE_EXECUTABLE_NAMES}) -else() - set(Ruby_FIND_VERSION_SHORT_NODOT "18") -endif() - -if(NOT Ruby_FIND_VERSION_EXACT) - list(APPEND _RUBY_POSSIBLE_EXECUTABLE_NAMES ruby2.5 ruby25) - list(APPEND _RUBY_POSSIBLE_EXECUTABLE_NAMES ruby2.4 ruby24) - list(APPEND _RUBY_POSSIBLE_EXECUTABLE_NAMES ruby2.3 ruby23) - list(APPEND _RUBY_POSSIBLE_EXECUTABLE_NAMES ruby2.2 ruby22) - list(APPEND _RUBY_POSSIBLE_EXECUTABLE_NAMES ruby2.1 ruby21) - list(APPEND _RUBY_POSSIBLE_EXECUTABLE_NAMES ruby2.0 ruby20) - list(APPEND _RUBY_POSSIBLE_EXECUTABLE_NAMES ruby1.9 ruby19) - - # if we want a version below 1.9, also look for ruby 1.8 - if("${Ruby_FIND_VERSION_SHORT_NODOT}" VERSION_LESS "19") - list(APPEND _RUBY_POSSIBLE_EXECUTABLE_NAMES ruby1.8 ruby18) - endif() - - list(REMOVE_DUPLICATES _RUBY_POSSIBLE_EXECUTABLE_NAMES) -endif() - -find_program(RUBY_EXECUTABLE NAMES ${_RUBY_POSSIBLE_EXECUTABLE_NAMES}) - -if(RUBY_EXECUTABLE AND NOT RUBY_VERSION_MAJOR) - function(_RUBY_CONFIG_VAR RBVAR OUTVAR) - execute_process(COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "print RbConfig::CONFIG['${RBVAR}']" - RESULT_VARIABLE _RUBY_SUCCESS - OUTPUT_VARIABLE _RUBY_OUTPUT - ERROR_QUIET) - if(_RUBY_SUCCESS OR _RUBY_OUTPUT STREQUAL "") - execute_process(COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "print Config::CONFIG['${RBVAR}']" - RESULT_VARIABLE _RUBY_SUCCESS - OUTPUT_VARIABLE _RUBY_OUTPUT - ERROR_QUIET) - endif() - message(STATUS "Ruby exec: ${RUBY_EXECUTABLE} var: '${RBVAR}' value: '${_RUBY_OUTPUT}'") - set(${OUTVAR} "${_RUBY_OUTPUT}" PARENT_SCOPE) - endfunction() - - - # query the ruby version - _RUBY_CONFIG_VAR("MAJOR" RUBY_VERSION_MAJOR) - _RUBY_CONFIG_VAR("MINOR" RUBY_VERSION_MINOR) - _RUBY_CONFIG_VAR("TEENY" RUBY_VERSION_PATCH) - - # query the different directories - _RUBY_CONFIG_VAR("archdir" RUBY_ARCH_DIR) - _RUBY_CONFIG_VAR("arch" RUBY_ARCH) - _RUBY_CONFIG_VAR("rubyhdrdir" RUBY_HDR_DIR) - _RUBY_CONFIG_VAR("rubyarchhdrdir" RUBY_ARCHHDR_DIR) - _RUBY_CONFIG_VAR("libdir" RUBY_POSSIBLE_LIB_DIR) - _RUBY_CONFIG_VAR("rubylibdir" RUBY_RUBY_LIB_DIR) - - # site_ruby - _RUBY_CONFIG_VAR("sitearchdir" RUBY_SITEARCH_DIR) - _RUBY_CONFIG_VAR("sitelibdir" RUBY_SITELIB_DIR) - - # vendor_ruby available ? - execute_process(COMMAND ${RUBY_EXECUTABLE} -r vendor-specific -e "print 'true'" - OUTPUT_VARIABLE RUBY_HAS_VENDOR_RUBY ERROR_QUIET) - - if(RUBY_HAS_VENDOR_RUBY) - _RUBY_CONFIG_VAR("vendorlibdir" RUBY_VENDORLIB_DIR) - _RUBY_CONFIG_VAR("vendorarchdir" RUBY_VENDORARCH_DIR) - endif() - - # save the results in the cache so we don't have to run ruby the next time again - set(RUBY_VERSION_MAJOR ${RUBY_VERSION_MAJOR} CACHE PATH "The Ruby major version" FORCE) - set(RUBY_VERSION_MINOR ${RUBY_VERSION_MINOR} CACHE PATH "The Ruby minor version" FORCE) - set(RUBY_VERSION_PATCH ${RUBY_VERSION_PATCH} CACHE PATH "The Ruby patch version" FORCE) - set(RUBY_ARCH_DIR ${RUBY_ARCH_DIR} CACHE PATH "The Ruby arch dir" FORCE) - set(RUBY_HDR_DIR ${RUBY_HDR_DIR} CACHE PATH "The Ruby header dir (1.9+)" FORCE) - set(RUBY_ARCHHDR_DIR ${RUBY_ARCHHDR_DIR} CACHE PATH "The Ruby arch header dir (2.0+)" FORCE) - set(RUBY_POSSIBLE_LIB_DIR ${RUBY_POSSIBLE_LIB_DIR} CACHE PATH "The Ruby lib dir" FORCE) - set(RUBY_RUBY_LIB_DIR ${RUBY_RUBY_LIB_DIR} CACHE PATH "The Ruby ruby-lib dir" FORCE) - set(RUBY_SITEARCH_DIR ${RUBY_SITEARCH_DIR} CACHE PATH "The Ruby site arch dir" FORCE) - set(RUBY_SITELIB_DIR ${RUBY_SITELIB_DIR} CACHE PATH "The Ruby site lib dir" FORCE) - set(RUBY_HAS_VENDOR_RUBY ${RUBY_HAS_VENDOR_RUBY} CACHE BOOL "Vendor Ruby is available" FORCE) - set(RUBY_VENDORARCH_DIR ${RUBY_VENDORARCH_DIR} CACHE PATH "The Ruby vendor arch dir" FORCE) - set(RUBY_VENDORLIB_DIR ${RUBY_VENDORLIB_DIR} CACHE PATH "The Ruby vendor lib dir" FORCE) - - mark_as_advanced( - RUBY_ARCH_DIR - RUBY_ARCH - RUBY_HDR_DIR - RUBY_ARCHHDR_DIR - RUBY_POSSIBLE_LIB_DIR - RUBY_RUBY_LIB_DIR - RUBY_SITEARCH_DIR - RUBY_SITELIB_DIR - RUBY_HAS_VENDOR_RUBY - RUBY_VENDORARCH_DIR - RUBY_VENDORLIB_DIR - RUBY_VERSION_MAJOR - RUBY_VERSION_MINOR - RUBY_VERSION_PATCH - ) -endif() - -# In case RUBY_EXECUTABLE could not be executed (e.g. cross compiling) -# try to detect which version we found. This is not too good. -if(RUBY_EXECUTABLE AND NOT RUBY_VERSION_MAJOR) - # by default assume 1.8.0 - set(RUBY_VERSION_MAJOR 1) - set(RUBY_VERSION_MINOR 8) - set(RUBY_VERSION_PATCH 0) - # check whether we found 1.9.x - if(${RUBY_EXECUTABLE} MATCHES "ruby1\\.?9") - set(RUBY_VERSION_MAJOR 1) - set(RUBY_VERSION_MINOR 9) - endif() - # check whether we found 2.0.x - if(${RUBY_EXECUTABLE} MATCHES "ruby2\\.?0") - set(RUBY_VERSION_MAJOR 2) - set(RUBY_VERSION_MINOR 0) - endif() - # check whether we found 2.1.x - if(${RUBY_EXECUTABLE} MATCHES "ruby2\\.?1") - set(RUBY_VERSION_MAJOR 2) - set(RUBY_VERSION_MINOR 1) - endif() - # check whether we found 2.2.x - if(${RUBY_EXECUTABLE} MATCHES "ruby2\\.?2") - set(RUBY_VERSION_MAJOR 2) - set(RUBY_VERSION_MINOR 2) - endif() - # check whether we found 2.3.x - if(${RUBY_EXECUTABLE} MATCHES "ruby2\\.?3") - set(RUBY_VERSION_MAJOR 2) - set(RUBY_VERSION_MINOR 3) - endif() - # check whether we found 2.4.x - if(${RUBY_EXECUTABLE} MATCHES "ruby2\\.?4") - set(RUBY_VERSION_MAJOR 2) - set(RUBY_VERSION_MINOR 4) - endif() - # check whether we found 2.5.x - if(${RUBY_EXECUTABLE} MATCHES "ruby2\\.?5") - set(RUBY_VERSION_MAJOR 2) - set(RUBY_VERSION_MINOR 5) - endif() -endif() - -if(RUBY_VERSION_MAJOR) - set(RUBY_VERSION "${RUBY_VERSION_MAJOR}.${RUBY_VERSION_MINOR}.${RUBY_VERSION_PATCH}") - set(_RUBY_VERSION_SHORT "${RUBY_VERSION_MAJOR}.${RUBY_VERSION_MINOR}") - set(_RUBY_VERSION_SHORT_NODOT "${RUBY_VERSION_MAJOR}${RUBY_VERSION_MINOR}") - set(_RUBY_NODOT_VERSION "${RUBY_VERSION_MAJOR}${RUBY_VERSION_MINOR}${RUBY_VERSION_PATCH}") -endif() - -find_path(RUBY_INCLUDE_DIR - NAMES ruby.h - HINTS - ${RUBY_HDR_DIR} - ${RUBY_ARCH_DIR} - /usr/lib/ruby/${_RUBY_VERSION_SHORT}/i586-linux-gnu/ ) - -set(RUBY_INCLUDE_DIRS ${RUBY_INCLUDE_DIR} ) - -# if ruby > 1.8 is required or if ruby > 1.8 was found, search for the config.h dir -if( "${Ruby_FIND_VERSION_SHORT_NODOT}" GREATER 18 OR "${_RUBY_VERSION_SHORT_NODOT}" GREATER 18 OR RUBY_HDR_DIR) - find_path(RUBY_CONFIG_INCLUDE_DIR - NAMES ruby/config.h config.h - HINTS - ${RUBY_HDR_DIR}/${RUBY_ARCH} - ${RUBY_ARCH_DIR} - ${RUBY_ARCHHDR_DIR} - ) - - set(RUBY_INCLUDE_DIRS ${RUBY_INCLUDE_DIRS} ${RUBY_CONFIG_INCLUDE_DIR} ) -endif() - - -# Determine the list of possible names for the ruby library -set(_RUBY_POSSIBLE_LIB_NAMES ruby ruby-static ruby${_RUBY_VERSION_SHORT} ruby${_RUBY_VERSION_SHORT_NODOT} ruby-${_RUBY_VERSION_SHORT} ruby-${RUBY_VERSION}) - -if(WIN32) - set( _RUBY_MSVC_RUNTIME "" ) - if( MSVC_VERSION EQUAL 1200 ) - set( _RUBY_MSVC_RUNTIME "60" ) - endif() - if( MSVC_VERSION EQUAL 1300 ) - set( _RUBY_MSVC_RUNTIME "70" ) - endif() - if( MSVC_VERSION EQUAL 1310 ) - set( _RUBY_MSVC_RUNTIME "71" ) - endif() - if( MSVC_VERSION EQUAL 1400 ) - set( _RUBY_MSVC_RUNTIME "80" ) - endif() - if( MSVC_VERSION EQUAL 1500 ) - set( _RUBY_MSVC_RUNTIME "90" ) - endif() - if( MSVC_VERSION EQUAL 1600 ) - set( _RUBY_MSVC_RUNTIME "100" ) - endif() - if( MSVC_VERSION EQUAL 1700 ) - set( _RUBY_MSVC_RUNTIME "110" ) - endif() - if( MSVC_VERSION EQUAL 1800 ) - set( _RUBY_MSVC_RUNTIME "120" ) - endif() - if( MSVC_VERSION EQUAL 1900 ) - set( _RUBY_MSVC_RUNTIME "140" ) - endif() - if( MSVC_VERSION EQUAL 1910 ) - #set( _RUBY_MSVC_RUNTIME "150" ) - set( _RUBY_MSVC_RUNTIME "140" ) - endif() - if( MSVC_VERSION EQUAL 1911 ) - #set( _RUBY_MSVC_RUNTIME "150" ) - set( _RUBY_MSVC_RUNTIME "140" ) - endif() - if( MSVC_VERSION EQUAL 1912 ) - #set( _RUBY_MSVC_RUNTIME "150" ) - set( _RUBY_MSVC_RUNTIME "140" ) - endif() - if( MSVC_VERSION EQUAL 1913 ) - #set( _RUBY_MSVC_RUNTIME "150" ) - set( _RUBY_MSVC_RUNTIME "140" ) - endif() - if( MSVC_VERSION EQUAL 1914 ) - #set( _RUBY_MSVC_RUNTIME "150" ) - set( _RUBY_MSVC_RUNTIME "140" ) - endif() - if( MSVC_VERSION EQUAL 1915 ) - #set( _RUBY_MSVC_RUNTIME "150" ) - set( _RUBY_MSVC_RUNTIME "140" ) - endif() - if( MSVC_VERSION EQUAL 1916 ) - #set( _RUBY_MSVC_RUNTIME "150" ) - set( _RUBY_MSVC_RUNTIME "140" ) - endif() - if( MSVC_VERSION EQUAL 1917 ) - #set( _RUBY_MSVC_RUNTIME "150" ) - set( _RUBY_MSVC_RUNTIME "140" ) - endif() - if( MSVC_VERSION EQUAL 1918 ) - #set( _RUBY_MSVC_RUNTIME "150" ) - set( _RUBY_MSVC_RUNTIME "140" ) - endif() - if( MSVC_VERSION EQUAL 1919 ) - #set( _RUBY_MSVC_RUNTIME "150" ) - set( _RUBY_MSVC_RUNTIME "140" ) - endif() - - set(_RUBY_ARCH_PREFIX "") - if(CMAKE_SIZEOF_VOID_P EQUAL 8) - set(_RUBY_ARCH_PREFIX "x64-") - endif() - - list(APPEND _RUBY_POSSIBLE_LIB_NAMES - "${_RUBY_ARCH_PREFIX}vcruntime${_RUBY_MSVC_RUNTIME}-ruby${_RUBY_VERSION_SHORT_NODOT}0" - "${_RUBY_ARCH_PREFIX}vcruntime${_RUBY_MSVC_RUNTIME}-ruby${_RUBY_NODOT_VERSION}" - "${_RUBY_ARCH_PREFIX}vcruntime${_RUBY_MSVC_RUNTIME}-ruby${_RUBY_NODOT_VERSION}-static" - "${_RUBY_ARCH_PREFIX}vcruntime-ruby${_RUBY_NODOT_VERSION}" - "${_RUBY_ARCH_PREFIX}vcruntime-ruby${_RUBY_NODOT_VERSION}-static" - "${_RUBY_ARCH_PREFIX}msvcr${_RUBY_MSVC_RUNTIME}-ruby${_RUBY_NODOT_VERSION}" - "${_RUBY_ARCH_PREFIX}msvcr${_RUBY_MSVC_RUNTIME}-ruby${_RUBY_NODOT_VERSION}-static" - "${_RUBY_ARCH_PREFIX}msvcrt-ruby${_RUBY_NODOT_VERSION}" - "${_RUBY_ARCH_PREFIX}msvcrt-ruby${_RUBY_NODOT_VERSION}-static" ) - -endif() - -find_library(RUBY_LIBRARY NAMES ${_RUBY_POSSIBLE_LIB_NAMES} HINTS ${RUBY_POSSIBLE_LIB_DIR} ) - -include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake) -set(_RUBY_REQUIRED_VARS RUBY_EXECUTABLE RUBY_INCLUDE_DIR RUBY_LIBRARY) -if(_RUBY_VERSION_SHORT_NODOT GREATER 18) - list(APPEND _RUBY_REQUIRED_VARS RUBY_CONFIG_INCLUDE_DIR) -endif() - -if(_RUBY_DEBUG_OUTPUT) - message(STATUS "--------FindRuby.cmake debug------------") - message(STATUS "_RUBY_POSSIBLE_EXECUTABLE_NAMES: ${_RUBY_POSSIBLE_EXECUTABLE_NAMES}") - message(STATUS "_RUBY_POSSIBLE_LIB_NAMES: ${_RUBY_POSSIBLE_LIB_NAMES}") - message(STATUS "RUBY_ARCH_DIR: ${RUBY_ARCH_DIR}") - message(STATUS "RUBY_HDR_DIR: ${RUBY_HDR_DIR}") - message(STATUS "RUBY_POSSIBLE_LIB_DIR: ${RUBY_POSSIBLE_LIB_DIR}") - message(STATUS "Found RUBY_VERSION: \"${RUBY_VERSION}\" , short: \"${_RUBY_VERSION_SHORT}\", nodot: \"${_RUBY_VERSION_SHORT_NODOT}\"") - message(STATUS "_RUBY_REQUIRED_VARS: ${_RUBY_REQUIRED_VARS}") - message(STATUS "RUBY_EXECUTABLE: ${RUBY_EXECUTABLE}") - message(STATUS "RUBY_LIBRARY: ${RUBY_LIBRARY}") - message(STATUS "RUBY_INCLUDE_DIR: ${RUBY_INCLUDE_DIR}") - message(STATUS "RUBY_CONFIG_INCLUDE_DIR: ${RUBY_CONFIG_INCLUDE_DIR}") - message(STATUS "--------------------") -endif() - -FIND_PACKAGE_HANDLE_STANDARD_ARGS(Ruby REQUIRED_VARS ${_RUBY_REQUIRED_VARS} - VERSION_VAR RUBY_VERSION ) - -mark_as_advanced( - RUBY_EXECUTABLE - RUBY_LIBRARY - RUBY_INCLUDE_DIR - RUBY_CONFIG_INCLUDE_DIR - ) - -# Set some variables for compatibility with previous version of this file -set(RUBY_POSSIBLE_LIB_PATH ${RUBY_POSSIBLE_LIB_DIR}) -set(RUBY_RUBY_LIB_PATH ${RUBY_RUBY_LIB_DIR}) -set(RUBY_INCLUDE_PATH ${RUBY_INCLUDE_DIRS}) diff --git a/ruby/test/CMakeLists.txt b/ruby/test/CMakeLists.txt index 2082774c11b..62a5c9c66d1 100644 --- a/ruby/test/CMakeLists.txt +++ b/ruby/test/CMakeLists.txt @@ -3,39 +3,57 @@ if(BUILD_TESTING) # find all tests file(GLOB RUBY_TEST_SRC "./*.rb") - # TODO: It doesn't not work with this executable that's in build/Ruby-install/bin - # message("RUBY_EXECUTABLE=${RUBY_EXECUTABLE}") + + # **NOTE**: we do not want to grab the conan one, which is statically built on all platforms, and is a msvc build on windows + # Instead, we want to grab the regularly installed one on your system set(_RUBY_POSSIBLE_EXECUTABLE_NAMES ruby - ruby2.7 - ruby2.7.2 - ruby27 - ruby272) + ruby3.2 + ruby3.2.2 + ruby32 + ruby322 + ) - # TODO: this isn't great but I haven't found a better way to locate the system ruby (and avoid the one in build/Ruby-install/) + # TODO: this isn't great but I haven't found a better way to locate the system ruby (and avoid the conan one) find_program(SYSTEM_RUBY_EXECUTABLE NAMES ${_RUBY_POSSIBLE_EXECUTABLE_NAMES} HINTS - "/usr/local/rvm/rubies/ruby-2.7.2/bin/" - "/usr/local/rvm/rubies/ruby-2.7.2/bin/ruby" - "/usr/share/rvm/rubies/ruby-2.7.2/bin/" - "$ENV{HOME}/.rvm/rubies/ruby-2.7.2/bin/" + "/usr/local/rvm/rubies/ruby-3.2.2/bin/" + "/usr/local/rvm/rubies/ruby-3.2.2/bin/ruby" + "/usr/share/rvm/rubies/ruby-3.2.2/bin/" + "$ENV{HOME}/.rvm/rubies/ruby-3.2.2/bin/" - "C:/Ruby27-x64/bin/" + "C:/Ruby32-x64/bin/" - "/usr/local/ruby272/bin/" - "/usr/local/ruby27/bin/" + "/usr/local/ruby322/bin/" + "/usr/local/ruby32/bin/" "/usr/bin/" "/usr/local/bin/" - NO_DEFAULT_PATH) + if(SYSTEM_RUBY_EXECUTABLE) + # Validate the version + execute_process (COMMAND "${SYSTEM_RUBY_EXECUTABLE}" -e "puts RUBY_VERSION" + RESULT_VARIABLE _result + OUTPUT_VARIABLE _system_ruby_version + ERROR_QUIET + OUTPUT_STRIP_TRAILING_WHITESPACE) + if(_result OR (_system_ruby_version VERSION_LESS 3.2) OR (_system_ruby_version VERSION_GREATER_EQUAL 3.3)) + if(_result) + message(WARNING "Cannot use the interpreter \"${SYSTEM_RUBY_EXECUTABLE}\"") + else() + message(WARNING "Wrong version \"${_system_ruby_version}\" for the interpreter \"${SYSTEM_RUBY_EXECUTABLE}\", not >= 3.2 < 3.3") + endif() + set_property (CACHE SYSTEM_RUBY_EXECUTABLE PROPERTY VALUE "SYSTEM_RUBY_EXECUTABLE-NOTFOUND") + else() + message(STATUS "Found SYSTEM_RUBY_EXECUTABLE=${SYSTEM_RUBY_EXECUTABLE} with version ${_system_ruby_version}") + endif() + endif() + if(NOT SYSTEM_RUBY_EXECUTABLE) - message(WARNING "Your system ruby wasn't found, you won't be able to run the `ctest -R RubyTest` command and the tests won't be created at all.") + message(WARNING "A valid system ruby (3.2.2 or near) wasn't found, you won't be able to run the `ctest -R RubyTest` command and the tests won't be created at all.") else() - message(STATUS "Found SYSTEM_RUBY_EXECUTABLE=${SYSTEM_RUBY_EXECUTABLE}") - # add a test for each unit test set(RUBY_TEST_REQUIRES "#include test files") foreach(f ${RUBY_TEST_SRC}) From 61f6085866db5cdf2250b3bb39660ccc5625d5d5 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Fri, 19 Apr 2024 12:20:47 +0200 Subject: [PATCH 20/22] Fix a test that had an harcoded value (StackLevelTooDeepMeasure) --- ruby/engine/test/RubyEngine_GTest.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/ruby/engine/test/RubyEngine_GTest.cpp b/ruby/engine/test/RubyEngine_GTest.cpp index f8c60e92db5..302cfd5e64e 100644 --- a/ruby/engine/test/RubyEngine_GTest.cpp +++ b/ruby/engine/test/RubyEngine_GTest.cpp @@ -30,6 +30,12 @@ class RubyEngineFixture : public testing::Test return std::regex_replace(error_message, object_address_re, "ADDRESS>"); } + static std::string stripNumLevels(const std::string& error_message) { + static std::regex num_levels_re("[[:alnum:]]+ levels"); + + return std::regex_replace(error_message, num_levels_re, " levels"); + } + protected: // initialize for each test virtual void SetUp() override { @@ -123,7 +129,7 @@ Traceback (most recent call last): {0}:12:in `s' {0}:12:in `s' {0}:12:in `s' - ... 10061 levels... + ... levels... {0}:12:in `s' {0}:12:in `s' {0}:12:in `s' @@ -144,7 +150,7 @@ Traceback (most recent call last): ASSERT_FALSE(true) << "Expected measure arguments(model) to throw"; } catch (std::exception& e) { std::string error = e.what(); - EXPECT_EQ(expected_exception, stripAddressFromErrorMessage(error)); + EXPECT_EQ(expected_exception, stripNumLevels(error)); } } From d4e63811e6d3d5e1f0759735617f1aa9547ecf71 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Fri, 19 Apr 2024 12:53:50 +0200 Subject: [PATCH 21/22] Track HEREDOC workflow PR --- CMakeLists.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 48b531a34c7..3bf7cfd2c3e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -835,7 +835,7 @@ if(BUILD_CLI) set(OPENSTUDIO_GEMS_BASEURL "http://openstudio-resources.s3.amazonaws.com/dependencies") # TODO: temp - set(OPENSTUDIO_GEMS_BASEURL "https://github.com/NREL/openstudio-gems/releases/download/v3.8.0-RC1") + set(OPENSTUDIO_GEMS_BASEURL "https://github.com/NREL/openstudio-gems/releases/download/v3.8.0-RC1-2") # To use the package produced by a PR to https://github.com/NREL/openstudio-gems set(USE_OPENSTUDIO_GEMS_PR FALSE) @@ -847,19 +847,19 @@ if(BUILD_CLI) if(UNIX) if(APPLE) if (ARCH MATCHES arm64) - set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240418-darwin_arm64-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "a87194b64992f3dd88faf069e18aa719") + set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240419-darwin_arm64-3.2.2.tar.gz") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "b69b353bf99c0f53614d1cb0afd27878") else() - set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240418-darwin-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "4db4830f7427bee16680f81707f1a6a9") + set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240419-darwin-3.2.2.tar.gz") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "55fb8df70fa5477bf9a37aa243ad0818") endif() else() if (ARCH MATCHES "arm64") set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240214-linux_arm64-3.2.2.tar.gz") set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "TDB") else() - set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240418-linux-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "0178512ebf7975def15207e702659406") + set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240419-linux-3.2.2.tar.gz") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "ba6dbd7d139f298585f0be14913ea5b3") endif() if (USE_OPENSTUDIO_GEMS_PR) set(OPENSTUDIO_GEMS_BASEURL "${OPENSTUDIO_GEMS_BASEURL}/openstudio-gems-linux/${OPENSTUDIO_GEMS_PR_NUMBER}") @@ -867,8 +867,8 @@ if(BUILD_CLI) endif() elseif(WIN32) # OpenStudio gems are only supported on 64 bit windows - set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240418-windows-3.2.2.tar.gz") - set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "690f940b1dda65585a11865774f1b96e") + set(OPENSTUDIO_GEMS_ZIP_FILENAME "openstudio3-gems-20240419-windows-3.2.2.tar.gz") + set(OPENSTUDIO_GEMS_ZIP_EXPECTED_MD5 "67f2980b5fd2df23df6a82044e4e0e8b") if (USE_OPENSTUDIO_GEMS_PR) set(OPENSTUDIO_GEMS_BASEURL "${OPENSTUDIO_GEMS_BASEURL}/openstudio-gems-windows/${OPENSTUDIO_GEMS_PR_NUMBER}") endif() From 65259923b3ffce5bbd8dde9115863482314de492 Mon Sep 17 00:00:00 2001 From: Julien Marrec Date: Fri, 19 Apr 2024 14:45:12 +0200 Subject: [PATCH 22/22] Fixup the ugly patching of FileUtils.cp / cp_r Not sure why copy is even overriden... It's an alias to cp anyways. Read https://www.ruby-lang.org/en/news/2019/12/12/separation-of-positional-and-keyword-arguments-in-ruby-3-0/ --- ruby/engine/embedded_help.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ruby/engine/embedded_help.rb b/ruby/engine/embedded_help.rb index 36fbbf142ba..dc23ba99f89 100644 --- a/ruby/engine/embedded_help.rb +++ b/ruby/engine/embedded_help.rb @@ -691,7 +691,7 @@ class << self alias :original_cp :cp end - def self.cp_r(src, dest, options = {}) + def self.cp_r(src, dest, ...) #puts "cp_r #{src} to #{dest}" if src.to_s.chars.first == ':' then absolute_path = OpenStudio.get_absolute_path(src) @@ -732,10 +732,10 @@ def self.cp_r(src, dest, options = {}) end end - self.original_cp_r(src, dest, options) + self.original_cp_r(src, dest, ...) end - def self.cp(src, dest, options = {}) + def self.cp(src, dest, ...) #puts "cp #{src} to #{dest}" if src.to_s.chars.first == ':' then absolute_path = OpenStudio.get_absolute_path(src) @@ -760,11 +760,11 @@ def self.cp(src, dest, options = {}) end end - self.original_cp(src, dest, options) + self.original_cp(src, dest, ...) end - def self.copy(src, dest, options = {}) - return self.cp(src, dest, options) + def self.copy(src, dest, ...) + return self.cp(src, dest, ...) end end